cf-graphql
Advanced tools
Comparing version 0.1.1 to 0.1.2
{ | ||
"name": "cf-graphql", | ||
"description": "Generate a GraphQL schema out of your Contentful space", | ||
"version": "0.1.1", | ||
"version": "0.1.2", | ||
"license": "MIT", | ||
@@ -12,2 +12,7 @@ "repository": "jelz/cf-graphql", | ||
"url": "https://elzbieciak.pl/" | ||
}, | ||
{ | ||
"name": "Michael Elsdörfer", | ||
"email": "michael@elsdoerfer.com", | ||
"url": "http://blog.elsdoerfer.name" | ||
} | ||
@@ -14,0 +19,0 @@ ], |
@@ -16,2 +16,3 @@ 'use strict'; | ||
Int: field => createFieldConfig(graphql.GraphQLInt, field), | ||
Float: field => createFieldConfig(graphql.GraphQLFloat, field), | ||
Bool: field => createFieldConfig(graphql.GraphQLBoolean, field), | ||
@@ -18,0 +19,0 @@ Object: createObjectFieldConfig, |
@@ -24,3 +24,4 @@ 'use strict'; | ||
Text: 'String', | ||
Number: 'Int', | ||
Number: 'Float', | ||
Integer: 'Int', | ||
Date: 'String', | ||
@@ -27,0 +28,0 @@ Boolean: 'Bool', |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
229982
765