java-dataloader
java-dataloader copied to clipboard
A Java 8 port of Facebook DataLoader
We updated dataloader library to 3.3.0 after updating that we observed we are getting can not resolve DataLoader for parameter 'loader' in method name. We observed in updated version dataloader...
**Describe the bug** Hi Folks, The https://github.com/graphql-java/java-dataloader/commit/3060a30e60871f50eb685ada5337aa7a9e7e5112 commit added JSpecify's `@NonNull` annotation on the `load` method `key` argument but missed adding it on some methods that call the annotated ones,...
Hi folks. I wanted to bring to your attention the recent changes in version [4.0.0](https://github.com/graphql-java/java-dataloader/commit/3060a30e60871f50eb685ada5337aa7a9e7e5112) where `@NonNull` has been added to the public `load` API. Unlike Java, Kotlin enforces strict...
# Summary * Creating a new DataLoader with `newMappedDataLoaderWithTry` and `batchingEnabled` as `false` and `cachingEnabled` as `true`. * This will cause the `value` to which is already a `Try` instance...
Bumps [com.uber.nullaway:nullaway](https://github.com/uber/NullAway) from 0.12.10 to 0.12.14. Release notes Sourced from com.uber.nullaway:nullaway's releases. NullAway 0.12.14 This release fixes a bug where the new RequireExplicitNullMarking check was not fully disabled by default....
Bumps [com.google.errorprone:error_prone_core](https://github.com/google/error-prone) from 2.43.0 to 2.45.0. Release notes Sourced from com.google.errorprone:error_prone_core's releases. Error Prone 2.45.0 Changes: Improved compatibility with latest JDK 26 EA builds. New checks: AssertSameIncompatible: Detect calls to...
In a similar vein to https://github.com/graphql-java/graphql-java/pull/3565 which enabled "strict mode" for type wiring (preventing multiple `DataFetcher`s being registered to the same field on a GraphQL type), we add "strict mode"...
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. Release notes Sourced from actions/checkout's releases. v6.0.0 What's Changed Update README to include Node.js 24 support details and requirements by @salmanmkc in actions/checkout#2248 Persist...
This is port of the concept of a dispatch strategy from GraphQL Java to DataLoader itself. It allows DataLoader to be used with an automatic dispatch strategy. One DispatchStrategy which...