@@ -66,6 +66,74 @@ type AnnotatedWithAtProtocolObjectList_input {
6666 A : AnnotatedWithAtProtocolObjectList_A_input
6767}
6868
69+ type AnnotatedWithAtProtocolObjectWithKey {
70+ A (filter : [AnnotatedWithAtProtocolObjectWithKey_A_filter ], orderBy : [AnnotatedWithAtProtocolObjectWithKey_A_orderBy ], skip : Int , top : Int ): AnnotatedWithAtProtocolObjectWithKey_A_connection
71+ }
72+
73+ type AnnotatedWithAtProtocolObjectWithKeyAndValue {
74+ A (filter : [AnnotatedWithAtProtocolObjectWithKeyAndValue_A_filter ], orderBy : [AnnotatedWithAtProtocolObjectWithKeyAndValue_A_orderBy ], skip : Int , top : Int ): AnnotatedWithAtProtocolObjectWithKeyAndValue_A_connection
75+ }
76+
77+ type AnnotatedWithAtProtocolObjectWithKeyAndValue_A {
78+ id : ID
79+ }
80+
81+ input AnnotatedWithAtProtocolObjectWithKeyAndValue_A_C {
82+ id : ID
83+ }
84+
85+ type AnnotatedWithAtProtocolObjectWithKeyAndValue_A_connection {
86+ nodes : [AnnotatedWithAtProtocolObjectWithKeyAndValue_A ]
87+ totalCount : Int
88+ }
89+
90+ input AnnotatedWithAtProtocolObjectWithKeyAndValue_A_filter {
91+ id : [ID_filter ]
92+ }
93+
94+ type AnnotatedWithAtProtocolObjectWithKeyAndValue_A_input {
95+ create (input : [AnnotatedWithAtProtocolObjectWithKeyAndValue_A_C ]! ): [AnnotatedWithAtProtocolObjectWithKeyAndValue_A ]
96+ delete (filter : [AnnotatedWithAtProtocolObjectWithKeyAndValue_A_filter ]! ): Int
97+ }
98+
99+ input AnnotatedWithAtProtocolObjectWithKeyAndValue_A_orderBy {
100+ id : SortDirection
101+ }
102+
103+ type AnnotatedWithAtProtocolObjectWithKeyAndValue_input {
104+ A : AnnotatedWithAtProtocolObjectWithKeyAndValue_A_input
105+ }
106+
107+ type AnnotatedWithAtProtocolObjectWithKey_A {
108+ id : ID
109+ }
110+
111+ input AnnotatedWithAtProtocolObjectWithKey_A_C {
112+ id : ID
113+ }
114+
115+ type AnnotatedWithAtProtocolObjectWithKey_A_connection {
116+ nodes : [AnnotatedWithAtProtocolObjectWithKey_A ]
117+ totalCount : Int
118+ }
119+
120+ input AnnotatedWithAtProtocolObjectWithKey_A_filter {
121+ id : [ID_filter ]
122+ }
123+
124+ type AnnotatedWithAtProtocolObjectWithKey_A_input {
125+ create (input : [AnnotatedWithAtProtocolObjectWithKey_A_C ]! ): [AnnotatedWithAtProtocolObjectWithKey_A ]
126+ delete (filter : [AnnotatedWithAtProtocolObjectWithKey_A_filter ]! ): Int
127+ }
128+
129+ input AnnotatedWithAtProtocolObjectWithKey_A_orderBy {
130+ id : SortDirection
131+ }
132+
133+ type AnnotatedWithAtProtocolObjectWithKey_input {
134+ A : AnnotatedWithAtProtocolObjectWithKey_A_input
135+ }
136+
69137type AnnotatedWithAtProtocolString {
70138 A (filter : [AnnotatedWithAtProtocolString_A_filter ], orderBy : [AnnotatedWithAtProtocolString_A_orderBy ], skip : Int , top : Int ): AnnotatedWithAtProtocolString_A_connection
71139}
@@ -147,13 +215,17 @@ input ID_filter {
147215type Mutation {
148216 AnnotatedWithAtGraphQL : AnnotatedWithAtGraphQL_input
149217 AnnotatedWithAtProtocolObjectList : AnnotatedWithAtProtocolObjectList_input
218+ AnnotatedWithAtProtocolObjectWithKey : AnnotatedWithAtProtocolObjectWithKey_input
219+ AnnotatedWithAtProtocolObjectWithKeyAndValue : AnnotatedWithAtProtocolObjectWithKeyAndValue_input
150220 AnnotatedWithAtProtocolString : AnnotatedWithAtProtocolString_input
151221 AnnotatedWithAtProtocolStringList : AnnotatedWithAtProtocolStringList_input
152222}
153223
154224type Query {
155225 AnnotatedWithAtGraphQL : AnnotatedWithAtGraphQL
156226 AnnotatedWithAtProtocolObjectList : AnnotatedWithAtProtocolObjectList
227+ AnnotatedWithAtProtocolObjectWithKey : AnnotatedWithAtProtocolObjectWithKey
228+ AnnotatedWithAtProtocolObjectWithKeyAndValue : AnnotatedWithAtProtocolObjectWithKeyAndValue
157229 AnnotatedWithAtProtocolString : AnnotatedWithAtProtocolString
158230 AnnotatedWithAtProtocolStringList : AnnotatedWithAtProtocolStringList
159231}
0 commit comments