Open jamestsayre opened 1 year ago
Hi @firaskafri @jamestsayre,
The graphql mutation-specification outlines the following:
errors
be any field errors produced while executing the selection setThe expected behavior will align with the specification set. I checked out mutation
test cases and DjangorFormMutation
aligns with the specification.
class DjangoFormMutation(BaseDjangoFormMutation):
class Meta:
abstract = True
errors = graphene.List(ErrorType)
...
For example, this specific test case:
result = schema.execute(
""" mutation MyMutation {
myMutation(input: { text: "INVALID_INPUT" }) {
errors {
field
messages
}
text
}
}
"""
)
assert result.errors is None
assert result.data["myMutation"]["errors"] == [
{"field": "text", "messages": ["Invalid input"]}
]
In case of base field graphene.Mutation
, although the result.errors
attribute contains the errors, they are not surfaced because the graphene.Mutation
does not have a errors
field and a resolver.
I would like to take up this issue. Could you suggest a direction I should pursue? Should we rely on the middleware to align with the specification?
Hi @firaskafri @jamestsayre,
The graphql mutation-specification outlines the following:
* Let `errors` be any field errors produced while executing the selection set
The expected behavior will align with the specification set. I checked out
mutation
test cases andDjangorFormMutation
aligns with the specification.class DjangoFormMutation(BaseDjangoFormMutation): class Meta: abstract = True errors = graphene.List(ErrorType) ... For example, this specific test case:
result = schema.execute( """ mutation MyMutation { myMutation(input: { text: "INVALID_INPUT" }) { errors { field messages } text } } """ ) assert result.errors is None assert result.data["myMutation"]["errors"] == [ {"field": "text", "messages": ["Invalid input"]} ]
In case of base field
graphene.Mutation
, although theresult.errors
attribute contains the errors, they are not surfaced because thegraphene.Mutation
does not have aerrors
field and a resolver.I would like to take up this issue. Could you suggest a direction I should pursue? Should we rely on the middleware to align with the specification?
This is great! Are you going to start a PR?
For the base issue here the errors are getting consumed by an issue with the Debug toolbar. @jamestsayre could you try with the library version pinned to the current main?
The underlying issue lies with the graphene
library as it contains the base class graphene.Mutation
which should surface errors as implemented in DjangoFormMutation
.
the result of e.g.
GraphQLView().execute_graphql_request(*args, **kwargs)
is something likeExecutionResult(data={'mutationQuery': {'status': None}}, errors=None)
and the json response is:
From working on apps using older versions of graphene-django, I recall that exceptions raised anywhere within the schema definition code would end up propagating to the JSON responses. In any case, the desired behavior here is to have the mutation response include information on any exceptions that were raised.
One suggestion I found indicated that perhaps DjangoDebugMiddleware needed to be included in order to achieve the desired outcome. My understanding is that it is included using something like the following in the Django settings file:
Even with the above, the behavior is the same (that is, with and without the 'MIDDLEWARE' entry). With that entry included, I see:
So it seems that the middleware is indeed registered, but doesn't alter the described behavior. What DOES work is wrapping the middleware argument in an extra list, via something like:
and then making sure in urls.py that the above class is what's handling the queries.
Note again that the difference is just ensuring that GraphQLView().middleware ends up being a nested list, e.g. [['graphene_django.debug.middleware.DjangoDebugMiddleware']].
It's not clear to me why wrapping the middleware location in an extra list is yielding the desired behavior.
What is the expected behavior? The expected behavior is for the response JSON to be something like:
What is the motivation / use case for changing the behavior?
If indeed it's necessary to invoke DjangoDebugMiddleware to avoid vanishing exceptions, the standard way of installing middleware (e.g. in the Django settings file in the GRAPHENE dict) -- which requires that the class path be in a list like the example above -- then requiring a hack to wrap the class path in a second list is impossible to achieve.
Please tell us about your environment:
Other information (e.g. detailed explanation, stacktraces, related issues, suggestions how to fix, links for us to have context, eg. stackoverflow)