From ff7792390a51a59482926cf61c9da8324fd63e16 Mon Sep 17 00:00:00 2001 From: Gordey Levchenko Date: Tue, 18 Feb 2020 21:04:07 +0600 Subject: [PATCH] Add missin create permission for faunadb example --- examples/with-graphql-faunadb/scripts/setup.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/with-graphql-faunadb/scripts/setup.js b/examples/with-graphql-faunadb/scripts/setup.js index a313a6e0b631ad0..8b1f65045e19aa2 100644 --- a/examples/with-graphql-faunadb/scripts/setup.js +++ b/examples/with-graphql-faunadb/scripts/setup.js @@ -52,7 +52,7 @@ readline.question(`Please provide the FaunaDB admin key\n`, adminKey => { privileges: [ { resource: q.Collection('GuestbookEntry'), - actions: { read: true, write: true }, + actions: { read: true, write: true, create: true }, }, { resource: q.Index('entries'),