/prisma-yoga-jwt-rbac

based on graphql-boilerplates/typescript-graphql-server advanced example

Primary LanguageTypeScriptMIT LicenseMIT

GraphQL Prisma Typescript Rbac


Basic role/scope based access controll for graphql schema

Based on https://github.com/graphql-boilerplates/typescript-graphql-server/tree/master/advanced

Why

This repo is an experiment for testing purposes and not actively mantained, feel free to look around to see my solution to scope based auth using JWT and a custom graphql directive

Requirements

You need to have the Prisma CLI installed to bootstrap your Prisma database using prisma deploy:

npm i -g prisma

Getting started

# Start server (runs on http://localhost:4000) and open GraphQL Playground
yarn dev

Commands

  • yarn start starts GraphQL server on http://localhost:4000
  • yarn dev starts GraphQL server on http://localhost:4000 and opens GraphQL Playground
  • yarn playground opens the GraphQL Playground for the projects from .graphqlconfig.yml
  • yarn prisma <subcommand> gives access to local version of Prisma CLI (e.g. yarn prisma deploy)

Note: We recommend that you're using yarn dev during development as it will give you access to the GraphQL API or your server (defined by the application schema) as well as to the Prisma API directly (defined by the Prisma database schema). If you're starting the server with yarn start, you'll only be able to access the API of the application schema.