import { GraphQLResolveInfo } from "graphql"; import { Field } from ".."; import { KeyValue } from "../types"; /** * The request context */ export interface Context { body: BodyType; context: any; infos: GraphQLResolveInfo; source: SourceType; field: Field; rawArgs: KeyValue; }