Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
463 Bytes
// @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
);
};