Hi @chemdrew, @realityforge I have been using this tool for Our Application,We have a requirment to send mulitple queries in Single Reques { xxxOverview (id:"12345") { allocation{ shares } assets{ ticker } id } universeMeta { etfs{ isin } asset{ ticker } } } On debugging found that the request has param for only one class public GraphQLRequestEntity.RequestBuilder request(Class clazz) { this.clazz = clazz; return this; } Is it possible to have an OverLoaded Method ,taking multiple params like var args or any colletion public GraphQLRequestEntity.RequestBuilder request(Class ... clazz)
Hi @chemdrew, @realityforge
I have been using this tool for Our Application,We have a requirment to send mulitple queries in Single Reques
}
On debugging found that the request has param for only one class
public GraphQLRequestEntity.RequestBuilder request(Class clazz) {
this.clazz = clazz;
return this;
}
Is it possible to have an OverLoaded Method ,taking multiple params like var args or any colletion
public GraphQLRequestEntity.RequestBuilder request(Class ... clazz)