resolverMap.d.ts 441 B

123456789101112
  1. import { GraphQLFieldResolver, GraphQLScalarType } from "graphql";
  2. export interface GraphQLResolverMap<TContext = {}> {
  3. [typeName: string]: {
  4. [fieldName: string]: GraphQLFieldResolver<any, TContext> | {
  5. requires?: string;
  6. resolve: GraphQLFieldResolver<any, TContext>;
  7. };
  8. } | GraphQLScalarType | {
  9. [enumValue: string]: string | number;
  10. };
  11. }
  12. //# sourceMappingURL=resolverMap.d.ts.map