Skip to main content
Filter by
Sorted by
Tagged with
1 vote
1 answer
69 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 ...
Giridhar's user avatar
1 vote
1 answer
110 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 ...
Meini's user avatar
  • 47
0 votes
0 answers
82 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 ...
tjholmes66's user avatar
  • 2,040
1 vote
1 answer
109 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] ...
Giridhar's user avatar
3 votes
2 answers
630 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 ...
AlexMrsh's user avatar
0 votes
0 answers
43 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 ...
imsilversurfer's user avatar
0 votes
1 answer
71 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! @...
MrkK's user avatar
  • 923
1 vote
1 answer
81 views

I'm having a mutation defined to update an image object: mutation updateImage($input: UpdateImageInput!) { updateImage(input: $input) { ...Image } } The UpdateImageInput looks like ...
Peter Lustig's user avatar
  • 1,723
1 vote
1 answer
405 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 ...
Travis Stocker's user avatar
0 votes
1 answer
48 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 ...
imsilversurfer's user avatar
0 votes
2 answers
141 views

I have mutation request like this: public static final String CREATE_DT_MUTATION = """ mutation($dt: CreateDTInput,$file: Upload!) { createDT(dt: $dt,...
user3300534's user avatar
2 votes
1 answer
135 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 ...
imsilversurfer's user avatar
1 vote
1 answer
84 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....
TOTHTOMI's user avatar
0 votes
1 answer
107 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 ...
Max's user avatar
  • 795
0 votes
0 answers
252 views

Assume I have the graphql defined with type Query { book(id: ID!): Book books(first: Int, last: Int, before: String, after: String): BookConnection } type Book { id: ID! name: String! } How ...
operatiay's user avatar

15 30 50 per page
1
2 3 4 5
10