Skip to content

Commit 78b466e

Browse files
authored
docs: update router terms (#5955)
* Update Apollo Router * Specify file upload support
1 parent f1d607c commit 78b466e

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

docs/source/advanced/persisted-queries.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,28 +19,28 @@ Both persisted queries and APQs require you to configure how your client makes r
1919

2020
### 0. Requirements
2121

22-
You can use APQs with the following versions of Apollo Kotlin, Apollo Server, and Apollo Router:
22+
You can use APQs with the following versions of Apollo Kotlin, Apollo Server, and Apollo Router Core:
2323
- Apollo Kotlin (v1.0.0+)
2424
- [Apollo Server](/apollo-server/) (v1.0.0+)
25-
- [Apollo Router](/router) (v0.1.0+)
25+
- [Apollo Router Core](/router) (v0.1.0+)
2626

2727

2828
<Note>
2929

30-
You can use _either_ Apollo Server _or_ Apollo Router for APQs. They don't need to be used together.
30+
You can use _either_ Apollo Server _or_ Apollo Router Core for APQs. They don't need to be used together.
3131

3232
</Note>
3333

3434
Using persisted queries for safelisting has the following requirements:
3535
- Apollo Kotlin (v3.8.2+)
36-
- [Apollo Router](/router) (v1.25.0+)
36+
- [GraphOS Router](/router) (v1.25.0+)
3737
- [GraphOS Enterprise plan](/graphos/enterprise/)
3838

3939
### 1. Generate operation manifest
4040

4141
> This step is only required for implementing safelisting with persisted queries. It is _not_ required for APQs.
4242
43-
The operation manifest acts as a safelist of trusted operations the [Apollo Router](/router/) can check incoming requests against.
43+
The operation manifest acts as a safelist of trusted operations the [GraphOS Router](/router/) can check incoming requests against.
4444
To generate the operation manifest, set `operationManifestFormat` to `"persistedQueryManifest"` in your Gradle script:
4545

4646
```kotlin

docs/source/advanced/upload.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ title: Uploading files
55
Apollo Kotlin supports file uploads via the [GraphQL multipart request specification](https://github.com/jaydenseric/graphql-multipart-request-spec) with a few caveats:
66

77
- Uploading files with GraphQL is most often suitable for proof-of-concept applications. In production, using purpose-built tools for file uploads may be preferable. Refer to this [blog post](https://www.apollographql.com/blog/backend/file-uploads/file-upload-best-practices/) for possible approaches and their advantages and disadvantages.
8-
- The [Apollo Router](/router/) doesn't support `multipart/form-data` uploads.
8+
- - Neither the Apollo Router Core nor GraphOS Router support `multipart/form-data` uploads.
99

1010
## Uploading files with Apollo Kotlin
1111

0 commit comments

Comments
 (0)