diff --git a/docs/guides/n+1.md b/docs/guides/n+1.md index 01fb0ee92e..7828ddbdb0 100644 --- a/docs/guides/n+1.md +++ b/docs/guides/n+1.md @@ -111,7 +111,12 @@ It's an effective technique to group similar requests into one, greatly reducing To tap into this feature: 1. Edit the `@upstream` to enable batching: ```graphql showLineNumbers -@upstream(baseURL: "http://jsonplaceholder.typicode.com", batch: {delay: 1}) { +@upstream( + baseURL: "http://jsonplaceholder.typicode.com" + # highlight-start + batch: { delay: 1 } + # highlight-end +) { query: Query } ```