├── .babelrc ├── .gitignore ├── README.md ├── apolloClient.js ├── components └── LoginForm.js ├── lib ├── apollo.js ├── mutations │ └── loginUser.js └── queries │ └── getAllFiles.js ├── next.config.js ├── now.json ├── package.json ├── pages └── index.js ├── schema.graphql └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev4/with-faunadb-abac-auth/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev4/with-faunadb-abac-auth/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev4/with-faunadb-abac-auth/HEAD/README.md -------------------------------------------------------------------------------- /apolloClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev4/with-faunadb-abac-auth/HEAD/apolloClient.js -------------------------------------------------------------------------------- /components/LoginForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev4/with-faunadb-abac-auth/HEAD/components/LoginForm.js -------------------------------------------------------------------------------- /lib/apollo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev4/with-faunadb-abac-auth/HEAD/lib/apollo.js -------------------------------------------------------------------------------- /lib/mutations/loginUser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev4/with-faunadb-abac-auth/HEAD/lib/mutations/loginUser.js -------------------------------------------------------------------------------- /lib/queries/getAllFiles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev4/with-faunadb-abac-auth/HEAD/lib/queries/getAllFiles.js -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev4/with-faunadb-abac-auth/HEAD/next.config.js -------------------------------------------------------------------------------- /now.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev4/with-faunadb-abac-auth/HEAD/now.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev4/with-faunadb-abac-auth/HEAD/package.json -------------------------------------------------------------------------------- /pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev4/with-faunadb-abac-auth/HEAD/pages/index.js -------------------------------------------------------------------------------- /schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev4/with-faunadb-abac-auth/HEAD/schema.graphql -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev4/with-faunadb-abac-auth/HEAD/yarn.lock --------------------------------------------------------------------------------