-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathschema.js
69 lines (64 loc) · 1.42 KB
/
schema.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
import { getBooks, getUser } from './data.js';
import {
GraphQLObjectType,
GraphQLSchema,
GraphQLInt,
GraphQLString,
GraphQLList
} from 'graphql/lib/type';
// Type definitions for GraphQL
const BookType = new GraphQLObjectType({
name: 'Book',
description: 'A book contains an author and title',
fields: () => ({
id: {
type: GraphQLInt,
description: 'The id of the book.'
},
title: {
type: GraphQLString,
description: 'The title of the book.'
},
author: {
type: GraphQLString,
description: 'The author of the book.'
}
})
});
const UserType = new GraphQLObjectType({
name: 'User',
description: 'A user object',
fields: () => ({
id: {
type: GraphQLInt,
description: 'The id of the user.'
},
name: {
type: GraphQLString,
description: 'The name of the user.'
}
})
});
// Type definitions for the GraphQL endpoint. You can ask for books.
// The resolve function fetches the books and is returned in the
// requested shape thanks to GraphQL.
const schema = new GraphQLSchema({
query: new GraphQLObjectType({
name: 'RootQueryType',
fields: {
books: {
type: new GraphQLList(BookType),
resolve: () => {
return getBooks();
}
},
user: {
type: UserType,
resolve: () => {
return getUser();
}
}
}
})
});
export default schema;