graphql-prisma-typescript
graphql-prisma-typescript copied to clipboard
🏡 GraphQL server reference implementation (Airbnb clone) in Typescript using Prisma & graphql-yoga
For example, if i have a booking, i can see who else booked the same place and when. I can fetch their email, personal data etc. ```graphql { viewer {...
what about apollo-server 2 to integrate instead of yoga? i just used it for my app and it's working with upload things... there is some stuff that apollo-server 2 won't...
This addresses #109
I'm currently trying to learn how to do this and would love if this could show how to update and delete nodes.
Hi, I am a bit confused by Viewer in this example. First of all, why is this necessary: https://github.com/prismagraphql/graphql-server-example/blob/800506efcacb15c2e16bdb6d5a42ea275070a095/src/resolvers/Query.ts#L6 It seems to be doing nothing, yet if i look at...
The purpose of this repository is to act as a reference/real-world example of how a modern Node.js-based GraphQL can be built. So far the theme of this repository was to...
Steps to reproduce Modify `.graphqlconfig.yml` to: ``` projects: app: schemaPath: "src/schema.graphql" includes: ["queries/{booking,queries}.graphql"] extensions: prepare-bundle: src/generated/app.graphql endpoints: default: "http://localhost:5000" prepare-bundle: src/generated/app.graphql prepare-binding: output: src/generated/app.ts generator: graphcool-ts database: schemaPath: "src/generated/database.graphql" includes:...
> perhaps a little confusing about why `src` and `queries` are sibling directories, as `src` also contains some `.graphql` too Thanks @rarkins for this feedback. Would be great to hear...
Any ideas for which REST API to wrap in the context of Airbnb?
Bumps [jsonwebtoken](https://github.com/auth0/node-jsonwebtoken) from 8.5.1 to 9.0.0. Changelog Sourced from jsonwebtoken's changelog. 9.0.0 - 2022-12-21 Breaking changes: See Migration from v8 to v9 Breaking changes Removed support for Node versions 11...