Vulcan/packages/vulcan-lib/lib/server/query.js
Justin Reynolds 75b6ece0a4 Fix linting
2018-01-25 15:03:03 -06:00

88 lines
No EOL
2.8 KiB
JavaScript

/*
Run a GraphQL query from the server with the proper context
*/
import { graphql } from 'graphql';
import { executableSchema } from './apollo_server.js';
import { Collections } from '../modules/collections.js';
import DataLoader from 'dataloader';
import findByIds from '../modules/findbyids.js';
import { getDefaultFragmentText, extractFragmentName, getFragmentText } from '../modules/fragments.js';
// note: if no context is passed, default to running queries with full admin privileges
export const runQuery = async (query, variables = {}, context = { currentUser: {isAdmin: true} }) => {
// within the scope of this specific query,
// decorate each collection with a new Dataloader object and add it to context
Collections.forEach(collection => {
collection.loader = new DataLoader(ids => findByIds(collection, ids, context), { cache: true });
context[collection.options.collectionName] = collection;
});
// see http://graphql.org/graphql-js/graphql/#graphql
const result = await graphql(executableSchema, query, {}, context, variables);
if (result.errors) {
// eslint-disable-next-line no-console
console.log('runQuery error: '+result.errors[0].message);
throw new Error(result.errors[0].message);
}
return result;
}
/*
Given a collection and a fragment, build a query to fetch one document.
If no fragment is passed, default to default fragment
*/
export const buildQuery = (collection, {fragmentName, fragmentText}) => {
const collectionName = collection.options.collectionName;
const resolverName = `${collectionName}Single`;
const defaultFragmentName = `${collectionName}DefaultFragment`;
const defaultFragmentText = getDefaultFragmentText(collection, { onlyViewable: false });
// default to default name and text
let name = defaultFragmentName;
let text = defaultFragmentText;
if (fragmentName) { // if fragmentName is passed, use that to get name and text
name = fragmentName;
text = getFragmentText(fragmentName);
} else if (fragmentText) { // if fragmentText is passed, use that to get name and text
name = extractFragmentName(fragmentText);
text = fragmentText;
}
const query = `
query ${resolverName}Query ($documentId: String){
${resolverName}(documentId: $documentId){
...${name}
}
}
${text}
`
return query;
}
Meteor.startup(() => {
Collections.forEach(collection => {
const collectionName = collection.options.collectionName;
const resolverName = `${collectionName}Single`;
collection.queryOne = async (documentId, { fragmentName, fragmentText, context }) => {
const query = buildQuery(collection, { fragmentName, fragmentText });
const result = await runQuery(query, { documentId }, context);
return result.data[resolverName];
}
});
});