You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
datasource db {
provider = "sqlite"
url = env("DATABASE_URL")
}
generator client {
provider = "prisma-client-js"
}
model Item1 {
id Int @id @default(autoincrement())
}
model item2 {
id Int @id @default(autoincrement())
}
The text was updated successfully, but these errors were encountered:
renaldasrep
changed the title
pal won't generate arguments when using mysql provider
pal won't generate arguments when model name is lowercase
Feb 24, 2022
upon further investingation I found that the original issue is not what I thought it was, so I updated the name and description
thankfully I can work around this quite easily
Example schema:
graphql/Item1/queries/findUnique.ts
compared to:
graphql/item2/queries/findUnique.ts
The text was updated successfully, but these errors were encountered: