We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1c8af1c commit d7471cfCopy full SHA for d7471cf
src/types/types.d.ts
@@ -72,15 +72,8 @@ export type CustomResolver<TContext = any> = (
72
info: TInfo
73
) => Promise<any>
74
75
-export type CustomMutationConfiguration<TContext = any> = {
76
- type: GraphQLObjectType | GraphQLList<GraphQLObjectType>
77
- description?: string
78
- args: EndpointArgs
79
- resolve: CustomResolver<TContext>
80
-}
81
-
82
export type MutationList<TContext = any> = {
83
- [key: string]: CustomMutationConfiguration<TContext>
+ [key: string]: GraphQLFieldConfig<TSource, TContext, TArgs>
84
}
85
86
export type CustomSubscriptionConfiguration<TContext = any> = {
0 commit comments