graphql-java Questions

2

I'm newbie to GraphQL, and was wondering if someone could help me figure out what is the equivalent of below JSON into GraphQL schema: [ { "id": "1", "name": "A", "fldDef": [ { "name": "f1"...
Harmony asked 6/12, 2017 at 14:51

1

Solved

Currently, I see no existing support for pagination in the graphql-java library. It does have some basic relay support, where-in, we can create a connection, Facebook's recommended way of implement...
Erupt asked 15/6, 2017 at 18:57

2

I have difficulty in implementing GraphQL in a java project as a part of updating it. I'm trying to connect an entity (which uses the Hibernate ORM to map to different databases) to a GraphQL...
Vlaminck asked 19/10, 2016 at 10:7

2

Is it possible to dynamically create a GraphQL schema ? We store the data in mongoDB and there is a possibility of new fields getting added. We do not want any code change to happen for this newly...
Ricker asked 7/2, 2017 at 2:10

1

I am looking to pass a field value to a resolved field using another object type. Another way to put it if I have `Customer > User > Profile' - how can I pass the CustomerID field value that would...
Adolfo asked 24/5, 2017 at 13:26

3

Solved

I'm using Spring & graphql-java (graphql-java-annotation) in my project. For retrieving data part, i'm using a DataFetcher to get data from a service (from database). The weird thing is that: ...
Cognizable asked 3/1, 2017 at 9:15

2

Solved

I want to write a piece of code, which will handle GraphQL queries like these: query { group(id: "com.graphql-java") name(name: "graphql-java") version(id: "2.3.0") } I've created a data fe...
Bloodroot asked 31/12, 2016 at 10:45

2

Solved

i've hit a brick wall while trying to construct types that depend on each other, here is the code: import graphql.schema.GraphQLObjectType; import static graphql.schema.GraphQLObjectType.newObject...
Soutine asked 7/7, 2016 at 8:15

© 2022 - 2024 — McMap. All rights reserved.