-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Querying same field w/ and w/o attributes for different union types results in error #53
Comments
This is currently working as designed, but feedback is welcome. The design goal here is to make the resulting response unambiguous. If for example, Article and Program were both Interfaces that one type adhered to, it would be unclear which variant of "title" was being requested. |
This is very deliberate. Any time that two fields that "merge" can potentially return different results we do not allow this. Imagine if "title" returned "foo" and "title(language: fi" returned "bar" which value would the "title" key be? |
If you wish to query for both you should alias at least one of the fields to be unambiguous. |
I think we could probably improve this if two fields are known to never "merge". In this case, the two types are Object types and in no condition would both "title" fields be queried for the same object. We should be a bit smarter about this (likely common) case |
Is there any possibility for confusion when using the If there was a SearchResult interface that defined a field
This would also result in error with current implementation. |
Actually, even if the query was something like
that'd still be pretty easy to reason about: select 120px picture url for anything that isn't an Image, and 600px for Image. |
The only problem I can think of is with case where an interface defines a field with some set of args and it's implemented with different set of args. For example, if In this case it would be pretty hard to respond to query like But this should be a compile time check to ensure you can't create such schema in the first place. Instead of it happening on query time. |
This case definitely presents an issue, since if you have an object which is of type |
@leebyron, I think it's quite intuitive way of saying just give me 120px preview image for search results that aren't an You could think of it as |
We shouldn't add more ways to shoot ourself into our feet! We already have very powerful features in the language to allow very flexible queries! |
Can you explain what part you do consider as shooting you into feet? The precedence thing might be such, but I don't think my original example with program and article title is that unreasonable. |
As pointed out in #53, our validation is more conservative than it needs to be in some cases. Particularly, two fields which could not overlap are still treated as a potential conflict. This change loosens this rule, allowing fields which can never both apply in a frame of execution to diverge.
As pointed out in #53, our validation is more conservative than it needs to be in some cases. Particularly, two fields which could not overlap are still treated as a potential conflict. This change loosens this rule, allowing fields which can never both apply in a frame of execution to diverge.
As pointed out in #53, our validation is more conservative than it needs to be in some cases. Particularly, two fields which could not overlap are still treated as a potential conflict. This change loosens this rule, allowing fields which can never both apply in a frame of execution to diverge.
As pointed out in #53, our validation is more conservative than it needs to be in some cases. Particularly, two fields which could not overlap are still treated as a potential conflict. This change loosens this rule, allowing fields which can never both apply in a frame of execution to diverge.
As pointed out in #53, our validation is more conservative than it needs to be in some cases. Particularly, two fields which could not overlap are still treated as a potential conflict. This change loosens this rule, allowing fields which can never both apply in a frame of execution to diverge.
I'll have this out in the next npm release soon |
@leebyron So it appears this issue was addressed for aliases but never for actual type definitions. Consider this example schema:
With this schema the following query would be very legitimate:
However, this will always give you an error about the types of the background fields not matching . Any reason why this https://github.com/graphql/graphql-js/blob/master/src/validation/rules/OverlappingFieldsCanBeMerged.js#L603 type check cannot be moved up inside of the |
@mkochendorfer Response fields should have predictable type it should be the single type not the combination of |
@IvanGoncharov They do have predictable types depending on the parent type, so I do not really understand your statement. I will also add that the behavior was already changed for aliases to allow this very thing, so I do not see how this is any different. |
@mkochendorfer as @IvanGoncharov said, this is correct by the spec. Your example is actually one of few remaining areas of the spec that rubs me the wrong way; I definitely see its utility in the context of implementing parsers in certain languages, but with only a cursory analysis I found the restriction unnecessarily, given that client limitations shouldn't limit the abilities of the server (instead, they can just add aliases to their queries when they enter such a scenario, as all clients must do now). I've currently got two projects I'm trying to champion for GraphQL (implementation of interfaces by interfaces and big TS changes), but as soon as one of these wraps up, I'm going to try to formalize a case for removing this restriction, and present it to the working group. |
Yeah, I guess what I am fundamentally saying is that based on #53 (comment) and the resulting PR #229 it seems like the spec is already our of sync with this implementation. That original PR to address this issue seems like it would have worked for my case actually as it just exits immediately if the parent types differ. That code has since been changed causing my issue to resurface. https://graphql.github.io/graphql-spec/draft/#example-54e3d seems like a fundamentally wrong counter example based on all of the above, so if that means the spec needs to be updated to get this corrected, then I am all for it. Is there some reason behind this restriction in the spec? |
Name one other type system that has a union type that requires fields of the unioned types to match...this was a nasty surprise and it makes me angry. And the fact that it was a deliberate decision even moreso. In my case I had two types that unioned just fine until today, when I needed to make a field on one of them optional. Now I have to do extra work to de-alias the conflicting field in the query result 🙁 |
Whichever one corresponds to the type Program = {
__typename: 'Program',
title: 'foo',
}
type Article = {
__typename: 'Article',
title: 'bar',
}
type CuratedListItem = Program | Article And as I mentioned in my above comment, I don't know of any language whose type system is incapable of representing a union where field types mismatch. Even if you're not querying the |
Well GraphQL is also weird to me in that it only allows object types to be unioned. This issue seems like an unintended consequence of that design decision. |
This is so bad, I have several TS interfaces and I expect my results to match those interfaces, if I start aliasing the unions then they won't match and I'm going to have to convert the results to match the TS interfaces. I'm going to use just a plain Union types are ambiguous by definition, you either support them or you don't. |
Dang, just stumbled upon this issue while trying to use fragments on a union-typed field with types that share a field name but each is its own type: fragment myFragment on Entity {
... on Player{
type
...playerFragment
}
... on Coach{
type
...coachFragment
}
}
Any way to ignore this error? |
I don't understand why querying for a field with different types for some members of a union should result in an error iff you include the |
Running into this as well. Pretty major limitations for union types and interfaces. From my perspective, if we've used |
If you're querying different fields of the unioned types, a given field isn't guaranteed to be present in the response. So why does a field need to have a guaranteed type in the response either? Even if field types merge, they could have different semantic meaning that might be ambiguous if the query doesn't include __typename or other distinguishing fields. |
This just bit me. I designed an entire section of schema around a union thinking that query fragments would be sufficient to disambiguate the possible values of a field whose name is shared by all members of the union but whose return type differs. In my case the field types are different |
Ugly workaround: If you patch graphql and remove the rule everything works fine (except linter in explorer, that will still complain) and its a 1-liner. So maybe we can have an option for disabling that rule (or replace it with a less strict version)? diff --git a/validation/specifiedRules.js b/validation/specifiedRules.js
index 014d23b0aa30a76dba8ec812fbc76cfadc4e7100..dda780fd838378bf789e9b13ed77b0fb6d6a81c9 100644
--- a/validation/specifiedRules.js
+++ b/validation/specifiedRules.js
@@ -31,8 +31,6 @@ var _NoUnusedFragmentsRule = require('./rules/NoUnusedFragmentsRule.js');
var _NoUnusedVariablesRule = require('./rules/NoUnusedVariablesRule.js');
-var _OverlappingFieldsCanBeMergedRule = require('./rules/OverlappingFieldsCanBeMergedRule.js');
-
var _PossibleFragmentSpreadsRule = require('./rules/PossibleFragmentSpreadsRule.js');
var _PossibleTypeExtensionsRule = require('./rules/PossibleTypeExtensionsRule.js');
@@ -132,7 +130,6 @@ const specifiedRules = Object.freeze([
_ValuesOfCorrectTypeRule.ValuesOfCorrectTypeRule,
_ProvidedRequiredArgumentsRule.ProvidedRequiredArgumentsRule,
_VariablesInAllowedPositionRule.VariablesInAllowedPositionRule,
- _OverlappingFieldsCanBeMergedRule.OverlappingFieldsCanBeMergedRule,
_UniqueInputFieldNamesRule.UniqueInputFieldNamesRule,
]);
/** |
How is this still a problem 8 years later this is really frustrating |
Why is this issue closed? |
Query:
Error:
Should it really work like that, or is this a bug?
Article and Program are both members of union type Content
The text was updated successfully, but these errors were encountered: