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 1723186 commit 7f34d22Copy full SHA for 7f34d22
src/connection/connection.js
@@ -9,7 +9,7 @@ import {
9
} from 'graphql';
10
11
import type {
12
- GraphQLNamedType,
+ GraphQLOutputType,
13
GraphQLFieldConfigArgumentMap,
14
GraphQLFieldConfigMap,
15
GraphQLFieldResolver,
@@ -75,7 +75,7 @@ export type ConnectionArguments = {
75
76
type ConnectionConfig = {
77
name?: string,
78
- nodeType: GraphQLNamedType | GraphQLNonNull<GraphQLNamedType>,
+ nodeType: GraphQLOutputType,
79
resolveNode?: GraphQLFieldResolver<any, any>,
80
resolveCursor?: GraphQLFieldResolver<any, any>,
81
edgeFields?: Thunk<GraphQLFieldConfigMap<any, any>>,
0 commit comments