I am new to GraphQL. I know it is very basic question. But tried spending lot of time and i couldn't make it.
My requirement is i need to send GraphQL query by using graphql-java api methods from a java class.
Here is the query:
{
contentItem(itemId: 74152479) {
slug
updatedAt
contributors {
id
isFreeForm
name
}
}
}
First, you have to illustrate more on your problem, from your sample query I can't actually see which part you are having problem, it could be in argument, nested object, or data fetcher
I'm new to GraphQL(java) as well, instead of sharing the direct answer with you, I intended to show you how I resolve the similar problem.
graphql-java actually did a great job in their test cases. You can refer here: src/test/groovy/graphql to get some ideas on how to create and query GraphQL schema.
I found a similar case like yours in here: StarWarsSchema.java#L137
newFieldDefinition()
.name("human")
.type(humanType)
.argument(newArgument()
.name("id")
.description("id of the human")
.type(new GraphQLNonNull(GraphQLString))
.build())
.dataFetcher(StarWarsData.getHumanDataFetcher())
.build())
In this case, only one argument is defined, which is id. new GraphQLNonNull(GraphQLString)
tells us this is is a mandatory string argument.
For fields, it is defining in humanType
, you can refer to StarWarsSchema.java#L61.
Nested fields is just another type with some fields, eg, .type(nestedHumanType)
After all, you might to process the argument id and return some data. You can refer to the example here: StarWarsData.groovy#L89
To make my code looks cleaner, normally I will create a separate class for DataFetcher, eg:
public class HumanDataFetcher implements DataFetcher {
@Override
public Object get(DataFetchingEnvironment environment) {
String id = (String)environment.get("id");
// Your code here
}
}
Hope this helps.
Firstly, make sure that you can get result by curling like so. if this works (make sure to change the verb to GET depending on what verb server expects) then all you need to do is send the query part in http request body with content-type as application/json.
curl \
-X POST \
-H "Content-Type: application/json" \
--data '{ "query": "{ contentItem(itemId: \"74152479\") { slug updatedAt contributors { id isFreeForm name } } }" }' \
http://www.yoursite.com/your/graphql/api
once successful you can build the query and send the request using Java http clients. I have successfully done so using Jersey client. only challenge is building the query if you want to have some generic query builder. but there are query builder on github like this ONE, and you can tweak it to suit your needs.
All in all, following is what you need to send in http body. I put his in one liner,which is exactly how the request body looks like. you have to remove any extra format like new line etc.
{ "query": "{ contentItem(itemId: \"74152479\") { slug updatedAt contributors { id isFreeForm name } } }" }
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With