This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// > npm install graphql-tools | |
import { mockServer } from 'graphql-tools'; | |
import schema from './mySchema.graphql'; | |
const myMockServer = mockServer(schema); | |
myMockServer.query(`{ | |
allUsers: { | |
id | |
name |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// resolve functions | |
{ | |
Query: { | |
person: (obj, { id }) => loaders.user.byId(id) | |
} | |
} | |
// loaders | |
{ | |
user: { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
query { | |
person(id: 5) | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import rp from 'request-promise'; | |
{ | |
Query: { | |
person(obj, { id }){ | |
return rp(`https://some-backend.com/person/${id}`) | |
.then( res => JSON.parse(res) ); | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type Person { | |
id: ID, | |
name: String | |
age: Int | |
} | |
type Query { | |
person(id: ID!): Person | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { | |
GraphQLSchema, | |
GraphQLObjectType, | |
GraphQLNonNull, | |
GraphQLInt, | |
GraphQLID, | |
GraphQLString } from 'graphql'; | |
import rp from 'request-promise'; |
NewerOlder