-
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
Mutation validates when schema does not support mutations #3592
Comments
enum Query {
A
B
}
(edit: again the schema itself builds, but no query validates against it, so this is probably okay.) |
This is surprising behavior, probably do to this check:
Some of the errors you mention above (missing query type, for example) are picked up when the schema (rather than the operation) is validated, which can be done explicitly or by default implicitly prior to first call to execute. Or at least I thought so; when you say some of the above schemas validate, I would have to assume you are validating some operation against that schema… ie calling validate and not validateSchema, see graphql-js/src/type/validate.ts Line 120 in e3aaab0
although operation validation should also fail presumably and this seems like a bug! Query could be an enum as long as some other object type was set as the default query type |
I'm calling const schema = buildSchema('...');
const op = parse('...');
const errors = validate(schema, op); However, I was wrong about schemas with no query root type:
Sorry, to be clear this happens when there's no such declaration, i.e. the entire schema is So assuming it's intended that (some?) schema-level validation errors show up only when you validate an operation (or maybe users are supposed to call |
Got it, thanks for clarifying. This is probable because of that check above, but perhaps simply removing it is not the answer. The strict view of FieldsOnCorrectType rule assumes the existence of the parent type because it’s only checking fields. We could automatically fail if the parent type does not exist or we could stay strict and introduce a new rule KnownOperationType |
@benjaminjkraft Yes, it should be solved by a new validation rule. You said you wanted to work on PR, happy to help with both of them. |
@IvanGoncharov thanks for confirming direction! @benjaminjkraft Thanks for raising this issue! Would you like to try out the canary release addressing this? Let me know if this is not the behavior you expected/desired, or feel free to build/change the implementation and/or spec text. Assuming this is what you had in mind, the rule would have to be advanced at the next graphql-wg meeting. If you are able to attend, you might be interested in adding yourself and this issue to the next agenda and leading the discussion? Thanks again for raising this! |
That looks great, thanks for making the PRs! I should be able to attend, I'll add to the agenda. |
Discussion in graphql/graphql-js#3592 Co-authored-by: Benjie Gillam <[email protected]>
Right now the spec says that, for example, if the schema does not define a mutation root type, then the schema does not support mutations. But there's no validation rule for it, which means that many parsers (including graphql-js) treat a mutation as valid against such a schema. (Indeed, many end up considering *any* mutation as valid, since they don't know what type to validate the root selection set against.) This commit adds a validation rule to make the schema text explicit. Slated for discussion at the June 2 working group meeting. See also graphql/graphql-js#3592.
Turns out neither we (nor anyone else) were validating this, because the spec didn't say explicitly to validate it. So you could do `mutation { bogus }` even if the schema has no mutation types, or worse, any syntactically valid query if the schema is totally empty. In graphql/graphql-spec#955 I'm adding it to the spec, and in graphql/graphql-js#3592 someone else is adding it to graphql-js. So we should too, once those land! At that point we should also likely reimport the relevant tests, instead of the ones I wrote here, but I figured I'd put the PR up now so folks can review the non-test parts if you like. Fixes vektah#221.
Turns out neither we (nor anyone else) were validating this, because the spec didn't say explicitly to validate it. So you could do `mutation { bogus }` even if the schema has no mutation types, or worse, any syntactically valid query if the schema is totally empty. In graphql/graphql-spec#955 I'm adding it to the spec, and in graphql/graphql-js#3592 someone else is adding it to graphql-js. So we should too, once those land! At that point we should also likely reimport the relevant tests, instead of the ones I wrote here, but I figured I'd put the PR up now so folks can review the non-test parts if you like. Fixes #221.
Discussion in graphql/graphql-js#3592 Co-authored-by: Benjie Gillam <[email protected]>
graphql-js currently considers the following bogus operation valid against the given schema:
In particular, if the schema does not define a root type for one of the GraphQL operation types (here mutation), graphql-js does not against such operations.
In fact, this can even happen with queries:(edit:
validate
does complain here, althoughbuildSchema
does not.)Of course, any server that tries to resolve such a query will crash, or at best return
null
. The spec does say that schemas must have a query root operation type (so the second schema is invalid) and that schemas with no mutation root operation type do not support mutations (so the first operation is invalid).In practice, this has come up for me primarily in testing graphql libraries -- while most real-world schemas support both queries and mutations, and users will typically look before assuming a server supports subscriptions, it's easy in writing test schemas to forget that. But I'm sure there do exist servers which don't have any mutations, too; I think my previous job had some such internal services, although since they were behind an Apollo federated gateway users would never see this.
I may have some time to write a PR for this.
One question is whether it's actually safe to start validating against schemas with no query root operation type; it wouldn't surprise me if there are plenty of cases where users validate an extension schema (which may legitimately have no query root operation type) on its own, and currently it will validate. So it may be better to avoid the potentially-breaking change and validate both cases at the query stage. But I'd love to hear from maintainers as to their thoughts on that point.(edit: irrelevant if we keep the validation invalidate
rather thanbuildSchema
.)BTW, my suspicion is many other GraphQL libraries have this issue; I originally discovered it in vektah/gqlparser#221.
The text was updated successfully, but these errors were encountered: