dgs-examples-webflux icon indicating copy to clipboard operation
dgs-examples-webflux copied to clipboard

Results 6 dgs-examples-webflux issues
Sort by recently updated
recently updated
newest added

How to add pagination with dgs + webflux? If I add relay pagination like on this page https://netflix.github.io/dgs/advanced/relay-pagination/ , it's blocking way, and not working with webflux

Bumps [actions/checkout](https://github.com/actions/checkout) from 3.0.2 to 4.0.0. Release notes Sourced from actions/checkout's releases. v4.0.0 What's Changed Update default runtime to node20 by @​takost in actions/checkout#1436 Support fetching without the --progress option...

dependencies
github_actions

Bumps [org.springframework.boot](https://github.com/spring-projects/spring-boot) from 2.6.1 to 3.1.3. Release notes Sourced from org.springframework.boot's releases. v3.1.3 :lady_beetle: Bug Fixes Logging config URLs with query parameters are not detected as XML #37062 Changed environment...

dependencies
java

Bumps com.netflix.dgs.codegen from 5.1.17 to 6.0.2. [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.netflix.dgs.codegen&package-manager=gradle&previous-version=5.1.17&new-version=6.0.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a...

dependencies
java

I created a simple test to test the Subscription feature, it is similar to this [ReviewSubscriptionTest](https://github.com/Netflix/dgs-examples-webflux/blob/main/src/test/java/com/example/demo/ReviewSubscriptionTest.java), but I used [`DgsReactiveQueryExecutor ` in my test](https://github.com/hantsy/spring-graphql-sample/blob/master/dgs-webflux/src/test/java/com/example/demo/SubscriptionTests.java), the `ExecutionResult` always returns null, and...

I tried to use Flux and Mono from projectreactor as the return type of methods annotated by @DgsQuery, but it doesn't work. The query always returns null. I already compared...