File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1007,20 +1007,17 @@ func completeSchema(
10071007
10081008 // Common types to both Interface and Object.
10091009 // Don't generate reference types for @extends types in Apollo service query
1010- //nolint:staticcheck // negated conjunction form is clearer than De Morgan for federation checks
10111010 if ! (apolloServiceQuery && hasExtends (defn )) {
10121011 addReferenceType (sch , defn , providesTypeMap )
10131012 }
10141013
10151014 // Don't generate mutation input types for @extends types in Apollo service query
1016- //nolint:staticcheck // negated conjunction form is clearer than De Morgan for federation checks
10171015 if params .generateUpdateMutation && ! (apolloServiceQuery && hasExtends (defn )) {
10181016 addPatchType (sch , defn , providesTypeMap )
10191017 addUpdateType (sch , defn )
10201018 addUpdatePayloadType (sch , defn , providesTypeMap )
10211019 }
10221020
1023- //nolint:staticcheck // negated conjunction form is clearer than De Morgan for federation checks
10241021 if params .generateDeleteMutation && ! (apolloServiceQuery && hasExtends (defn )) {
10251022 addDeletePayloadType (sch , defn , providesTypeMap )
10261023 }
You can’t perform that action at this time.
0 commit comments