diff --git a/examples/with-graphql-faunadb/README.md b/examples/with-graphql-faunadb/README.md index f850a23ef176be4..81e6ae9941ce2a1 100644 --- a/examples/with-graphql-faunadb/README.md +++ b/examples/with-graphql-faunadb/README.md @@ -22,9 +22,9 @@ The database can then be set up with the delivered setup by running: ``` yarn setup ``` -This script will ask for the server token and will then automatically: +This script will ask for the server token. Once you provide it with a valid token, this is what the script automatically does for you: -- **Import the GraphQL schema**, by importing a GraphQL schema in FaunaDB, FaunaDB automatically sets up collections and indexes to support your queries. +- **Import the GraphQL schema**, by importing a GraphQL schema in FaunaDB, FaunaDB automatically sets up collections and indexes to support your queries. This is now done for you with this script but can also be done from the [dashboard.fauna.com](https://dashboard.fauna.com/) UI by going to the GraphQL tab - **Create a role suitable for the Client**, FaunaDB has a security system that allows you to define which resources can be accessed for a specific token. That's how we limit our clients powers, feel free to look at the scripts/setup.js script to see how we make roles and tokens. - **Create a token for that role** which is printed, this is the token to be used in the frontend.