import { GraphQLObjectType } from 'graphql'; declare const _default: () => { queries: { dummyQuery: { description: string; type: GraphQLObjectType; args: {}; resolve(): Promise<{ status: string; }>; }; }; mutations: { dummyMutation: { description: string; type: GraphQLObjectType; args: {}; resolve(): Promise<{ status: string; }>; }; }; }; /** * Placeholder longhand query and mutation to prevent errors w/ schema stitching * https://github.com/apollographql/graphql-tools/issues/764 */ export default _default;