Nikolas
Nikolas
The Carbon CLI is really awesome and I love that it's possible to store and reuse a configuration as preset. One thing I'd love to add to the config though...
https://github.com/ian/next-graphql 
We should have an example that shows how to expose a full CRUD API for Prisma models using `t.crud`.
The tests per example should 1-1 mirror the instructions from the README (incl all sample queries/requests and instructions from the "Evolving the app"-section) to make sure the entire example is...
Currently tests are using `yarn prisma db push --preview-feature` (e.g. [here](https://github.com/prisma/prisma-examples/blob/latest/.github/tests/typescript/graphql/run.sh#L6)) for the initial setup. They should instead use the same insturctions from the READMEs for setup to ensure there...
Fro almost all examples, we print a greeting message to instruct the user what to do when the server is running. Right now we're using `\n` to achieve line breaks...
Right now we don't explicitly `disconnect()` in any of the examples except for the `script` ones.

Currently some examples in the `experimental` directory contain a dummy database called `dev.db` (e.g. [here](https://github.com/prisma/prisma-examples/tree/prisma2/experimental/typescript/script/prisma)). At the same time, the README instructs to get started from scratch with Prisma Migrate...
For example, when you create a new user and use their token to create a new post that you immediately want to punlish afterwards, you get a `Not authorised` error...