Based on https://github.com/graphql-boilerplates/typescript-graphql-server/tree/master/advanced
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
You need to have the Prisma CLI installed to bootstrap your Prisma database using prisma deploy
:
npm i -g prisma
# Start server (runs on http://localhost:4000) and open GraphQL Playground
yarn dev
yarn start
starts GraphQL server onhttp://localhost:4000
yarn dev
starts GraphQL server onhttp://localhost:4000
and opens GraphQL Playgroundyarn playground
opens the GraphQL Playground for theprojects
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 withyarn start
, you'll only be able to access the API of the application schema.