├── .gitignore ├── README.md ├── package.json ├── scripts └── step.js └── src ├── data.js ├── index.js ├── permissions.js ├── resolvers.js └── typeDefs.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiwise/basic-apollo-auth-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiwise/basic-apollo-auth-demo/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiwise/basic-apollo-auth-demo/HEAD/package.json -------------------------------------------------------------------------------- /scripts/step.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiwise/basic-apollo-auth-demo/HEAD/scripts/step.js -------------------------------------------------------------------------------- /src/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiwise/basic-apollo-auth-demo/HEAD/src/data.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiwise/basic-apollo-auth-demo/HEAD/src/index.js -------------------------------------------------------------------------------- /src/permissions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiwise/basic-apollo-auth-demo/HEAD/src/permissions.js -------------------------------------------------------------------------------- /src/resolvers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiwise/basic-apollo-auth-demo/HEAD/src/resolvers.js -------------------------------------------------------------------------------- /src/typeDefs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiwise/basic-apollo-auth-demo/HEAD/src/typeDefs.js --------------------------------------------------------------------------------