I am trying to work on java client that works with GraphQL Server where I want to send a query over http.
I looked at https://github.com/graphql-java/graphql-java but unable to find the solution I am looking for.
I am trying to find something similar to https://github.com/justinmakaila/Swift-GraphQL but for Java.
As per the swift example, it generates a queryString that client does a POST to graphql endpoint with to obtain the results. What is the equivalent in Java?
I basically want to generate a JSON query string from graphql client api listed above.