prisma/prisma-engines

Unsupported feature: Variable usage.

AnsonCode opened this issue · 2 comments

image

datasource db {
  provider = "sqlite"
  url      = "file:./data/db.sqlite?pool_timeout=5"
}

model Post {
  id        Int      @id @default(autoincrement())
  createdAt DateTime @default(now())
  updatedAt DateTime @updatedAt
  title     String
  content   String?
  published Boolean  @default(false)
  author    User     @relation(fields: [authorId], references: [id])
  authorId  Int
}

model Profile {
  id     Int     @id @default(autoincrement())
  bio    String?
  user   User    @relation(fields: [userId], references: [id])
  userId Int     @unique
}

model User {
  id      Int      @id @default(autoincrement())
  email   String   @unique
  name    String?
  posts   Post[]
  profile Profile?
}

image

If don't use parameter ,it works.

The Engines GraphQL API is an internal feature for usage in Prisma Client. It is not publicly supported and should not be used in any way because of that.

Is this causing problems in Prisma Client? I assume not, and am hence closing this issue.