├── .babelrc ├── .gitignore ├── README.md ├── api ├── index.js ├── queries │ ├── cakes.js │ └── index.js └── types │ ├── CakeType.js │ └── index.js ├── docs └── demo.gif ├── index.js ├── middlewares ├── auth.js └── graphql.js ├── package.json └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessedvrs/graphql-passport-example/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessedvrs/graphql-passport-example/HEAD/README.md -------------------------------------------------------------------------------- /api/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessedvrs/graphql-passport-example/HEAD/api/index.js -------------------------------------------------------------------------------- /api/queries/cakes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessedvrs/graphql-passport-example/HEAD/api/queries/cakes.js -------------------------------------------------------------------------------- /api/queries/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessedvrs/graphql-passport-example/HEAD/api/queries/index.js -------------------------------------------------------------------------------- /api/types/CakeType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessedvrs/graphql-passport-example/HEAD/api/types/CakeType.js -------------------------------------------------------------------------------- /api/types/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessedvrs/graphql-passport-example/HEAD/api/types/index.js -------------------------------------------------------------------------------- /docs/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessedvrs/graphql-passport-example/HEAD/docs/demo.gif -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessedvrs/graphql-passport-example/HEAD/index.js -------------------------------------------------------------------------------- /middlewares/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessedvrs/graphql-passport-example/HEAD/middlewares/auth.js -------------------------------------------------------------------------------- /middlewares/graphql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessedvrs/graphql-passport-example/HEAD/middlewares/graphql.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessedvrs/graphql-passport-example/HEAD/package.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessedvrs/graphql-passport-example/HEAD/yarn.lock --------------------------------------------------------------------------------