From 482c7fcc65e98ba5f96ea5de3546ea95e7b1cdc7 Mon Sep 17 00:00:00 2001 From: Jonathan Kim Date: Thu, 26 Dec 2019 20:02:57 +0000 Subject: [PATCH] Add file uploading docs (#1084) --- docs/execution/fileuploading.rst | 8 ++++++++ docs/execution/index.rst | 1 + 2 files changed, 9 insertions(+) create mode 100644 docs/execution/fileuploading.rst diff --git a/docs/execution/fileuploading.rst b/docs/execution/fileuploading.rst new file mode 100644 index 00000000..d92174c0 --- /dev/null +++ b/docs/execution/fileuploading.rst @@ -0,0 +1,8 @@ +File uploading +============== + +File uploading is not part of the official GraphQL spec yet and is not natively +implemented in Graphene. + +If your server needs to support file uploading then you can use the libary: `graphene-file-upload `_ which enhances Graphene to add file +uploads and conforms to the unoffical GraphQL `multipart request spec `_. diff --git a/docs/execution/index.rst b/docs/execution/index.rst index 00d98ffb..93a02845 100644 --- a/docs/execution/index.rst +++ b/docs/execution/index.rst @@ -8,3 +8,4 @@ Execution execute middleware dataloader + fileuploading