@@ -22,7 +22,7 @@ def __eq__(self, other):
22
22
return (
23
23
self is other or (
24
24
isinstance (other , Document ) and
25
- self .loc == other .loc and
25
+ # self.loc == other.loc and
26
26
self .definitions == other .definitions
27
27
)
28
28
)
@@ -58,7 +58,7 @@ def __eq__(self, other):
58
58
return (
59
59
self is other or (
60
60
isinstance (other , OperationDefinition ) and
61
- self .loc == other .loc and
61
+ # self.loc == other.loc and
62
62
self .operation == other .operation and
63
63
self .name == other .name and
64
64
self .variable_definitions == other .variable_definitions and
@@ -104,7 +104,7 @@ def __eq__(self, other):
104
104
return (
105
105
self is other or (
106
106
isinstance (other , VariableDefinition ) and
107
- self .loc == other .loc and
107
+ # self.loc == other.loc and
108
108
self .variable == other .variable and
109
109
self .type == other .type and
110
110
self .default_value == other .default_value
@@ -142,7 +142,7 @@ def __eq__(self, other):
142
142
return (
143
143
self is other or (
144
144
isinstance (other , SelectionSet ) and
145
- self .loc == other .loc and
145
+ # self.loc == other.loc and
146
146
self .selections == other .selections
147
147
)
148
148
)
@@ -182,7 +182,7 @@ def __eq__(self, other):
182
182
return (
183
183
self is other or (
184
184
isinstance (other , Field ) and
185
- self .loc == other .loc and
185
+ # self.loc == other.loc and
186
186
self .alias == other .alias and
187
187
self .name == other .name and
188
188
self .arguments == other .arguments and
@@ -227,7 +227,7 @@ def __eq__(self, other):
227
227
return (
228
228
self is other or (
229
229
isinstance (other , Argument ) and
230
- self .loc == other .loc and
230
+ # self.loc == other.loc and
231
231
self .name == other .name and
232
232
self .value == other .value
233
233
)
@@ -263,7 +263,7 @@ def __eq__(self, other):
263
263
return (
264
264
self is other or (
265
265
isinstance (other , FragmentSpread ) and
266
- self .loc == other .loc and
266
+ # self.loc == other.loc and
267
267
self .name == other .name and
268
268
self .directives == other .directives
269
269
)
@@ -300,7 +300,7 @@ def __eq__(self, other):
300
300
return (
301
301
self is other or (
302
302
isinstance (other , InlineFragment ) and
303
- self .loc == other .loc and
303
+ # self.loc == other.loc and
304
304
self .type_condition == other .type_condition and
305
305
self .directives == other .directives and
306
306
self .selection_set == other .selection_set
@@ -341,7 +341,7 @@ def __eq__(self, other):
341
341
return (
342
342
self is other or (
343
343
isinstance (other , FragmentDefinition ) and
344
- self .loc == other .loc and
344
+ # self.loc == other.loc and
345
345
self .name == other .name and
346
346
self .type_condition == other .type_condition and
347
347
self .directives == other .directives and
@@ -386,7 +386,7 @@ def __eq__(self, other):
386
386
return (
387
387
self is other or (
388
388
isinstance (other , Variable ) and
389
- self .loc == other .loc and
389
+ # self.loc == other.loc and
390
390
self .name == other .name
391
391
)
392
392
)
@@ -418,7 +418,7 @@ def __eq__(self, other):
418
418
return (
419
419
self is other or (
420
420
isinstance (other , IntValue ) and
421
- self .loc == other .loc and
421
+ # self.loc == other.loc and
422
422
self .value == other .value
423
423
)
424
424
)
@@ -450,7 +450,7 @@ def __eq__(self, other):
450
450
return (
451
451
self is other or (
452
452
isinstance (other , FloatValue ) and
453
- self .loc == other .loc and
453
+ # self.loc == other.loc and
454
454
self .value == other .value
455
455
)
456
456
)
@@ -482,7 +482,7 @@ def __eq__(self, other):
482
482
return (
483
483
self is other or (
484
484
isinstance (other , StringValue ) and
485
- self .loc == other .loc and
485
+ # self.loc == other.loc and
486
486
self .value == other .value
487
487
)
488
488
)
@@ -514,7 +514,7 @@ def __eq__(self, other):
514
514
return (
515
515
self is other or (
516
516
isinstance (other , BooleanValue ) and
517
- self .loc == other .loc and
517
+ # self.loc == other.loc and
518
518
self .value == other .value
519
519
)
520
520
)
@@ -546,7 +546,7 @@ def __eq__(self, other):
546
546
return (
547
547
self is other or (
548
548
isinstance (other , EnumValue ) and
549
- self .loc == other .loc and
549
+ # self.loc == other.loc and
550
550
self .value == other .value
551
551
)
552
552
)
@@ -578,7 +578,7 @@ def __eq__(self, other):
578
578
return (
579
579
self is other or (
580
580
isinstance (other , ListValue ) and
581
- self .loc == other .loc and
581
+ # self.loc == other.loc and
582
582
self .values == other .values
583
583
)
584
584
)
@@ -610,7 +610,7 @@ def __eq__(self, other):
610
610
return (
611
611
self is other or (
612
612
isinstance (other , ObjectValue ) and
613
- self .loc == other .loc and
613
+ # self.loc == other.loc and
614
614
self .fields == other .fields
615
615
)
616
616
)
@@ -643,7 +643,7 @@ def __eq__(self, other):
643
643
return (
644
644
self is other or (
645
645
isinstance (other , ObjectField ) and
646
- self .loc == other .loc and
646
+ # self.loc == other.loc and
647
647
self .name == other .name and
648
648
self .value == other .value
649
649
)
@@ -679,7 +679,7 @@ def __eq__(self, other):
679
679
return (
680
680
self is other or (
681
681
isinstance (other , Directive ) and
682
- self .loc == other .loc and
682
+ # self.loc == other.loc and
683
683
self .name == other .name and
684
684
self .arguments == other .arguments
685
685
)
@@ -718,7 +718,7 @@ def __eq__(self, other):
718
718
return (
719
719
self is other or (
720
720
isinstance (other , NamedType ) and
721
- self .loc == other .loc and
721
+ # self.loc == other.loc and
722
722
self .name == other .name
723
723
)
724
724
)
@@ -750,7 +750,7 @@ def __eq__(self, other):
750
750
return (
751
751
self is other or (
752
752
isinstance (other , ListType ) and
753
- self .loc == other .loc and
753
+ # self.loc == other.loc and
754
754
self .type == other .type
755
755
)
756
756
)
@@ -782,7 +782,7 @@ def __eq__(self, other):
782
782
return (
783
783
self is other or (
784
784
isinstance (other , NonNullType ) and
785
- self .loc == other .loc and
785
+ # self.loc == other.loc and
786
786
self .type == other .type
787
787
)
788
788
)
@@ -814,7 +814,7 @@ def __eq__(self, other):
814
814
return (
815
815
self is other or (
816
816
isinstance (other , Name ) and
817
- self .loc == other .loc and
817
+ # self.loc == other.loc and
818
818
self .value == other .value
819
819
)
820
820
)
@@ -924,7 +924,7 @@ def __eq__(self, other):
924
924
return (
925
925
self is other or (
926
926
isinstance (other , ObjectTypeDefinition ) and
927
- self .loc == other .loc and
927
+ # self.loc == other.loc and
928
928
self .name == other .name and
929
929
self .interfaces == other .interfaces and
930
930
self .fields == other .fields
@@ -964,7 +964,7 @@ def __eq__(self, other):
964
964
return (
965
965
self is other or (
966
966
isinstance (other , FieldDefinition ) and
967
- self .loc == other .loc and
967
+ # self.loc == other.loc and
968
968
self .name == other .name and
969
969
self .arguments == other .arguments and
970
970
self .type == other .type
@@ -1004,7 +1004,7 @@ def __eq__(self, other):
1004
1004
return (
1005
1005
self is other or (
1006
1006
isinstance (other , InputValueDefinition ) and
1007
- self .loc == other .loc and
1007
+ # self.loc == other.loc and
1008
1008
self .name == other .name and
1009
1009
self .type == other .type and
1010
1010
self .default_value == other .default_value
@@ -1043,7 +1043,7 @@ def __eq__(self, other):
1043
1043
return (
1044
1044
self is other or (
1045
1045
isinstance (other , InterfaceTypeDefinition ) and
1046
- self .loc == other .loc and
1046
+ # self.loc == other.loc and
1047
1047
self .name == other .name and
1048
1048
self .fields == other .fields
1049
1049
)
@@ -1079,7 +1079,7 @@ def __eq__(self, other):
1079
1079
return (
1080
1080
self is other or (
1081
1081
isinstance (other , UnionTypeDefinition ) and
1082
- self .loc == other .loc and
1082
+ # self.loc == other.loc and
1083
1083
self .name == other .name and
1084
1084
self .types == other .types
1085
1085
)
@@ -1114,7 +1114,7 @@ def __eq__(self, other):
1114
1114
return (
1115
1115
self is other or (
1116
1116
isinstance (other , ScalarTypeDefinition ) and
1117
- self .loc == other .loc and
1117
+ # self.loc == other.loc and
1118
1118
self .name == other .name
1119
1119
)
1120
1120
)
@@ -1147,7 +1147,7 @@ def __eq__(self, other):
1147
1147
return (
1148
1148
self is other or (
1149
1149
isinstance (other , EnumTypeDefinition ) and
1150
- self .loc == other .loc and
1150
+ # self.loc == other.loc and
1151
1151
self .name == other .name and
1152
1152
self .values == other .values
1153
1153
)
@@ -1182,7 +1182,7 @@ def __eq__(self, other):
1182
1182
return (
1183
1183
self is other or (
1184
1184
isinstance (other , EnumValueDefinition ) and
1185
- self .loc == other .loc and
1185
+ # self.loc == other.loc and
1186
1186
self .name == other .name
1187
1187
)
1188
1188
)
@@ -1215,7 +1215,7 @@ def __eq__(self, other):
1215
1215
return (
1216
1216
self is other or (
1217
1217
isinstance (other , InputObjectTypeDefinition ) and
1218
- self .loc == other .loc and
1218
+ # self.loc == other.loc and
1219
1219
self .name == other .name and
1220
1220
self .fields == other .fields
1221
1221
)
@@ -1250,7 +1250,7 @@ def __eq__(self, other):
1250
1250
return (
1251
1251
self is other or (
1252
1252
isinstance (other , TypeExtensionDefinition ) and
1253
- self .loc == other .loc and
1253
+ # self.loc == other.loc and
1254
1254
self .definition == other .definition
1255
1255
)
1256
1256
)
@@ -1286,7 +1286,7 @@ def __eq__(self, other):
1286
1286
isinstance (other , DirectiveDefinition ) and
1287
1287
self .name == other .name and
1288
1288
self .locations == other .locations and
1289
- self .loc == other .loc and
1289
+ # self.loc == other.loc and
1290
1290
self .arguments == other .arguments
1291
1291
)
1292
1292
)
0 commit comments