├── .github ├── renovate.json └── semantic.yml ├── .gitignore ├── CONTRIBUTING.md ├── DEVELOPMENT.md ├── README.md ├── hello-world ├── .gitignore ├── api.graphql ├── api │ ├── app.ts │ └── graphql │ │ └── user.ts ├── package-lock.json ├── package.json ├── tests │ └── integration.test.ts └── tsconfig.json ├── plugin-prisma ├── .gitignore ├── README.md ├── api.graphql ├── api │ ├── app.ts │ └── graphql │ │ ├── Blog.ts │ │ ├── Mutation.ts │ │ ├── Post.ts │ │ ├── Query.ts │ │ ├── Tag.ts │ │ └── User.ts ├── package-lock.json ├── package.json ├── prisma │ ├── migrations │ │ ├── 20200617124821-init │ │ │ ├── README.md │ │ │ ├── schema.prisma │ │ │ └── steps.json │ │ └── migrate.lock │ └── schema.prisma ├── tests │ ├── environments │ │ └── prisma.js │ └── integration.test.ts └── tsconfig.json ├── plugins-prisma-and-jwt-auth-and-shield ├── .gitignore ├── api │ ├── app.ts │ ├── graphql │ │ ├── Mutation.ts │ │ ├── Query.ts │ │ └── models │ │ │ ├── AuthPayload.ts │ │ │ ├── Post.ts │ │ │ └── User.ts │ ├── permissions │ │ └── index.ts │ └── utils │ │ └── index.ts ├── package-lock.json ├── package.json ├── prisma │ ├── dev.db │ ├── schema.prisma │ └── seed.ts └── tsconfig.json ├── plugins-prisma-and-jwt-auth ├── .gitignore ├── api │ ├── app.ts │ ├── graphql │ │ ├── Mutation.ts │ │ ├── Query.ts │ │ └── models │ │ │ ├── AuthPayload.ts │ │ │ ├── Post.ts │ │ │ └── User.ts │ ├── permissions │ │ └── index.ts │ └── utils │ │ └── index.ts ├── package-lock.json ├── package.json ├── prisma │ ├── dev.db │ ├── schema.prisma │ └── seed.ts └── tsconfig.json ├── renovate.json ├── with-nextjs-and-vercel-and-plugins-prisma ├── .envrc ├── .gitignore ├── .prettierignore ├── README.md ├── components │ ├── layout.module.css │ └── layout.tsx ├── graphql │ └── schema.ts ├── next-env.d.ts ├── package-lock.json ├── package.json ├── pages │ ├── _app.tsx │ ├── api │ │ └── graphql.ts │ └── index.tsx ├── prisma │ ├── migrations │ │ ├── 20200507132005-init │ │ │ ├── README.md │ │ │ ├── schema.prisma │ │ │ └── steps.json │ │ ├── 20200507152121-init │ │ │ ├── README.md │ │ │ ├── schema.prisma │ │ │ └── steps.json │ │ └── migrate.lock │ └── schema.prisma ├── styles │ ├── global.css │ └── utils.module.css └── tsconfig.json ├── with-nextjs ├── .gitignore ├── .prettierignore ├── README.md ├── components │ ├── layout.module.css │ └── layout.tsx ├── graphql │ └── schema.ts ├── next-env.d.ts ├── package-lock.json ├── package.json ├── pages │ ├── _app.tsx │ ├── api │ │ └── graphql.ts │ └── index.tsx ├── styles │ ├── global.css │ └── utils.module.css └── tsconfig.json └── with-prisma ├── .gitignore ├── .vscode └── launch.json ├── README.md ├── api.graphql ├── api.ts ├── package-lock.json ├── package.json ├── prisma └── schema.prisma └── tsconfig.json /.github/renovate.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["github>prisma-labs/renovate-config"] 3 | } 4 | -------------------------------------------------------------------------------- /.github/semantic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/.github/semantic.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DEVELOPMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/DEVELOPMENT.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/README.md -------------------------------------------------------------------------------- /hello-world/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/hello-world/.gitignore -------------------------------------------------------------------------------- /hello-world/api.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/hello-world/api.graphql -------------------------------------------------------------------------------- /hello-world/api/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/hello-world/api/app.ts -------------------------------------------------------------------------------- /hello-world/api/graphql/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/hello-world/api/graphql/user.ts -------------------------------------------------------------------------------- /hello-world/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/hello-world/package-lock.json -------------------------------------------------------------------------------- /hello-world/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/hello-world/package.json -------------------------------------------------------------------------------- /hello-world/tests/integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/hello-world/tests/integration.test.ts -------------------------------------------------------------------------------- /hello-world/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/hello-world/tsconfig.json -------------------------------------------------------------------------------- /plugin-prisma/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/plugin-prisma/.gitignore -------------------------------------------------------------------------------- /plugin-prisma/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/plugin-prisma/README.md -------------------------------------------------------------------------------- /plugin-prisma/api.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/plugin-prisma/api.graphql -------------------------------------------------------------------------------- /plugin-prisma/api/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/plugin-prisma/api/app.ts -------------------------------------------------------------------------------- /plugin-prisma/api/graphql/Blog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/plugin-prisma/api/graphql/Blog.ts -------------------------------------------------------------------------------- /plugin-prisma/api/graphql/Mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/plugin-prisma/api/graphql/Mutation.ts -------------------------------------------------------------------------------- /plugin-prisma/api/graphql/Post.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/plugin-prisma/api/graphql/Post.ts -------------------------------------------------------------------------------- /plugin-prisma/api/graphql/Query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/plugin-prisma/api/graphql/Query.ts -------------------------------------------------------------------------------- /plugin-prisma/api/graphql/Tag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/plugin-prisma/api/graphql/Tag.ts -------------------------------------------------------------------------------- /plugin-prisma/api/graphql/User.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/plugin-prisma/api/graphql/User.ts -------------------------------------------------------------------------------- /plugin-prisma/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/plugin-prisma/package-lock.json -------------------------------------------------------------------------------- /plugin-prisma/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/plugin-prisma/package.json -------------------------------------------------------------------------------- /plugin-prisma/prisma/migrations/20200617124821-init/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/plugin-prisma/prisma/migrations/20200617124821-init/README.md -------------------------------------------------------------------------------- /plugin-prisma/prisma/migrations/20200617124821-init/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/plugin-prisma/prisma/migrations/20200617124821-init/schema.prisma -------------------------------------------------------------------------------- /plugin-prisma/prisma/migrations/20200617124821-init/steps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/plugin-prisma/prisma/migrations/20200617124821-init/steps.json -------------------------------------------------------------------------------- /plugin-prisma/prisma/migrations/migrate.lock: -------------------------------------------------------------------------------- 1 | # Prisma Migrate lockfile v1 2 | 3 | 20200617124821-init -------------------------------------------------------------------------------- /plugin-prisma/prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/plugin-prisma/prisma/schema.prisma -------------------------------------------------------------------------------- /plugin-prisma/tests/environments/prisma.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/plugin-prisma/tests/environments/prisma.js -------------------------------------------------------------------------------- /plugin-prisma/tests/integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/plugin-prisma/tests/integration.test.ts -------------------------------------------------------------------------------- /plugin-prisma/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/plugin-prisma/tsconfig.json -------------------------------------------------------------------------------- /plugins-prisma-and-jwt-auth-and-shield/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/plugins-prisma-and-jwt-auth-and-shield/.gitignore -------------------------------------------------------------------------------- /plugins-prisma-and-jwt-auth-and-shield/api/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/plugins-prisma-and-jwt-auth-and-shield/api/app.ts -------------------------------------------------------------------------------- /plugins-prisma-and-jwt-auth-and-shield/api/graphql/Mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/plugins-prisma-and-jwt-auth-and-shield/api/graphql/Mutation.ts -------------------------------------------------------------------------------- /plugins-prisma-and-jwt-auth-and-shield/api/graphql/Query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/plugins-prisma-and-jwt-auth-and-shield/api/graphql/Query.ts -------------------------------------------------------------------------------- /plugins-prisma-and-jwt-auth-and-shield/api/graphql/models/AuthPayload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/plugins-prisma-and-jwt-auth-and-shield/api/graphql/models/AuthPayload.ts -------------------------------------------------------------------------------- /plugins-prisma-and-jwt-auth-and-shield/api/graphql/models/Post.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/plugins-prisma-and-jwt-auth-and-shield/api/graphql/models/Post.ts -------------------------------------------------------------------------------- /plugins-prisma-and-jwt-auth-and-shield/api/graphql/models/User.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/plugins-prisma-and-jwt-auth-and-shield/api/graphql/models/User.ts -------------------------------------------------------------------------------- /plugins-prisma-and-jwt-auth-and-shield/api/permissions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/plugins-prisma-and-jwt-auth-and-shield/api/permissions/index.ts -------------------------------------------------------------------------------- /plugins-prisma-and-jwt-auth-and-shield/api/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/plugins-prisma-and-jwt-auth-and-shield/api/utils/index.ts -------------------------------------------------------------------------------- /plugins-prisma-and-jwt-auth-and-shield/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/plugins-prisma-and-jwt-auth-and-shield/package-lock.json -------------------------------------------------------------------------------- /plugins-prisma-and-jwt-auth-and-shield/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/plugins-prisma-and-jwt-auth-and-shield/package.json -------------------------------------------------------------------------------- /plugins-prisma-and-jwt-auth-and-shield/prisma/dev.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/plugins-prisma-and-jwt-auth-and-shield/prisma/dev.db -------------------------------------------------------------------------------- /plugins-prisma-and-jwt-auth-and-shield/prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/plugins-prisma-and-jwt-auth-and-shield/prisma/schema.prisma -------------------------------------------------------------------------------- /plugins-prisma-and-jwt-auth-and-shield/prisma/seed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/plugins-prisma-and-jwt-auth-and-shield/prisma/seed.ts -------------------------------------------------------------------------------- /plugins-prisma-and-jwt-auth-and-shield/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/plugins-prisma-and-jwt-auth-and-shield/tsconfig.json -------------------------------------------------------------------------------- /plugins-prisma-and-jwt-auth/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/plugins-prisma-and-jwt-auth/.gitignore -------------------------------------------------------------------------------- /plugins-prisma-and-jwt-auth/api/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/plugins-prisma-and-jwt-auth/api/app.ts -------------------------------------------------------------------------------- /plugins-prisma-and-jwt-auth/api/graphql/Mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/plugins-prisma-and-jwt-auth/api/graphql/Mutation.ts -------------------------------------------------------------------------------- /plugins-prisma-and-jwt-auth/api/graphql/Query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/plugins-prisma-and-jwt-auth/api/graphql/Query.ts -------------------------------------------------------------------------------- /plugins-prisma-and-jwt-auth/api/graphql/models/AuthPayload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/plugins-prisma-and-jwt-auth/api/graphql/models/AuthPayload.ts -------------------------------------------------------------------------------- /plugins-prisma-and-jwt-auth/api/graphql/models/Post.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/plugins-prisma-and-jwt-auth/api/graphql/models/Post.ts -------------------------------------------------------------------------------- /plugins-prisma-and-jwt-auth/api/graphql/models/User.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/plugins-prisma-and-jwt-auth/api/graphql/models/User.ts -------------------------------------------------------------------------------- /plugins-prisma-and-jwt-auth/api/permissions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/plugins-prisma-and-jwt-auth/api/permissions/index.ts -------------------------------------------------------------------------------- /plugins-prisma-and-jwt-auth/api/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/plugins-prisma-and-jwt-auth/api/utils/index.ts -------------------------------------------------------------------------------- /plugins-prisma-and-jwt-auth/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/plugins-prisma-and-jwt-auth/package-lock.json -------------------------------------------------------------------------------- /plugins-prisma-and-jwt-auth/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/plugins-prisma-and-jwt-auth/package.json -------------------------------------------------------------------------------- /plugins-prisma-and-jwt-auth/prisma/dev.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/plugins-prisma-and-jwt-auth/prisma/dev.db -------------------------------------------------------------------------------- /plugins-prisma-and-jwt-auth/prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/plugins-prisma-and-jwt-auth/prisma/schema.prisma -------------------------------------------------------------------------------- /plugins-prisma-and-jwt-auth/prisma/seed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/plugins-prisma-and-jwt-auth/prisma/seed.ts -------------------------------------------------------------------------------- /plugins-prisma-and-jwt-auth/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/plugins-prisma-and-jwt-auth/tsconfig.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/renovate.json -------------------------------------------------------------------------------- /with-nextjs-and-vercel-and-plugins-prisma/.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/with-nextjs-and-vercel-and-plugins-prisma/.envrc -------------------------------------------------------------------------------- /with-nextjs-and-vercel-and-plugins-prisma/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/with-nextjs-and-vercel-and-plugins-prisma/.gitignore -------------------------------------------------------------------------------- /with-nextjs-and-vercel-and-plugins-prisma/.prettierignore: -------------------------------------------------------------------------------- 1 | .next 2 | -------------------------------------------------------------------------------- /with-nextjs-and-vercel-and-plugins-prisma/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/with-nextjs-and-vercel-and-plugins-prisma/README.md -------------------------------------------------------------------------------- /with-nextjs-and-vercel-and-plugins-prisma/components/layout.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/with-nextjs-and-vercel-and-plugins-prisma/components/layout.module.css -------------------------------------------------------------------------------- /with-nextjs-and-vercel-and-plugins-prisma/components/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/with-nextjs-and-vercel-and-plugins-prisma/components/layout.tsx -------------------------------------------------------------------------------- /with-nextjs-and-vercel-and-plugins-prisma/graphql/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/with-nextjs-and-vercel-and-plugins-prisma/graphql/schema.ts -------------------------------------------------------------------------------- /with-nextjs-and-vercel-and-plugins-prisma/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/with-nextjs-and-vercel-and-plugins-prisma/next-env.d.ts -------------------------------------------------------------------------------- /with-nextjs-and-vercel-and-plugins-prisma/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/with-nextjs-and-vercel-and-plugins-prisma/package-lock.json -------------------------------------------------------------------------------- /with-nextjs-and-vercel-and-plugins-prisma/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/with-nextjs-and-vercel-and-plugins-prisma/package.json -------------------------------------------------------------------------------- /with-nextjs-and-vercel-and-plugins-prisma/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/with-nextjs-and-vercel-and-plugins-prisma/pages/_app.tsx -------------------------------------------------------------------------------- /with-nextjs-and-vercel-and-plugins-prisma/pages/api/graphql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/with-nextjs-and-vercel-and-plugins-prisma/pages/api/graphql.ts -------------------------------------------------------------------------------- /with-nextjs-and-vercel-and-plugins-prisma/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/with-nextjs-and-vercel-and-plugins-prisma/pages/index.tsx -------------------------------------------------------------------------------- /with-nextjs-and-vercel-and-plugins-prisma/prisma/migrations/20200507132005-init/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/with-nextjs-and-vercel-and-plugins-prisma/prisma/migrations/20200507132005-init/README.md -------------------------------------------------------------------------------- /with-nextjs-and-vercel-and-plugins-prisma/prisma/migrations/20200507132005-init/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/with-nextjs-and-vercel-and-plugins-prisma/prisma/migrations/20200507132005-init/schema.prisma -------------------------------------------------------------------------------- /with-nextjs-and-vercel-and-plugins-prisma/prisma/migrations/20200507132005-init/steps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/with-nextjs-and-vercel-and-plugins-prisma/prisma/migrations/20200507132005-init/steps.json -------------------------------------------------------------------------------- /with-nextjs-and-vercel-and-plugins-prisma/prisma/migrations/20200507152121-init/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/with-nextjs-and-vercel-and-plugins-prisma/prisma/migrations/20200507152121-init/README.md -------------------------------------------------------------------------------- /with-nextjs-and-vercel-and-plugins-prisma/prisma/migrations/20200507152121-init/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/with-nextjs-and-vercel-and-plugins-prisma/prisma/migrations/20200507152121-init/schema.prisma -------------------------------------------------------------------------------- /with-nextjs-and-vercel-and-plugins-prisma/prisma/migrations/20200507152121-init/steps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/with-nextjs-and-vercel-and-plugins-prisma/prisma/migrations/20200507152121-init/steps.json -------------------------------------------------------------------------------- /with-nextjs-and-vercel-and-plugins-prisma/prisma/migrations/migrate.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/with-nextjs-and-vercel-and-plugins-prisma/prisma/migrations/migrate.lock -------------------------------------------------------------------------------- /with-nextjs-and-vercel-and-plugins-prisma/prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/with-nextjs-and-vercel-and-plugins-prisma/prisma/schema.prisma -------------------------------------------------------------------------------- /with-nextjs-and-vercel-and-plugins-prisma/styles/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/with-nextjs-and-vercel-and-plugins-prisma/styles/global.css -------------------------------------------------------------------------------- /with-nextjs-and-vercel-and-plugins-prisma/styles/utils.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/with-nextjs-and-vercel-and-plugins-prisma/styles/utils.module.css -------------------------------------------------------------------------------- /with-nextjs-and-vercel-and-plugins-prisma/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/with-nextjs-and-vercel-and-plugins-prisma/tsconfig.json -------------------------------------------------------------------------------- /with-nextjs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/with-nextjs/.gitignore -------------------------------------------------------------------------------- /with-nextjs/.prettierignore: -------------------------------------------------------------------------------- 1 | .next 2 | -------------------------------------------------------------------------------- /with-nextjs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/with-nextjs/README.md -------------------------------------------------------------------------------- /with-nextjs/components/layout.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/with-nextjs/components/layout.module.css -------------------------------------------------------------------------------- /with-nextjs/components/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/with-nextjs/components/layout.tsx -------------------------------------------------------------------------------- /with-nextjs/graphql/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/with-nextjs/graphql/schema.ts -------------------------------------------------------------------------------- /with-nextjs/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/with-nextjs/next-env.d.ts -------------------------------------------------------------------------------- /with-nextjs/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/with-nextjs/package-lock.json -------------------------------------------------------------------------------- /with-nextjs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/with-nextjs/package.json -------------------------------------------------------------------------------- /with-nextjs/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/with-nextjs/pages/_app.tsx -------------------------------------------------------------------------------- /with-nextjs/pages/api/graphql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/with-nextjs/pages/api/graphql.ts -------------------------------------------------------------------------------- /with-nextjs/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/with-nextjs/pages/index.tsx -------------------------------------------------------------------------------- /with-nextjs/styles/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/with-nextjs/styles/global.css -------------------------------------------------------------------------------- /with-nextjs/styles/utils.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/with-nextjs/styles/utils.module.css -------------------------------------------------------------------------------- /with-nextjs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/with-nextjs/tsconfig.json -------------------------------------------------------------------------------- /with-prisma/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/with-prisma/.gitignore -------------------------------------------------------------------------------- /with-prisma/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/with-prisma/.vscode/launch.json -------------------------------------------------------------------------------- /with-prisma/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/with-prisma/README.md -------------------------------------------------------------------------------- /with-prisma/api.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/with-prisma/api.graphql -------------------------------------------------------------------------------- /with-prisma/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/with-prisma/api.ts -------------------------------------------------------------------------------- /with-prisma/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/with-prisma/package-lock.json -------------------------------------------------------------------------------- /with-prisma/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/with-prisma/package.json -------------------------------------------------------------------------------- /with-prisma/prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/with-prisma/prisma/schema.prisma -------------------------------------------------------------------------------- /with-prisma/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphql-framework-experiment-examples/HEAD/with-prisma/tsconfig.json --------------------------------------------------------------------------------