File size: 463 Bytes
1e92f2d |
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 |
// @flow
import { graphql } from 'graphql';
import createLoaders from '../loaders';
import schema from '../schema';
type Options = {
context?: {
user?: ?Object,
},
variables?: ?Object,
};
// Nice little helper function for tests
export const request = (query: mixed, { context, variables }: Options = {}) => {
return graphql(
schema,
query,
undefined,
{
loaders: createLoaders(),
...context,
},
variables
);
};
|