Migrate teams backend from Django to Express + Apollo Server + Prisma
All checks were successful
Build Docker Image / build (push) Successful in 2m8s
All checks were successful
Build Docker Image / build (push) Successful in 2m8s
Replace Django/Graphene stack with TypeScript Express server using Apollo Server v4 with 4 GraphQL endpoints (public/user/team/m2m) and Prisma ORM mapped to existing tables.
This commit is contained in:
4
src/schemas/public.ts
Normal file
4
src/schemas/public.ts
Normal file
@@ -0,0 +1,4 @@
|
||||
export const publicTypeDefs = `#graphql
|
||||
type Query { health: String! }
|
||||
`
|
||||
export const publicResolvers = { Query: { health: () => 'ok' } }
|
||||
Reference in New Issue
Block a user