Is there a way to build back the string query form the GraphQL syntax tree object ?
If not, it will be useful to display the GraphQL syntax tree object in a readable human way...
I answer to my own question:
const query = gql`${thequery}`
console.log(query.loc.source.body)
Most helpful comment
I answer to my own question: