Skip to content

Commit 006c1a9

Browse files
authored
Reordering sentences
1 parent eba391c commit 006c1a9

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

docs/file_uploads.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,13 @@ class MyController
4343
}
4444
```
4545

46-
Of course, you need to use a GraphQL client that is compatible with multipart requests. The GraphQL client must send the file using the Upload type.
46+
Of course, you need to use a GraphQL client that is compatible with multipart requests. See [jaydenseric/graphql-multipart-request-spec](https://github.com/jaydenseric/graphql-multipart-request-spec#client) for a list of compatible clients.
47+
48+
The GraphQL client must send the file using the Upload type.
4749

4850
```
49-
mutation upload($file: Upload!) {
50-
upload(file: $file)
51-
}
51+
mutation upload($file: Upload!) {
52+
upload(file: $file)
53+
}
5254
```
5355

54-
See [jaydenseric/graphql-multipart-request-spec](https://github.com/jaydenseric/graphql-multipart-request-spec#client) for a list of compatible clients.

0 commit comments

Comments
 (0)