You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
My project has a parameterized test where I pass an input graphql query file location and a response json file location as arguments, and use the DefaultGraphQlTester to validate test queries
This works great, except for the fact that my application has a couple of composite mutations where I create a parent and child object in the same request, and for those I'd really just like access to the entire json response document to check manually instead of having to give a path relative to the top level "data" path.
which I feel is less intuitive than just allowing us access to the full json body when we need it. Thanks for your time and consideration, appreciate all the work you guys do.
The text was updated successfully, but these errors were encountered:
My project has a parameterized test where I pass an input graphql query file location and a response json file location as arguments, and use the DefaultGraphQlTester to validate test queries
This works great, except for the fact that my application has a couple of composite mutations where I create a parent and child object in the same request, and for those I'd really just like access to the entire json response document to check manually instead of having to give a path relative to the top level "data" path.
What we curerently have
What I would like
Not picky about the syntax, I would just rather be able to compare a response like this:
to a matching json document. Currently, I can supply '*' to the path argument in the first query, but that generates a list of nodes to match against
which I feel is less intuitive than just allowing us access to the full json body when we need it. Thanks for your time and consideration, appreciate all the work you guys do.
The text was updated successfully, but these errors were encountered: