From 786f6cb41fc833d162d715ed36a3ea6ec91e3da8 Mon Sep 17 00:00:00 2001 From: Michael Merrill Date: Tue, 4 Apr 2017 10:09:02 -0600 Subject: [PATCH] Update mutation to expect arrays --- api/schema.graphql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/schema.graphql b/api/schema.graphql index b58727d..deab78d 100644 --- a/api/schema.graphql +++ b/api/schema.graphql @@ -18,5 +18,5 @@ type Query { type Mutation { singleUpload (file: Upload!): File! - multiUpload (files: [Upload!]): [File!] + multiUpload (files: [Upload!]!): [File!]! }