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 9d520d7 commit 0a3bbf8Copy full SHA for 0a3bbf8
src/macros/input_object.rs
@@ -70,7 +70,7 @@ macro_rules! graphql_input_object {
70
println!("Found variable for {:?}: {:?} in {:?}", n, v, $var);
71
72
match v {
73
- $( Some(&&InputValue::Null) | None if true => $default, )*
+ $( Some(&&$crate::InputValue::Null) | None if true => $default, )*
74
Some(v) => $crate::FromInputValue::from(v).unwrap(),
75
_ => $crate::FromInputValue::from(&$crate::InputValue::null()).unwrap()
76
}
0 commit comments