We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8364bb6 commit 89b24f7Copy full SHA for 89b24f7
__tests__/gql/queries/object-kitchen-sink.gql
@@ -66,6 +66,15 @@ query TestObject($id: ID!) {
66
label
67
}
68
69
+ interfaceNestedNonNullField {
70
+ ... on TestInterface {
71
+ id
72
+ label
73
+ }
74
+ ... on TestImplOne {
75
+ description
76
77
78
relayConnectionField(first: 1, after: "VGVzdFJlbGF5Tm9kZTox") {
79
...testRelayConnection
80
__tests__/gql/schema.gql
@@ -91,6 +91,7 @@ type TestObject {
91
hasManyNestedNonNullField: [TestOption!]!
92
interfaceField: TestInterface
93
interfaceNonNullField: TestInterface!
94
+ interfaceNestedNonNullField: [TestInterface!]!
95
relayConnectionField(first: Int, after: String): TestRelayConnection
96
relayConnectionFilteredField(
97
first: Int
0 commit comments