-
Notifications
You must be signed in to change notification settings - Fork 275
/
Copy pathindex.js
167 lines (158 loc) · 5.29 KB
/
index.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
/**
* Copyright (c) 2015-present, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the license found in the
* LICENSE-examples file in the root directory of this source tree.
*
* @flow strict
*/
import {
GraphQLID,
GraphQLInt,
GraphQLList,
GraphQLObjectType,
GraphQLUnionType,
GraphQLSchema,
} from 'graphql';
import {
fromGlobalId,
connectionFromArray,
connectionArgs,
connectionDefinitions,
} from 'graphql-relay';
import { getObjectsByType, getObjectFromTypeAndId } from './apiHelper';
import {
swapiTypeToGraphQLType,
graphQLTypeToSwapiType,
nodeField,
} from './relayNode';
import GraphQLFilteredUnionType from './graphQLFilteredUnionType';
/**
* Creates a root field to get an object of a given type.
* Accepts either `id`, the globally unique ID used in GraphQL,
* or `idName`, the per-type ID used in SWAPI (idName is only
* usable on non-union elements).
*/
function rootFieldByID(idName, swapiType) {
const graphQLType = swapiTypeToGraphQLType(swapiType);
const argDefs = {};
argDefs.id = { type: GraphQLID };
if (!(graphQLType instanceof GraphQLUnionType)) {
argDefs[idName] = { type: GraphQLID };
}
return {
type: graphQLType,
args: argDefs,
resolve: (_, args) => {
if (
!(swapiType instanceof GraphQLUnionType) &&
args[idName] !== undefined &&
args[idName] !== null
) {
return getObjectFromTypeAndId(swapiType, args[idName]);
}
if (args.id !== undefined && args.id !== null) {
const globalId = fromGlobalId(args.id);
if (
globalId.id === null ||
globalId.id === undefined ||
globalId.id === ''
) {
throw new Error('No valid ID extracted from ' + args.id);
}
return getObjectFromTypeAndId(globalId.type, globalId.id);
}
throw new Error('must provide id or ' + idName);
},
};
}
/**
* Creates a connection that will return all objects of the given
* `swapiType`; the connection will be named using `name`.
*/
function rootConnection(name, swapiType) {
const graphqlType = swapiTypeToGraphQLType(swapiType);
const { connectionType } = connectionDefinitions({
name,
nodeType: graphqlType,
connectionFields: () => ({
totalCount: {
type: GraphQLInt,
resolve: conn => conn.totalCount,
description: `A count of the total number of objects in this connection, ignoring pagination.
This allows a client to fetch the first five objects by passing "5" as the
argument to "first", then fetch the total count so it could display "5 of 83",
for example.`,
},
[swapiType]: {
type: new GraphQLList(graphqlType),
resolve: conn => conn.edges.map(edge => edge.node),
description: `A list of all of the objects returned in the connection. This is a convenience
field provided for quickly exploring the API; rather than querying for
"{ edges { node } }" when no edge data is needed, this field can be be used
instead. Note that when clients like Relay need to fetch the "cursor" field on
the edge to enable efficient pagination, this shortcut cannot be used, and the
full "{ edges { node } }" version should be used instead.`,
},
}),
});
return {
type: connectionType,
args: connectionArgs,
resolve: async (_, args) => {
const graphQLType = swapiTypeToGraphQLType(swapiType);
let objects = [];
let totalCount = 0;
if (graphQLType instanceof GraphQLUnionType) {
for (const type of graphQLType.getTypes()) {
// eslint-disable-next-line no-await-in-loop
const objectsByType = await getObjectsByType(
graphQLTypeToSwapiType(type),
);
if (graphQLType instanceof GraphQLFilteredUnionType) {
objectsByType.objects = graphQLType.filter(
type,
objectsByType.objects,
);
objectsByType.totalCount = objectsByType.objects.length;
}
objects = objects.concat(objectsByType.objects);
totalCount += objectsByType.totalCount;
}
} else {
const objectsByType = await getObjectsByType(swapiType);
objects = objects.concat(objectsByType.objects);
totalCount = objectsByType.totalCount;
}
return {
...connectionFromArray(objects, args),
totalCount,
};
},
};
}
/**
* The GraphQL type equivalent of the Root resource
*/
const rootType = new GraphQLObjectType({
name: 'Root',
fields: () => ({
allFilms: rootConnection('Films', 'films'),
film: rootFieldByID('filmID', 'films'),
allPeople: rootConnection('People', 'people'),
person: rootFieldByID('personID', 'people'),
allPlanets: rootConnection('Planets', 'planets'),
planet: rootFieldByID('planetID', 'planets'),
allSpecies: rootConnection('Species', 'species'),
species: rootFieldByID('speciesID', 'species'),
allStarships: rootConnection('Starships', 'starships'),
starship: rootFieldByID('starshipID', 'starships'),
allVehicles: rootConnection('Vehicles', 'vehicles'),
vehicle: rootFieldByID('vehicleID', 'vehicles'),
machine: rootFieldByID('machineID', 'machines'),
allMachines: rootConnection('Machines', 'machines'),
node: nodeField,
}),
});
export default new GraphQLSchema({ query: rootType });