diff --git a/docs/advanced/file-uploads.md b/docs/advanced/file-uploads.md index 6f700af4..9cf478e6 100644 --- a/docs/advanced/file-uploads.md +++ b/docs/advanced/file-uploads.md @@ -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 diff --git a/docs/advanced/java-client.md b/docs/advanced/java-client.md index c5d92391..67da449f 100644 --- a/docs/advanced/java-client.md +++ b/docs/advanced/java-client.md @@ -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). diff --git a/docs/data-loaders.md b/docs/data-loaders.md index 493306fd..5abd9d48 100644 --- a/docs/data-loaders.md +++ b/docs/data-loaders.md @@ -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. diff --git a/docs/federation.md b/docs/federation.md index 8aea0ae9..989de663 100644 --- a/docs/federation.md +++ b/docs/federation.md @@ -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