Vulcan/packages/vulcan-lib/lib/modules/graphql.js

219 lines
6.3 KiB
JavaScript
Raw Normal View History

2016-11-26 11:17:01 +09:00
/*
Utilities to generate the app's GraphQL schema
*/
2016-11-03 21:39:09 +09:00
import deepmerge from 'deepmerge';
import GraphQLJSON from 'graphql-type-json';
import GraphQLDate from 'graphql-date';
import Vulcan from './config.js'; // used for global export
2016-12-12 11:34:28 +09:00
import { Utils } from './utils.js';
2017-06-21 15:03:38 +09:00
import { disableFragmentWarnings } from 'graphql-tag';
disableFragmentWarnings();
2016-11-03 21:39:09 +09:00
// get GraphQL type for a given schema and field name
const getGraphQLType = (schema, fieldName) => {
const field = schema[fieldName];
const type = field.type.singleType;
const typeName = typeof type === 'function' ? type.name : type;
switch (typeName) {
case 'String':
return 'String';
case 'Boolean':
return 'Boolean';
case 'Number':
return 'Float';
case 'SimpleSchema.Integer':
return 'Int';
// for arrays, look for type of associated schema field or default to [String]
case 'Array':
const arrayItemFieldName = `${fieldName}.$`;
// note: make sure field has an associated array
if (schema[arrayItemFieldName]) {
// try to get array type from associated array
const arrayItemType = getGraphQLType(schema, arrayItemFieldName);
return arrayItemType ? `[${arrayItemType}]` : null;
}
return null;
case 'Object':
return 'JSON';
case 'Date':
return 'Date';
default:
return null;
}
}
export const GraphQLSchema = {
// collections used to auto-generate schemas
collections: [],
2016-11-08 15:12:23 +09:00
addCollection(collection) {
this.collections.push(collection);
},
2016-11-26 11:17:01 +09:00
// generate GraphQL schemas for all registered collections
getCollectionsSchemas() {
const collectionsSchemas = this.collections.map(collection => {
2016-11-08 15:12:23 +09:00
return this.generateSchema(collection);
}).join('\n');
return collectionsSchemas;
},
// additional schemas
schemas: [],
addSchema(schema) {
this.schemas.push(schema);
},
2016-11-26 11:17:01 +09:00
// get extra schemas defined manually
getAdditionalSchemas() {
const additionalSchemas = this.schemas.join('\n');
return additionalSchemas;
},
// queries
queries: [],
addQuery(query) {
this.queries.push(query);
},
// mutations
mutations: [],
addMutation(mutation) {
this.mutations.push(mutation);
},
// add resolvers
resolvers: {
JSON: GraphQLJSON,
Date: GraphQLDate,
},
2016-11-03 21:39:09 +09:00
addResolvers(resolvers) {
this.resolvers = deepmerge(this.resolvers, resolvers);
},
2017-03-29 16:43:52 +09:00
removeResolver(typeName, resolverName) {
delete this.resolvers[typeName][resolverName];
},
// add objects to context
2016-11-03 21:39:09 +09:00
context: {},
addToContext(object) {
this.context = deepmerge(this.context, object);
2016-11-07 17:45:17 +09:00
},
2016-11-26 11:17:01 +09:00
// generate a GraphQL schema corresponding to a given collection
2016-11-08 15:12:23 +09:00
generateSchema(collection) {
const collectionName = collection.options.collectionName;
2016-12-12 11:34:28 +09:00
const mainTypeName = collection.typeName ? collection.typeName : Utils.camelToSpaces(_.initial(collectionName).join('')); // default to posts -> Post
// backward-compatibility code: we do not want user.telescope fields in the graphql schema
2016-12-12 11:34:28 +09:00
const schema = Utils.stripTelescopeNamespace(collection.simpleSchema()._schema);
let mainSchema = [], inputSchema = [], unsetSchema = [];
_.forEach(schema, (field, fieldName) => {
// console.log(field, fieldName)
const fieldType = getGraphQLType(schema, fieldName);
if (fieldName.indexOf('$') === -1) { // skip fields containing "$" in their name
2016-11-08 15:16:58 +09:00
// if field has a resolveAs, push it to schema
2016-11-08 15:16:58 +09:00
if (field.resolveAs) {
if (typeof field.resolveAs === 'string') {
// if resolveAs is a string, push it and done
mainSchema.push(field.resolveAs);
} else {
// if resolveAs is an object, first push its type definition
// include arguments if there are any
2017-07-14 10:37:19 +09:00
mainSchema.push(`${field.resolveAs.fieldName}${field.resolveAs.arguments ? `(${field.resolveAs.arguments})` : ''}: ${field.resolveAs.type}`);
// then build actual resolver object and pass it to addGraphQLResolvers
const resolver = {
[mainTypeName]: {
[field.resolveAs.fieldName]: field.resolveAs.resolver
}
};
addGraphQLResolvers(resolver);
}
2017-07-14 10:37:19 +09:00
// if addOriginalField option is enabled, also add original field to schema
if (field.resolveAs.addOriginalField && fieldType) {
mainSchema.push(`${fieldName}: ${fieldType}`);
}
} else {
// try to guess GraphQL type
if (fieldType) {
mainSchema.push(`${fieldName}: ${fieldType}`);
}
2016-11-08 15:16:58 +09:00
}
if (field.insertableBy || field.editableBy) {
// note: marking a field as required makes it required for updates, too,
// which makes partial updates impossible
// const isRequired = field.optional ? '' : '!';
const isRequired = '';
// 2. input schema
inputSchema.push(`${fieldName}: ${fieldType}${isRequired}`);
// 3. unset schema
unsetSchema.push(`${fieldName}: Boolean`);
}
}
});
const { interfaces = [] } = collection.options;
const graphQLInterfaces = interfaces.length ? `implements ${interfaces.join(`, `)} ` : '';
let graphQLSchema = `
type ${mainTypeName} ${graphQLInterfaces}{
${mainSchema.join('\n ')}
}
`
graphQLSchema += `
input ${collectionName}Input {
${inputSchema.length ? inputSchema.join('\n ') : '_blank: Boolean'}
}
input ${collectionName}Unset {
${inputSchema.length ? unsetSchema.join('\n ') : '_blank: Boolean'}
}
`
return graphQLSchema;
}
};
Vulcan.getGraphQLSchema = () => {
const schema = GraphQLSchema.finalSchema[0];
console.log(schema);
return schema;
}
export const addGraphQLCollection = GraphQLSchema.addCollection.bind(GraphQLSchema);
export const addGraphQLSchema = GraphQLSchema.addSchema.bind(GraphQLSchema);
export const addGraphQLQuery = GraphQLSchema.addQuery.bind(GraphQLSchema);
export const addGraphQLMutation = GraphQLSchema.addMutation.bind(GraphQLSchema);
export const addGraphQLResolvers = GraphQLSchema.addResolvers.bind(GraphQLSchema);
2017-03-29 16:43:52 +09:00
export const removeGraphQLResolver = GraphQLSchema.removeResolver.bind(GraphQLSchema);
export const addToGraphQLContext = GraphQLSchema.addToContext.bind(GraphQLSchema);