Skip to main content

Question list filters

Filter by
Sorted by
Tagged with
Score of 0
1 answer
108 views

I have the following schema structure (albeit with entity names changed): type Artist { name: String! fans(first: Int, after: String, last: Int, before: String): FanConnection! } type ...
Score of 1
1 answer
178 views

I have spring boot graphql server side and spring graphql client side applications. The client graphql queries are persisted in graphql-server-side. Now from the graphql-client-side application, how ...
Score of 1
1 answer
131 views

I’m currently evaluating the potential use of Spring Boot GraphQL for future web projects. So far, I’ve had positive experiences with filtering, pagination, and selects/joins. However, I haven’t found ...
Score of 1
1 answer
124 views

I had a perfectly working Spring Boot application with Java 21. The problem is when I now try to add GraphQL to the mix. The GraphQL libraries are in the pom.xml and that includes the Spring GraphQL ...
Score of 1
1 answer
167 views

Is there a way to send multiple queries(netflix dgs generated query and projection DTO's) using the DgsGraphQlClient wrapper class? For example, I have below schema: type Query { books: [Book] ...
Score of 3
2 answers
710 views

I work on a Kotlin Spring API. It is running inside a Docker container from eclipse-temurin:17-jdktrough image on WSL 2 Ubuntu 22.04 LTS (Host is Windows 11 Entreprise 24H2). Project dependencies ...
Score of 0
0 answers
47 views

I'm working on a spring boot graphql project where my mutation takes a complex input type. My BookInput is an interface and I get a concrete implementation at run time like BookInputImpl ( We can ...
Score of 0
1 answer
99 views

I wondering if it is possible to automatically enforce GraphQL directive in Spring GraphQL. My schema is directive @validateUserId on ARGUMENT_DEFINITION type Mutation { addBook(userId: ID! @...
Score of 1
1 answer
112 views

I'm having a mutation defined to update an image object: mutation updateImage($input: UpdateImageInput!) { updateImage(input: $input) { ...Image } } The UpdateImageInput looks like ...
Score of 1
1 answer
606 views

Given a GraphQL schema that contains data like the following type Person { name: String! age: Int! friends(filter: FriendsFilter): [Person!]! hobbies(filter: HobbiesFilter): [Hobby!]! } I can ...
Score of 0
1 answer
72 views

I'm building a GraphQL API using GraphQL Java and Spring Boot. I create my GraphQLSchema programmatically, including a custom GraphQLCodeRegistry that registers my data fetchers. For example, I build ...
Score of 0
2 answers
184 views

I have mutation request like this: public static final String CREATE_DT_MUTATION = """ mutation($dt: CreateDTInput,$file: Upload!) { createDT(dt: $dt,...
Score of 2
1 answer
163 views

I'm trying to build a GraphQL application, and my current schema files are located at the following paths: schema/book/book.graphqls, schema/infra/infra.graphqls Right now In my properties file, I ...
Score of 1
1 answer
107 views

I've come across a very interesting issue, where I have the following service: import io.github.thibaultmeyer.cuid.CUID import kotlinx.coroutines.flow.Flow import org.springframework.web.bind....
Score of 0
1 answer
133 views

I have a working WebGraphQLInterceptor that does some authorization checks based on a combination of authentication and GraphQL query parameters. I want to write unit tests that test my ...

15 30 50 per page
1
2 3 4 5
10