post it to [there](https://www.prisma.io/forum/)
```
const server = new GraphQLServer({
typeDefs: './src/schema.graphql',
resolvers,
context: request => ({
...request,
// prisma,
prisma: new Prisma({
endpoint: `${process.env.LOCAL_ENDPOINT}`,
debug: true
})
}),
})
```
Here
```
prisma: new Prisma({ debug: true })
```
this doesn't work... so I need to specify endpoint too. which seems like very redundant
opposite to [this](https://www.prisma.io/docs/prisma-client/setup/constructor-JAVASCRIPT-rsc4/)