···11+# Nexus Example With Prisma
22+33+This example shows how to use Nexus with [Prisma](https://prisma.io) without the [Prisma plugin for Nexus](https://nxs.li/plugins/prisma). This approach is lower-level and here for reference reasons. Generally, you would want to use the Prisma plugin.
44+55+### Try It
66+77+```
88+npm install
99+npx prisma generate
1010+npx prisma migrate save --experimental
1111+npx prisma migrate up --experimental
1212+```
1313+1414+Terminal 1
1515+1616+```
1717+npm run dev
1818+```
1919+2020+Terminal 2
2121+2222+```
2323+npm run dev:typecheck
2424+```
+12
nexus-with-prisma/api.graphql
···11+### This file was generated by Nexus Schema
22+### Do not make changes to this file directly
33+44+55+type Query {
66+ users(world: String): [User!]!
77+}
88+99+type User {
1010+ id: ID!
1111+ name: String
1212+}