├── .gitignore ├── README.md ├── api.graphql ├── codegen.yml ├── components ├── AllUsers.tsx ├── Layout.tsx ├── List.tsx ├── ListDetail.tsx └── ListItem.tsx ├── generated ├── graphql.tsx ├── nexus-typegen.ts └── schema.graphql ├── graphql ├── context.ts ├── queries.graphql.ts └── schema.ts ├── interfaces └── index.ts ├── next-env.d.ts ├── package.json ├── pages ├── _app.tsx ├── about.tsx ├── api │ ├── graphql.ts │ └── users │ │ └── index.ts ├── index.tsx └── users │ ├── [id].tsx │ └── index.tsx ├── prisma ├── migrations │ ├── 20200608182833-init │ │ ├── README.md │ │ ├── schema.prisma │ │ └── steps.json │ └── migrate.lock └── schema.prisma ├── tsconfig.json └── utils └── sample-data.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexrcs/fullstack-graphql-next-nexus-prisma/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexrcs/fullstack-graphql-next-nexus-prisma/HEAD/README.md -------------------------------------------------------------------------------- /api.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexrcs/fullstack-graphql-next-nexus-prisma/HEAD/api.graphql -------------------------------------------------------------------------------- /codegen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexrcs/fullstack-graphql-next-nexus-prisma/HEAD/codegen.yml -------------------------------------------------------------------------------- /components/AllUsers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexrcs/fullstack-graphql-next-nexus-prisma/HEAD/components/AllUsers.tsx -------------------------------------------------------------------------------- /components/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexrcs/fullstack-graphql-next-nexus-prisma/HEAD/components/Layout.tsx -------------------------------------------------------------------------------- /components/List.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexrcs/fullstack-graphql-next-nexus-prisma/HEAD/components/List.tsx -------------------------------------------------------------------------------- /components/ListDetail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexrcs/fullstack-graphql-next-nexus-prisma/HEAD/components/ListDetail.tsx -------------------------------------------------------------------------------- /components/ListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexrcs/fullstack-graphql-next-nexus-prisma/HEAD/components/ListItem.tsx -------------------------------------------------------------------------------- /generated/graphql.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexrcs/fullstack-graphql-next-nexus-prisma/HEAD/generated/graphql.tsx -------------------------------------------------------------------------------- /generated/nexus-typegen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexrcs/fullstack-graphql-next-nexus-prisma/HEAD/generated/nexus-typegen.ts -------------------------------------------------------------------------------- /generated/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexrcs/fullstack-graphql-next-nexus-prisma/HEAD/generated/schema.graphql -------------------------------------------------------------------------------- /graphql/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexrcs/fullstack-graphql-next-nexus-prisma/HEAD/graphql/context.ts -------------------------------------------------------------------------------- /graphql/queries.graphql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexrcs/fullstack-graphql-next-nexus-prisma/HEAD/graphql/queries.graphql.ts -------------------------------------------------------------------------------- /graphql/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexrcs/fullstack-graphql-next-nexus-prisma/HEAD/graphql/schema.ts -------------------------------------------------------------------------------- /interfaces/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexrcs/fullstack-graphql-next-nexus-prisma/HEAD/interfaces/index.ts -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexrcs/fullstack-graphql-next-nexus-prisma/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexrcs/fullstack-graphql-next-nexus-prisma/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexrcs/fullstack-graphql-next-nexus-prisma/HEAD/pages/_app.tsx -------------------------------------------------------------------------------- /pages/about.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexrcs/fullstack-graphql-next-nexus-prisma/HEAD/pages/about.tsx -------------------------------------------------------------------------------- /pages/api/graphql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexrcs/fullstack-graphql-next-nexus-prisma/HEAD/pages/api/graphql.ts -------------------------------------------------------------------------------- /pages/api/users/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexrcs/fullstack-graphql-next-nexus-prisma/HEAD/pages/api/users/index.ts -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexrcs/fullstack-graphql-next-nexus-prisma/HEAD/pages/index.tsx -------------------------------------------------------------------------------- /pages/users/[id].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexrcs/fullstack-graphql-next-nexus-prisma/HEAD/pages/users/[id].tsx -------------------------------------------------------------------------------- /pages/users/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexrcs/fullstack-graphql-next-nexus-prisma/HEAD/pages/users/index.tsx -------------------------------------------------------------------------------- /prisma/migrations/20200608182833-init/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexrcs/fullstack-graphql-next-nexus-prisma/HEAD/prisma/migrations/20200608182833-init/README.md -------------------------------------------------------------------------------- /prisma/migrations/20200608182833-init/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexrcs/fullstack-graphql-next-nexus-prisma/HEAD/prisma/migrations/20200608182833-init/schema.prisma -------------------------------------------------------------------------------- /prisma/migrations/20200608182833-init/steps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexrcs/fullstack-graphql-next-nexus-prisma/HEAD/prisma/migrations/20200608182833-init/steps.json -------------------------------------------------------------------------------- /prisma/migrations/migrate.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexrcs/fullstack-graphql-next-nexus-prisma/HEAD/prisma/migrations/migrate.lock -------------------------------------------------------------------------------- /prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexrcs/fullstack-graphql-next-nexus-prisma/HEAD/prisma/schema.prisma -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexrcs/fullstack-graphql-next-nexus-prisma/HEAD/tsconfig.json -------------------------------------------------------------------------------- /utils/sample-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexrcs/fullstack-graphql-next-nexus-prisma/HEAD/utils/sample-data.ts --------------------------------------------------------------------------------