All checks were successful
Build Docker Image / build (push) Successful in 1m54s
Replace Python/Django/Graphene with TypeScript/Express/Apollo Server. Same 4 endpoints (public/user/team/m2m), same JWT auth. Prisma replaces Django ORM for Offer/Request/SupplierProfile. Temporal and Odoo integrations preserved.
12 lines
153 B
TypeScript
12 lines
153 B
TypeScript
export const userTypeDefs = `#graphql
|
|
type Query {
|
|
health: String!
|
|
}
|
|
`
|
|
|
|
export const userResolvers = {
|
|
Query: {
|
|
health: () => 'ok',
|
|
},
|
|
}
|