Strawberry shake client - get the final query text sent to the server #6322
Unanswered
vishalbadehotmail
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
We have a graphql server with one operation/query.
query searchOp($input: RequestDto! ) {
search(
input: $input
) { field1
field2 }
}
I created a Strawberry shake client 13v and am able to execute the query by passing a RequestDto object on the fly.
How can I get the final query text please including the values I passed into the query? This is at the client side NOT server side.
Beta Was this translation helpful? Give feedback.
All reactions