Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix build warnings #194

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/advanced/file-uploads.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ dependencies {
}
```

If you are using the [regular DGS starter](../index.md#adding-the-dgs-framework-dependency), you don't need to do add that dependency.
If you are using the [regular DGS starter](../index.md#adding-the-dgs-framework-dependency-with-spring-for-graphql), you don't need to do add that dependency.

## Multipart File Upload

Expand Down
2 changes: 1 addition & 1 deletion docs/advanced/java-client.md
Original file line number Diff line number Diff line change
Expand Up @@ -412,4 +412,4 @@ Errors later on in the process will be errors in the stream.

Don't forget to `subscribe()` to the stream, otherwise the connection doesn't get started!

An example of using the client to write subscription integration tests is available [here](../subscriptions/#integration-testing-subscriptions).
An example of using the client to write subscription integration tests is available [here](subscriptions.md#integration-testing-subscriptions).
2 changes: 1 addition & 1 deletion docs/data-loaders.md
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ The `v8.1.0` release introduces a new feature to [enable ticker mode](https://gi
This allows you to schedule the dispatch checks instead of manually calling dispatch in your data loaders.
By default, the checks will occur every 10ms but can be configured via `dgs.graphql.dataloader.scheduleDuration`.
To enable ticker mode in the DGS framework, you can set `dgs.graphql.dataloader.ticker-mode-enabled` to true.
In addition, you can also specify [dispatch predicates](## Scheduled Data Loaders with Dispatch Predicates) per dataloader vi a`@DgsDispatchPredicate`to better control the batching.
In addition, you can also specify [dispatch predicates](#scheduled-data-loaders-with-dispatch-predicates) per dataloader vi a`@DgsDispatchPredicate`to better control the batching.

With ticker mode enabled, you can eliminate calls to manually dispatch and rely on the scheduler to periodically check and dispatch any batches as needed.
This should result in better batching behavior overall.
Expand Down
2 changes: 1 addition & 1 deletion docs/federation.md
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ class ReviewssDatafetcherTest {
}
```

For more details on the API and how to set it up for tests, please refer to our documentation [here](./advanced/federated-testing.md#Using-the-Entities-Query-Builder-API).
For more details on the API and how to set it up for tests, please refer to our documentation [here](./advanced/federated-testing.md#using-the-entities-query-builder-api).

## Customizing the Default Federation Resolver

Expand Down