@@ -29,7 +29,7 @@ type Email = String;
2929#[ graphql(
3030 query_path = "tests/input_object_variables/input_object_variables_query_defaults.graphql" ,
3131 schema_path = "tests/input_object_variables/input_object_variables_schema.graphql" ,
32- response_derives = "Debug, PartialEq"
32+ response_derives = "Debug, PartialEq, Eq "
3333) ]
3434pub struct DefaultInputObjectVariablesQuery ;
3535
@@ -52,7 +52,7 @@ fn input_object_variables_default() {
5252#[ graphql(
5353 query_path = "tests/input_object_variables/input_object_variables_query.graphql" ,
5454 schema_path = "tests/input_object_variables/input_object_variables_schema.graphql" ,
55- response_derives = "Debug, PartialEq"
55+ response_derives = "Debug, PartialEq, Eq "
5656) ]
5757pub struct RecursiveInputQuery ;
5858
@@ -78,7 +78,7 @@ fn recursive_input_objects_can_be_constructed() {
7878#[ graphql(
7979 query_path = "tests/input_object_variables/input_object_variables_query.graphql" ,
8080 schema_path = "tests/input_object_variables/input_object_variables_schema.graphql" ,
81- response_derives = "Debug, PartialEq"
81+ response_derives = "Debug, PartialEq, Eq "
8282) ]
8383pub struct InputCaseTestsQuery ;
8484
@@ -96,7 +96,7 @@ fn input_objects_are_all_snake_case() {
9696#[ graphql(
9797 query_path = "tests/input_object_variables/input_object_variables_query.graphql" ,
9898 schema_path = "tests/input_object_variables/input_object_variables_schema.graphql" ,
99- response_derives = "Debug, PartialEq"
99+ response_derives = "Debug, PartialEq, Eq "
100100) ]
101101pub struct IndirectlyRecursiveInputQuery ;
102102
@@ -123,7 +123,7 @@ fn indirectly_recursive_input_objects_can_be_constructed() {
123123 query_path = "tests/input_object_variables/input_object_variables_query.graphql" ,
124124 schema_path = "tests/input_object_variables/input_object_variables_schema.graphql" ,
125125 variables_derives = "Default" ,
126- response_derives = "Debug, PartialEq"
126+ response_derives = "Debug, PartialEq, Eq "
127127) ]
128128pub struct RustNameQuery ;
129129
0 commit comments