Skip to content

Commit c3a693d

Browse files
committed
fix incorrect usage of IntrospectionInputTypeRef
1 parent 369c0e0 commit c3a693d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/introspection/introspection.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -167,11 +167,11 @@ pub enum IntrospectionOutputTypeRef {
167167
pub enum IntrospectionInputTypeRef {
168168
LIST {
169169
#[serde(rename = "ofType")]
170-
of_type: Option<Box<IntrospectionOutputTypeRef>>,
170+
of_type: Option<Box<IntrospectionInputTypeRef>>,
171171
},
172172
NON_NULL {
173173
#[serde(rename = "ofType")]
174-
of_type: Option<Box<IntrospectionOutputTypeRef>>,
174+
of_type: Option<Box<IntrospectionInputTypeRef>>,
175175
},
176176
SCALAR(IntrospectionNamedTypeRef),
177177
ENUM(IntrospectionNamedTypeRef),

0 commit comments

Comments
 (0)