-
Hi,
I'm using nexus-prisma to modify some types and add some custom mutations, but I'm getting an error and I don't know why.
Here are what I'm using:
````
nexus 0.11.6
n…
-
I have a model generated with prisma 2:
```prisma
model CustomerAccount {
id String @default(cuid()) @id @unique
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
…
-
I'm struggling to understand where one might add types that don't have tables associated with them?
Below is an extract from the schema.graphql file of a simple GraphQL server I made using Prisma (…
-
I would LOVE to see support to create plugins in Nexus so that we can create plugins like [`nexus-prisma`](https://github.com/prisma/nexus-prisma).
I think this is the best way to do schema stitchi…
-
Sorry for bad issue title, not sure how to properly name it.
While rewriting app to nexus I found problem with resolvers that modify. For example:
```ts
export const ProductType = objectType({…
-
I'm using nexus together with apollo server and noticed that the following schema:
```javascript
import path from 'path';
import { makeSchema, objectType } from 'nexus';
const Query = objectTy…
-
I'm using various scalars from the @okgrow/graphql-scalars package, such as:
`const NonNegativeIntScalar = asNexusMethod(NonNegativeInt, 'nonNegativeInt');`
Applying such a scalar to a field usi…
-
Well, I have a question and I don't know why it doesn't work..
Two weeks ago, I added a custom mutation using nexus adding a new custom type
`update-schema.ts`
````
import { objectType } fro…
-
I’m on a Mac
Upgraded to 0.11.1 and after this upgrade my typegen output is not being generated due to error “Error: EEXIST: file already exists, mkdir ‘(graphql output schema directory path)’, err…
-
I have a basic query definition with a required input type:
```
type Product {
id: ID!
}
input ProductInput {
productKey: String!
brandKey: String!
}
type Query {
product(input…