* Remove nested operations * Improve error log * Fix bug schema to load * Fix ParseGraphQLSchema tests * Fix tests * Fix failing tests * First verstion not complete of create class mutation * Fix bug caused by circular dependency * Renaming files * Schema types should be loaded before parse classes * Fix tests * Create class mutation boilerplate * Improve CreateClassSchemaInput fields names * Remove fields * Pointer and relation fields * Improve pointer default type * Class type * Create class mutation resolver * Schema field transformers * Class types transformations * First test * Numbers test * Boolean tests * Date test * Fix some get tests * Test for created at and updated at * File tests * Test for objects * Renaming reducerFabric to reducerGenerator * Changing get tests for file and object * Object composed queries test * Array test * Null field test * Bytes test * Geo Point test * Polygons tests * Remove create generic mutation * Fix tests * Create class test - isRequired and defaultValue will be added back later * Enforce master key * Fix tests * Duplicated field test * updateClass mutation * Remove update generic mutation tests * Remove update generic mutation * deleteClass mutation * Remove delete generic mutation tests * Remove delete generic mutation * class query * Classes query * Remove get generic query from tests * Remove remaining generic operations and fix tests * Fix last test * Try to fix redis tests * Fix postgres tests * Update objectsMutations and objectsQueries files locations * Rename classSchema files to schema files * Rename ClassObject to ParseObject * Fix names and paths * Still some wrong names
14 lines
454 B
JavaScript
14 lines
454 B
JavaScript
import * as filesMutations from './filesMutations';
|
|
import * as usersMutations from './usersMutations';
|
|
import * as functionsMutations from './functionsMutations';
|
|
import * as schemaMutations from './schemaMutations';
|
|
|
|
const load = parseGraphQLSchema => {
|
|
filesMutations.load(parseGraphQLSchema);
|
|
usersMutations.load(parseGraphQLSchema);
|
|
functionsMutations.load(parseGraphQLSchema);
|
|
schemaMutations.load(parseGraphQLSchema);
|
|
};
|
|
|
|
export { load };
|