@@ -29,7 +29,7 @@ type Email = String;
29
29
#[ graphql(
30
30
query_path = "tests/input_object_variables/input_object_variables_query_defaults.graphql" ,
31
31
schema_path = "tests/input_object_variables/input_object_variables_schema.graphql" ,
32
- response_derives = "Debug, PartialEq"
32
+ response_derives = "Debug, PartialEq, Eq "
33
33
) ]
34
34
pub struct DefaultInputObjectVariablesQuery ;
35
35
@@ -52,7 +52,7 @@ fn input_object_variables_default() {
52
52
#[ graphql(
53
53
query_path = "tests/input_object_variables/input_object_variables_query.graphql" ,
54
54
schema_path = "tests/input_object_variables/input_object_variables_schema.graphql" ,
55
- response_derives = "Debug, PartialEq"
55
+ response_derives = "Debug, PartialEq, Eq "
56
56
) ]
57
57
pub struct RecursiveInputQuery ;
58
58
@@ -78,7 +78,7 @@ fn recursive_input_objects_can_be_constructed() {
78
78
#[ graphql(
79
79
query_path = "tests/input_object_variables/input_object_variables_query.graphql" ,
80
80
schema_path = "tests/input_object_variables/input_object_variables_schema.graphql" ,
81
- response_derives = "Debug, PartialEq"
81
+ response_derives = "Debug, PartialEq, Eq "
82
82
) ]
83
83
pub struct InputCaseTestsQuery ;
84
84
@@ -96,7 +96,7 @@ fn input_objects_are_all_snake_case() {
96
96
#[ graphql(
97
97
query_path = "tests/input_object_variables/input_object_variables_query.graphql" ,
98
98
schema_path = "tests/input_object_variables/input_object_variables_schema.graphql" ,
99
- response_derives = "Debug, PartialEq"
99
+ response_derives = "Debug, PartialEq, Eq "
100
100
) ]
101
101
pub struct IndirectlyRecursiveInputQuery ;
102
102
@@ -123,7 +123,7 @@ fn indirectly_recursive_input_objects_can_be_constructed() {
123
123
query_path = "tests/input_object_variables/input_object_variables_query.graphql" ,
124
124
schema_path = "tests/input_object_variables/input_object_variables_schema.graphql" ,
125
125
variables_derives = "Default" ,
126
- response_derives = "Debug, PartialEq"
126
+ response_derives = "Debug, PartialEq, Eq "
127
127
) ]
128
128
pub struct RustNameQuery ;
129
129
0 commit comments