forked from graphql-go/graphql
-
Notifications
You must be signed in to change notification settings - Fork 2
Type System
Hafiz Ismail edited this page Nov 3, 2015
·
1 revision
Comparisons of graphql-go
type system against graphql-js
type system
graphql-go |
graphql-js |
---|---|
graphql.Schema |
GraphQLSchema |
graphql.Scalar |
GraphQLScalarType |
graphql.Object |
GraphQLObjectType |
graphql.Interface |
GraphQLInterfaceType |
graphql.Union |
GraphQLUnionType |
graphql.Enum |
GraphQLEnumType |
graphql.InputObject |
GraphQLInputObjectType |
graphql.List |
GraphQLList |
graphql.NonNull |
GraphQLNonNull |
graphql-go |
graphql-js |
---|---|
graphql.Int |
GraphQLInt |
graphql.Float |
GraphQLFloat |
graphql.String |
GraphQLString |
graphql.Boolean |
GraphQLBoolean |
graphql.ID |
GraphQLID |