import { graphql, GraphQLArgs } from 'graphql'; import { schema } from '../../schema/index'; export function gqlCall(options: Omit) { return graphql({ schema, ...options, }); }