Skip to content
Merged
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
4 changes: 2 additions & 2 deletions guides/queries/multiplex.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ desc: Run multiple queries concurrently
index: 10
---

Some clients may send _several_ queries to the server at once (for example, [Apollo Client's query batching](https://www.apollographql.com/docs/react/api/link/apollo-link-batch-http/)). You can execute them concurrently with {{ "Schema#multiplex" | api_doc }}.
Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Some clients may send _several_ queries to the server at once (for example, [Apollo Client's query batching](https://www.apollographql.com/docs/react/api/link/apollo-link-batch-http/)). You can execute them concurrently with {{ "Schema.multiplex" | api_doc }}.

Multiplex runs have their own context, analyzers and instrumentation.

Expand Down Expand Up @@ -41,7 +41,7 @@ queries = [
]
```

Then, pass them to `Schema#multiplex`:
Then, pass them to `Schema.multiplex`:

```ruby
results = MySchema.multiplex(queries)
Expand Down
Loading