MCPcopy Create free account
hub / github.com/parse-community/parse-server / load

Function load

src/GraphQL/loaders/defaultGraphQLQueries.js:6–21  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4import * as configQueries from './configQueries';
5
6const load = parseGraphQLSchema => {
7 parseGraphQLSchema.addGraphQLQuery(
8 'health',
9 {
10 description: 'The health query can be used to check if the server is up and running.',
11 type: new GraphQLNonNull(GraphQLBoolean),
12 resolve: () => true,
13 },
14 true,
15 true
16 );
17
18 usersQueries.load(parseGraphQLSchema);
19 schemaQueries.load(parseGraphQLSchema);
20 configQueries.load(parseGraphQLSchema);
21};
22
23export { load };

Callers

nothing calls this directly

Calls 2

addGraphQLQueryMethod · 0.80
loadMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…