Models
Types

Models

article

Fields

Name Type Attributes Required Comment
id Int
  • @id
  • @default(autoincrement())
Yes -
url String
  • @default()
Yes -
osskey String
  • @default()
Yes -
title String
  • @default()
Yes -
authorId Int
  • -
Yes -
createAt DateTime
  • @default(now())
Yes -
updateAt DateTime
  • @default(now())
  • @updatedAt
Yes -
author user
  • -
Yes -

Operations

findUnique

Find zero or one Article

// Get one Article
const article = await prisma.article.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where articleWhereUniqueInput Yes

Output

Type: article
Required: No
List: No

findFirst

Find first Article

// Get one Article
const article = await prisma.article.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where articleWhereInput No
orderBy articleOrderByWithRelationInput[] | articleOrderByWithRelationInput No
cursor articleWhereUniqueInput No
take Int No
skip Int No
distinct ArticleScalarFieldEnum | ArticleScalarFieldEnum[] No

Output

Type: article
Required: No
List: No

findMany

Find zero or more Article

// Get all Article
const Article = await prisma.article.findMany()
// Get first 10 Article
const Article = await prisma.article.findMany({ take: 10 })

Input

Name Type Required
where articleWhereInput No
orderBy articleOrderByWithRelationInput[] | articleOrderByWithRelationInput No
cursor articleWhereUniqueInput No
take Int No
skip Int No
distinct ArticleScalarFieldEnum | ArticleScalarFieldEnum[] No

Output

Type: article
Required: Yes
List: Yes

create

Create one Article

// Create one Article
const Article = await prisma.article.create({
  data: {
    // ... data to create a Article
  }
})

Input

Name Type Required
data articleCreateInput | articleUncheckedCreateInput Yes

Output

Type: article
Required: Yes
List: No

delete

Delete one Article

// Delete one Article
const Article = await prisma.article.delete({
  where: {
    // ... filter to delete one Article
  }
})

Input

Name Type Required
where articleWhereUniqueInput Yes

Output

Type: article
Required: No
List: No

update

Update one Article

// Update one Article
const article = await prisma.article.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data articleUpdateInput | articleUncheckedUpdateInput Yes
where articleWhereUniqueInput Yes

Output

Type: article
Required: No
List: No

deleteMany

Delete zero or more Article

// Delete a few Article
const { count } = await prisma.article.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where articleWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Article

const { count } = await prisma.article.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data articleUpdateManyMutationInput | articleUncheckedUpdateManyInput Yes
where articleWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Article

// Update or create a Article
const article = await prisma.article.upsert({
  create: {
    // ... data to create a Article
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Article we want to update
  }
})

Input

Name Type Required
where articleWhereUniqueInput Yes
create articleCreateInput | articleUncheckedCreateInput Yes
update articleUpdateInput | articleUncheckedUpdateInput Yes

Output

Type: article
Required: Yes
List: No

user

Fields

Name Type Attributes Required Comment
id Int
  • @id
  • @default(autoincrement())
Yes -
name String
  • @default()
Yes -
password String
  • @default()
Yes -
roleId Int
  • -
Yes -
createAt DateTime
  • @default(now())
Yes -
updateAt DateTime
  • @default(now())
  • @updatedAt
Yes -
articles article[]
  • -
Yes -
role role
  • -
Yes -
form form[]
  • -
Yes -
messages message[]
  • -
Yes -
rooms userRooms[]
  • -
Yes -

Operations

findUnique

Find zero or one User

// Get one User
const user = await prisma.user.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where userWhereUniqueInput Yes

Output

Type: user
Required: No
List: No

findFirst

Find first User

// Get one User
const user = await prisma.user.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where userWhereInput No
orderBy userOrderByWithRelationInput[] | userOrderByWithRelationInput No
cursor userWhereUniqueInput No
take Int No
skip Int No
distinct UserScalarFieldEnum | UserScalarFieldEnum[] No

Output

Type: user
Required: No
List: No

findMany

Find zero or more User

// Get all User
const User = await prisma.user.findMany()
// Get first 10 User
const User = await prisma.user.findMany({ take: 10 })

Input

Name Type Required
where userWhereInput No
orderBy userOrderByWithRelationInput[] | userOrderByWithRelationInput No
cursor userWhereUniqueInput No
take Int No
skip Int No
distinct UserScalarFieldEnum | UserScalarFieldEnum[] No

Output

Type: user
Required: Yes
List: Yes

create

Create one User

// Create one User
const User = await prisma.user.create({
  data: {
    // ... data to create a User
  }
})

Input

Name Type Required
data userCreateInput | userUncheckedCreateInput Yes

Output

Type: user
Required: Yes
List: No

delete

Delete one User

// Delete one User
const User = await prisma.user.delete({
  where: {
    // ... filter to delete one User
  }
})

Input

Name Type Required
where userWhereUniqueInput Yes

Output

Type: user
Required: No
List: No

update

Update one User

// Update one User
const user = await prisma.user.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data userUpdateInput | userUncheckedUpdateInput Yes
where userWhereUniqueInput Yes

Output

Type: user
Required: No
List: No

deleteMany

Delete zero or more User

// Delete a few User
const { count } = await prisma.user.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where userWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one User

const { count } = await prisma.user.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data userUpdateManyMutationInput | userUncheckedUpdateManyInput Yes
where userWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one User

// Update or create a User
const user = await prisma.user.upsert({
  create: {
    // ... data to create a User
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the User we want to update
  }
})

Input

Name Type Required
where userWhereUniqueInput Yes
create userCreateInput | userUncheckedCreateInput Yes
update userUpdateInput | userUncheckedUpdateInput Yes

Output

Type: user
Required: Yes
List: No

role

Fields

Name Type Attributes Required Comment
id Int
  • @id
  • @default(autoincrement())
Yes -
name String
  • @default()
Yes -
code String
  • @default()
Yes -
createAt DateTime
  • @default(now())
Yes -
updateAt DateTime
  • @default(now())
  • @updatedAt
Yes -
users user[]
  • -
Yes -

Operations

findUnique

Find zero or one Role

// Get one Role
const role = await prisma.role.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where roleWhereUniqueInput Yes

Output

Type: role
Required: No
List: No

findFirst

Find first Role

// Get one Role
const role = await prisma.role.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where roleWhereInput No
orderBy roleOrderByWithRelationInput[] | roleOrderByWithRelationInput No
cursor roleWhereUniqueInput No
take Int No
skip Int No
distinct RoleScalarFieldEnum | RoleScalarFieldEnum[] No

Output

Type: role
Required: No
List: No

findMany

Find zero or more Role

// Get all Role
const Role = await prisma.role.findMany()
// Get first 10 Role
const Role = await prisma.role.findMany({ take: 10 })

Input

Name Type Required
where roleWhereInput No
orderBy roleOrderByWithRelationInput[] | roleOrderByWithRelationInput No
cursor roleWhereUniqueInput No
take Int No
skip Int No
distinct RoleScalarFieldEnum | RoleScalarFieldEnum[] No

Output

Type: role
Required: Yes
List: Yes

create

Create one Role

// Create one Role
const Role = await prisma.role.create({
  data: {
    // ... data to create a Role
  }
})

Input

Name Type Required
data roleCreateInput | roleUncheckedCreateInput No

Output

Type: role
Required: Yes
List: No

delete

Delete one Role

// Delete one Role
const Role = await prisma.role.delete({
  where: {
    // ... filter to delete one Role
  }
})

Input

Name Type Required
where roleWhereUniqueInput Yes

Output

Type: role
Required: No
List: No

update

Update one Role

// Update one Role
const role = await prisma.role.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data roleUpdateInput | roleUncheckedUpdateInput Yes
where roleWhereUniqueInput Yes

Output

Type: role
Required: No
List: No

deleteMany

Delete zero or more Role

// Delete a few Role
const { count } = await prisma.role.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where roleWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Role

const { count } = await prisma.role.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data roleUpdateManyMutationInput | roleUncheckedUpdateManyInput Yes
where roleWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Role

// Update or create a Role
const role = await prisma.role.upsert({
  create: {
    // ... data to create a Role
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Role we want to update
  }
})

Input

Name Type Required
where roleWhereUniqueInput Yes
create roleCreateInput | roleUncheckedCreateInput Yes
update roleUpdateInput | roleUncheckedUpdateInput Yes

Output

Type: role
Required: Yes
List: No

category

Fields

Name Type Attributes Required Comment
id Int
  • @id
  • @default(autoincrement())
Yes -
code String
  • @default()
Yes -
name String
  • @default()
Yes -
createAt DateTime
  • @default(now())
Yes -
updateAt DateTime
  • @default(now())
Yes -
form form[]
  • -
Yes -

Operations

findUnique

Find zero or one Category

// Get one Category
const category = await prisma.category.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where categoryWhereUniqueInput Yes

Output

Type: category
Required: No
List: No

findFirst

Find first Category

// Get one Category
const category = await prisma.category.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where categoryWhereInput No
orderBy categoryOrderByWithRelationInput[] | categoryOrderByWithRelationInput No
cursor categoryWhereUniqueInput No
take Int No
skip Int No
distinct CategoryScalarFieldEnum | CategoryScalarFieldEnum[] No

Output

Type: category
Required: No
List: No

findMany

Find zero or more Category

// Get all Category
const Category = await prisma.category.findMany()
// Get first 10 Category
const Category = await prisma.category.findMany({ take: 10 })

Input

Name Type Required
where categoryWhereInput No
orderBy categoryOrderByWithRelationInput[] | categoryOrderByWithRelationInput No
cursor categoryWhereUniqueInput No
take Int No
skip Int No
distinct CategoryScalarFieldEnum | CategoryScalarFieldEnum[] No

Output

Type: category
Required: Yes
List: Yes

create

Create one Category

// Create one Category
const Category = await prisma.category.create({
  data: {
    // ... data to create a Category
  }
})

Input

Name Type Required
data categoryCreateInput | categoryUncheckedCreateInput No

Output

Type: category
Required: Yes
List: No

delete

Delete one Category

// Delete one Category
const Category = await prisma.category.delete({
  where: {
    // ... filter to delete one Category
  }
})

Input

Name Type Required
where categoryWhereUniqueInput Yes

Output

Type: category
Required: No
List: No

update

Update one Category

// Update one Category
const category = await prisma.category.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data categoryUpdateInput | categoryUncheckedUpdateInput Yes
where categoryWhereUniqueInput Yes

Output

Type: category
Required: No
List: No

deleteMany

Delete zero or more Category

// Delete a few Category
const { count } = await prisma.category.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where categoryWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Category

const { count } = await prisma.category.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data categoryUpdateManyMutationInput | categoryUncheckedUpdateManyInput Yes
where categoryWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Category

// Update or create a Category
const category = await prisma.category.upsert({
  create: {
    // ... data to create a Category
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Category we want to update
  }
})

Input

Name Type Required
where categoryWhereUniqueInput Yes
create categoryCreateInput | categoryUncheckedCreateInput Yes
update categoryUpdateInput | categoryUncheckedUpdateInput Yes

Output

Type: category
Required: Yes
List: No

form

Fields

Name Type Attributes Required Comment
id String
  • @default()
Yes -
name String
  • -
Yes -
config String
  • -
Yes -
extConfig String?
  • -
No -
authorId Int
  • -
Yes -
categoryId Int?
  • -
No -
createAt DateTime
  • @default(now())
Yes -
updateAt DateTime
  • @default(now())
Yes -
versionId String
  • @id
  • @default()
Yes -
author user
  • -
Yes -
category category?
  • -
No -

Operations

findUnique

Find zero or one Form

// Get one Form
const form = await prisma.form.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where formWhereUniqueInput Yes

Output

Type: form
Required: No
List: No

findFirst

Find first Form

// Get one Form
const form = await prisma.form.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where formWhereInput No
orderBy formOrderByWithRelationInput[] | formOrderByWithRelationInput No
cursor formWhereUniqueInput No
take Int No
skip Int No
distinct FormScalarFieldEnum | FormScalarFieldEnum[] No

Output

Type: form
Required: No
List: No

findMany

Find zero or more Form

// Get all Form
const Form = await prisma.form.findMany()
// Get first 10 Form
const Form = await prisma.form.findMany({ take: 10 })

Input

Name Type Required
where formWhereInput No
orderBy formOrderByWithRelationInput[] | formOrderByWithRelationInput No
cursor formWhereUniqueInput No
take Int No
skip Int No
distinct FormScalarFieldEnum | FormScalarFieldEnum[] No

Output

Type: form
Required: Yes
List: Yes

create

Create one Form

// Create one Form
const Form = await prisma.form.create({
  data: {
    // ... data to create a Form
  }
})

Input

Name Type Required
data formCreateInput | formUncheckedCreateInput Yes

Output

Type: form
Required: Yes
List: No

delete

Delete one Form

// Delete one Form
const Form = await prisma.form.delete({
  where: {
    // ... filter to delete one Form
  }
})

Input

Name Type Required
where formWhereUniqueInput Yes

Output

Type: form
Required: No
List: No

update

Update one Form

// Update one Form
const form = await prisma.form.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data formUpdateInput | formUncheckedUpdateInput Yes
where formWhereUniqueInput Yes

Output

Type: form
Required: No
List: No

deleteMany

Delete zero or more Form

// Delete a few Form
const { count } = await prisma.form.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where formWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Form

const { count } = await prisma.form.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data formUpdateManyMutationInput | formUncheckedUpdateManyInput Yes
where formWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Form

// Update or create a Form
const form = await prisma.form.upsert({
  create: {
    // ... data to create a Form
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Form we want to update
  }
})

Input

Name Type Required
where formWhereUniqueInput Yes
create formCreateInput | formUncheckedCreateInput Yes
update formUpdateInput | formUncheckedUpdateInput Yes

Output

Type: form
Required: Yes
List: No

message

Fields

Name Type Attributes Required Comment
id Int
  • @id
  • @default(autoincrement())
Yes -
message String?
  • -
No -
userId Int?
  • -
No -
roomId Int
  • -
Yes -
createAt DateTime
  • @default(now())
Yes -
updateAt DateTime
  • @default(now())
Yes -
system Int
  • -
Yes -
user user?
  • -
No -
room room
  • -
Yes -

Operations

findUnique

Find zero or one Message

// Get one Message
const message = await prisma.message.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where messageWhereUniqueInput Yes

Output

Type: message
Required: No
List: No

findFirst

Find first Message

// Get one Message
const message = await prisma.message.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where messageWhereInput No
orderBy messageOrderByWithRelationInput[] | messageOrderByWithRelationInput No
cursor messageWhereUniqueInput No
take Int No
skip Int No
distinct MessageScalarFieldEnum | MessageScalarFieldEnum[] No

Output

Type: message
Required: No
List: No

findMany

Find zero or more Message

// Get all Message
const Message = await prisma.message.findMany()
// Get first 10 Message
const Message = await prisma.message.findMany({ take: 10 })

Input

Name Type Required
where messageWhereInput No
orderBy messageOrderByWithRelationInput[] | messageOrderByWithRelationInput No
cursor messageWhereUniqueInput No
take Int No
skip Int No
distinct MessageScalarFieldEnum | MessageScalarFieldEnum[] No

Output

Type: message
Required: Yes
List: Yes

create

Create one Message

// Create one Message
const Message = await prisma.message.create({
  data: {
    // ... data to create a Message
  }
})

Input

Name Type Required
data messageCreateInput | messageUncheckedCreateInput Yes

Output

Type: message
Required: Yes
List: No

delete

Delete one Message

// Delete one Message
const Message = await prisma.message.delete({
  where: {
    // ... filter to delete one Message
  }
})

Input

Name Type Required
where messageWhereUniqueInput Yes

Output

Type: message
Required: No
List: No

update

Update one Message

// Update one Message
const message = await prisma.message.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data messageUpdateInput | messageUncheckedUpdateInput Yes
where messageWhereUniqueInput Yes

Output

Type: message
Required: No
List: No

deleteMany

Delete zero or more Message

// Delete a few Message
const { count } = await prisma.message.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where messageWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Message

const { count } = await prisma.message.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data messageUpdateManyMutationInput | messageUncheckedUpdateManyInput Yes
where messageWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Message

// Update or create a Message
const message = await prisma.message.upsert({
  create: {
    // ... data to create a Message
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Message we want to update
  }
})

Input

Name Type Required
where messageWhereUniqueInput Yes
create messageCreateInput | messageUncheckedCreateInput Yes
update messageUpdateInput | messageUncheckedUpdateInput Yes

Output

Type: message
Required: Yes
List: No

room

Fields

Name Type Attributes Required Comment
id Int
  • @id
  • @default(autoincrement())
Yes -
muiltple Int
  • -
Yes -
name String
  • @default()
Yes -
createAt DateTime
  • @default(now())
Yes -
updateAt DateTime
  • @default(now())
Yes -
users userRooms[]
  • -
Yes -
messages message[]
  • -
Yes -

Operations

findUnique

Find zero or one Room

// Get one Room
const room = await prisma.room.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where roomWhereUniqueInput Yes

Output

Type: room
Required: No
List: No

findFirst

Find first Room

// Get one Room
const room = await prisma.room.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where roomWhereInput No
orderBy roomOrderByWithRelationInput[] | roomOrderByWithRelationInput No
cursor roomWhereUniqueInput No
take Int No
skip Int No
distinct RoomScalarFieldEnum | RoomScalarFieldEnum[] No

Output

Type: room
Required: No
List: No

findMany

Find zero or more Room

// Get all Room
const Room = await prisma.room.findMany()
// Get first 10 Room
const Room = await prisma.room.findMany({ take: 10 })

Input

Name Type Required
where roomWhereInput No
orderBy roomOrderByWithRelationInput[] | roomOrderByWithRelationInput No
cursor roomWhereUniqueInput No
take Int No
skip Int No
distinct RoomScalarFieldEnum | RoomScalarFieldEnum[] No

Output

Type: room
Required: Yes
List: Yes

create

Create one Room

// Create one Room
const Room = await prisma.room.create({
  data: {
    // ... data to create a Room
  }
})

Input

Name Type Required
data roomCreateInput | roomUncheckedCreateInput Yes

Output

Type: room
Required: Yes
List: No

delete

Delete one Room

// Delete one Room
const Room = await prisma.room.delete({
  where: {
    // ... filter to delete one Room
  }
})

Input

Name Type Required
where roomWhereUniqueInput Yes

Output

Type: room
Required: No
List: No

update

Update one Room

// Update one Room
const room = await prisma.room.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data roomUpdateInput | roomUncheckedUpdateInput Yes
where roomWhereUniqueInput Yes

Output

Type: room
Required: No
List: No

deleteMany

Delete zero or more Room

// Delete a few Room
const { count } = await prisma.room.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where roomWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Room

const { count } = await prisma.room.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data roomUpdateManyMutationInput | roomUncheckedUpdateManyInput Yes
where roomWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Room

// Update or create a Room
const room = await prisma.room.upsert({
  create: {
    // ... data to create a Room
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Room we want to update
  }
})

Input

Name Type Required
where roomWhereUniqueInput Yes
create roomCreateInput | roomUncheckedCreateInput Yes
update roomUpdateInput | roomUncheckedUpdateInput Yes

Output

Type: room
Required: Yes
List: No

userRooms

Name Value
@@id
  • userId
  • roomId

Fields

Name Type Attributes Required Comment
userId Int
  • -
Yes -
roomId Int
  • -
Yes -
createAt DateTime
  • @default(now())
Yes -
updateAt DateTime
  • @default(now())
Yes -
user user
  • -
Yes -
room room
  • -
Yes -

Operations

findUnique

Find zero or one UserRooms

// Get one UserRooms
const userRooms = await prisma.userRooms.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where userRoomsWhereUniqueInput Yes

Output

Type: userRooms
Required: No
List: No

findFirst

Find first UserRooms

// Get one UserRooms
const userRooms = await prisma.userRooms.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where userRoomsWhereInput No
orderBy userRoomsOrderByWithRelationInput[] | userRoomsOrderByWithRelationInput No
cursor userRoomsWhereUniqueInput No
take Int No
skip Int No
distinct UserRoomsScalarFieldEnum | UserRoomsScalarFieldEnum[] No

Output

Type: userRooms
Required: No
List: No

findMany

Find zero or more UserRooms

// Get all UserRooms
const UserRooms = await prisma.userRooms.findMany()
// Get first 10 UserRooms
const UserRooms = await prisma.userRooms.findMany({ take: 10 })

Input

Name Type Required
where userRoomsWhereInput No
orderBy userRoomsOrderByWithRelationInput[] | userRoomsOrderByWithRelationInput No
cursor userRoomsWhereUniqueInput No
take Int No
skip Int No
distinct UserRoomsScalarFieldEnum | UserRoomsScalarFieldEnum[] No

Output

Type: userRooms
Required: Yes
List: Yes

create

Create one UserRooms

// Create one UserRooms
const UserRooms = await prisma.userRooms.create({
  data: {
    // ... data to create a UserRooms
  }
})

Input

Name Type Required
data userRoomsCreateInput | userRoomsUncheckedCreateInput Yes

Output

Type: userRooms
Required: Yes
List: No

delete

Delete one UserRooms

// Delete one UserRooms
const UserRooms = await prisma.userRooms.delete({
  where: {
    // ... filter to delete one UserRooms
  }
})

Input

Name Type Required
where userRoomsWhereUniqueInput Yes

Output

Type: userRooms
Required: No
List: No

update

Update one UserRooms

// Update one UserRooms
const userRooms = await prisma.userRooms.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data userRoomsUpdateInput | userRoomsUncheckedUpdateInput Yes
where userRoomsWhereUniqueInput Yes

Output

Type: userRooms
Required: No
List: No

deleteMany

Delete zero or more UserRooms

// Delete a few UserRooms
const { count } = await prisma.userRooms.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where userRoomsWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one UserRooms

const { count } = await prisma.userRooms.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data userRoomsUpdateManyMutationInput | userRoomsUncheckedUpdateManyInput Yes
where userRoomsWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one UserRooms

// Update or create a UserRooms
const userRooms = await prisma.userRooms.upsert({
  create: {
    // ... data to create a UserRooms
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the UserRooms we want to update
  }
})

Input

Name Type Required
where userRoomsWhereUniqueInput Yes
create userRoomsCreateInput | userRoomsUncheckedCreateInput Yes
update userRoomsUpdateInput | userRoomsUncheckedUpdateInput Yes

Output

Type: userRooms
Required: Yes
List: No

Types

Input Types

articleWhereInput

Name Type Nullable
AND articleWhereInput | articleWhereInput[] No
OR articleWhereInput[] No
NOT articleWhereInput | articleWhereInput[] No
id IntFilter | Int No
url StringFilter | String No
osskey StringFilter | String No
title StringFilter | String No
authorId IntFilter | Int No
createAt DateTimeFilter | DateTime No
updateAt DateTimeFilter | DateTime No
author UserRelationFilter | userWhereInput No

articleOrderByWithRelationInput

Name Type Nullable
id SortOrder No
url SortOrder No
osskey SortOrder No
title SortOrder No
authorId SortOrder No
createAt SortOrder No
updateAt SortOrder No
author userOrderByWithRelationInput No

articleWhereUniqueInput

Name Type Nullable
id Int No
AND articleWhereInput | articleWhereInput[] No
OR articleWhereInput[] No
NOT articleWhereInput | articleWhereInput[] No
url StringFilter | String No
osskey StringFilter | String No
title StringFilter | String No
authorId IntFilter | Int No
createAt DateTimeFilter | DateTime No
updateAt DateTimeFilter | DateTime No
author UserRelationFilter | userWhereInput No

articleOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
url SortOrder No
osskey SortOrder No
title SortOrder No
authorId SortOrder No
createAt SortOrder No
updateAt SortOrder No
_count articleCountOrderByAggregateInput No
_avg articleAvgOrderByAggregateInput No
_max articleMaxOrderByAggregateInput No
_min articleMinOrderByAggregateInput No
_sum articleSumOrderByAggregateInput No


userWhereInput

Name Type Nullable
AND userWhereInput | userWhereInput[] No
OR userWhereInput[] No
NOT userWhereInput | userWhereInput[] No
id IntFilter | Int No
name StringFilter | String No
password StringFilter | String No
roleId IntFilter | Int No
createAt DateTimeFilter | DateTime No
updateAt DateTimeFilter | DateTime No
articles ArticleListRelationFilter No
role RoleRelationFilter | roleWhereInput No
form FormListRelationFilter No
messages MessageListRelationFilter No
rooms UserRoomsListRelationFilter No

userOrderByWithRelationInput

Name Type Nullable
id SortOrder No
name SortOrder No
password SortOrder No
roleId SortOrder No
createAt SortOrder No
updateAt SortOrder No
articles articleOrderByRelationAggregateInput No
role roleOrderByWithRelationInput No
form formOrderByRelationAggregateInput No
messages messageOrderByRelationAggregateInput No
rooms userRoomsOrderByRelationAggregateInput No

userWhereUniqueInput

Name Type Nullable
id Int No
AND userWhereInput | userWhereInput[] No
OR userWhereInput[] No
NOT userWhereInput | userWhereInput[] No
name StringFilter | String No
password StringFilter | String No
roleId IntFilter | Int No
createAt DateTimeFilter | DateTime No
updateAt DateTimeFilter | DateTime No
articles ArticleListRelationFilter No
role RoleRelationFilter | roleWhereInput No
form FormListRelationFilter No
messages MessageListRelationFilter No
rooms UserRoomsListRelationFilter No

userOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
name SortOrder No
password SortOrder No
roleId SortOrder No
createAt SortOrder No
updateAt SortOrder No
_count userCountOrderByAggregateInput No
_avg userAvgOrderByAggregateInput No
_max userMaxOrderByAggregateInput No
_min userMinOrderByAggregateInput No
_sum userSumOrderByAggregateInput No


roleWhereInput

Name Type Nullable
AND roleWhereInput | roleWhereInput[] No
OR roleWhereInput[] No
NOT roleWhereInput | roleWhereInput[] No
id IntFilter | Int No
name StringFilter | String No
code StringFilter | String No
createAt DateTimeFilter | DateTime No
updateAt DateTimeFilter | DateTime No
users UserListRelationFilter No

roleOrderByWithRelationInput

Name Type Nullable
id SortOrder No
name SortOrder No
code SortOrder No
createAt SortOrder No
updateAt SortOrder No
users userOrderByRelationAggregateInput No

roleWhereUniqueInput

Name Type Nullable
id Int No
AND roleWhereInput | roleWhereInput[] No
OR roleWhereInput[] No
NOT roleWhereInput | roleWhereInput[] No
name StringFilter | String No
code StringFilter | String No
createAt DateTimeFilter | DateTime No
updateAt DateTimeFilter | DateTime No
users UserListRelationFilter No

roleOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
name SortOrder No
code SortOrder No
createAt SortOrder No
updateAt SortOrder No
_count roleCountOrderByAggregateInput No
_avg roleAvgOrderByAggregateInput No
_max roleMaxOrderByAggregateInput No
_min roleMinOrderByAggregateInput No
_sum roleSumOrderByAggregateInput No


categoryWhereInput

Name Type Nullable
AND categoryWhereInput | categoryWhereInput[] No
OR categoryWhereInput[] No
NOT categoryWhereInput | categoryWhereInput[] No
id IntFilter | Int No
code StringFilter | String No
name StringFilter | String No
createAt DateTimeFilter | DateTime No
updateAt DateTimeFilter | DateTime No
form FormListRelationFilter No

categoryOrderByWithRelationInput

Name Type Nullable
id SortOrder No
code SortOrder No
name SortOrder No
createAt SortOrder No
updateAt SortOrder No
form formOrderByRelationAggregateInput No

categoryWhereUniqueInput

Name Type Nullable
id Int No
AND categoryWhereInput | categoryWhereInput[] No
OR categoryWhereInput[] No
NOT categoryWhereInput | categoryWhereInput[] No
code StringFilter | String No
name StringFilter | String No
createAt DateTimeFilter | DateTime No
updateAt DateTimeFilter | DateTime No
form FormListRelationFilter No

categoryOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
code SortOrder No
name SortOrder No
createAt SortOrder No
updateAt SortOrder No
_count categoryCountOrderByAggregateInput No
_avg categoryAvgOrderByAggregateInput No
_max categoryMaxOrderByAggregateInput No
_min categoryMinOrderByAggregateInput No
_sum categorySumOrderByAggregateInput No


formWhereInput

Name Type Nullable
AND formWhereInput | formWhereInput[] No
OR formWhereInput[] No
NOT formWhereInput | formWhereInput[] No
id StringFilter | String No
name StringFilter | String No
config StringFilter | String No
extConfig StringNullableFilter | String | Null Yes
authorId IntFilter | Int No
categoryId IntNullableFilter | Int | Null Yes
createAt DateTimeFilter | DateTime No
updateAt DateTimeFilter | DateTime No
versionId StringFilter | String No
author UserRelationFilter | userWhereInput No
category CategoryNullableRelationFilter | categoryWhereInput | Null Yes

formOrderByWithRelationInput

Name Type Nullable
id SortOrder No
name SortOrder No
config SortOrder No
extConfig SortOrder | SortOrderInput No
authorId SortOrder No
categoryId SortOrder | SortOrderInput No
createAt SortOrder No
updateAt SortOrder No
versionId SortOrder No
author userOrderByWithRelationInput No
category categoryOrderByWithRelationInput No

formWhereUniqueInput

Name Type Nullable
versionId String No
AND formWhereInput | formWhereInput[] No
OR formWhereInput[] No
NOT formWhereInput | formWhereInput[] No
id StringFilter | String No
name StringFilter | String No
config StringFilter | String No
extConfig StringNullableFilter | String | Null Yes
authorId IntFilter | Int No
categoryId IntNullableFilter | Int | Null Yes
createAt DateTimeFilter | DateTime No
updateAt DateTimeFilter | DateTime No
author UserRelationFilter | userWhereInput No
category CategoryNullableRelationFilter | categoryWhereInput | Null Yes

formOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
name SortOrder No
config SortOrder No
extConfig SortOrder | SortOrderInput No
authorId SortOrder No
categoryId SortOrder | SortOrderInput No
createAt SortOrder No
updateAt SortOrder No
versionId SortOrder No
_count formCountOrderByAggregateInput No
_avg formAvgOrderByAggregateInput No
_max formMaxOrderByAggregateInput No
_min formMinOrderByAggregateInput No
_sum formSumOrderByAggregateInput No

formScalarWhereWithAggregatesInput

Name Type Nullable
AND formScalarWhereWithAggregatesInput | formScalarWhereWithAggregatesInput[] No
OR formScalarWhereWithAggregatesInput[] No
NOT formScalarWhereWithAggregatesInput | formScalarWhereWithAggregatesInput[] No
id StringWithAggregatesFilter | String No
name StringWithAggregatesFilter | String No
config StringWithAggregatesFilter | String No
extConfig StringNullableWithAggregatesFilter | String | Null Yes
authorId IntWithAggregatesFilter | Int No
categoryId IntNullableWithAggregatesFilter | Int | Null Yes
createAt DateTimeWithAggregatesFilter | DateTime No
updateAt DateTimeWithAggregatesFilter | DateTime No
versionId StringWithAggregatesFilter | String No

messageWhereInput

Name Type Nullable
AND messageWhereInput | messageWhereInput[] No
OR messageWhereInput[] No
NOT messageWhereInput | messageWhereInput[] No
id IntFilter | Int No
message StringNullableFilter | String | Null Yes
userId IntNullableFilter | Int | Null Yes
roomId IntFilter | Int No
createAt DateTimeFilter | DateTime No
updateAt DateTimeFilter | DateTime No
system IntFilter | Int No
user UserNullableRelationFilter | userWhereInput | Null Yes
room RoomRelationFilter | roomWhereInput No

messageOrderByWithRelationInput

Name Type Nullable
id SortOrder No
message SortOrder | SortOrderInput No
userId SortOrder | SortOrderInput No
roomId SortOrder No
createAt SortOrder No
updateAt SortOrder No
system SortOrder No
user userOrderByWithRelationInput No
room roomOrderByWithRelationInput No

messageWhereUniqueInput

Name Type Nullable
id Int No
AND messageWhereInput | messageWhereInput[] No
OR messageWhereInput[] No
NOT messageWhereInput | messageWhereInput[] No
message StringNullableFilter | String | Null Yes
userId IntNullableFilter | Int | Null Yes
roomId IntFilter | Int No
createAt DateTimeFilter | DateTime No
updateAt DateTimeFilter | DateTime No
system IntFilter | Int No
user UserNullableRelationFilter | userWhereInput | Null Yes
room RoomRelationFilter | roomWhereInput No

messageOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
message SortOrder | SortOrderInput No
userId SortOrder | SortOrderInput No
roomId SortOrder No
createAt SortOrder No
updateAt SortOrder No
system SortOrder No
_count messageCountOrderByAggregateInput No
_avg messageAvgOrderByAggregateInput No
_max messageMaxOrderByAggregateInput No
_min messageMinOrderByAggregateInput No
_sum messageSumOrderByAggregateInput No


roomWhereInput

Name Type Nullable
AND roomWhereInput | roomWhereInput[] No
OR roomWhereInput[] No
NOT roomWhereInput | roomWhereInput[] No
id IntFilter | Int No
muiltple IntFilter | Int No
name StringFilter | String No
createAt DateTimeFilter | DateTime No
updateAt DateTimeFilter | DateTime No
users UserRoomsListRelationFilter No
messages MessageListRelationFilter No

roomOrderByWithRelationInput

Name Type Nullable
id SortOrder No
muiltple SortOrder No
name SortOrder No
createAt SortOrder No
updateAt SortOrder No
users userRoomsOrderByRelationAggregateInput No
messages messageOrderByRelationAggregateInput No

roomWhereUniqueInput

Name Type Nullable
id Int No
AND roomWhereInput | roomWhereInput[] No
OR roomWhereInput[] No
NOT roomWhereInput | roomWhereInput[] No
muiltple IntFilter | Int No
name StringFilter | String No
createAt DateTimeFilter | DateTime No
updateAt DateTimeFilter | DateTime No
users UserRoomsListRelationFilter No
messages MessageListRelationFilter No

roomOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
muiltple SortOrder No
name SortOrder No
createAt SortOrder No
updateAt SortOrder No
_count roomCountOrderByAggregateInput No
_avg roomAvgOrderByAggregateInput No
_max roomMaxOrderByAggregateInput No
_min roomMinOrderByAggregateInput No
_sum roomSumOrderByAggregateInput No


userRoomsWhereInput

Name Type Nullable
AND userRoomsWhereInput | userRoomsWhereInput[] No
OR userRoomsWhereInput[] No
NOT userRoomsWhereInput | userRoomsWhereInput[] No
userId IntFilter | Int No
roomId IntFilter | Int No
createAt DateTimeFilter | DateTime No
updateAt DateTimeFilter | DateTime No
user UserRelationFilter | userWhereInput No
room RoomRelationFilter | roomWhereInput No

userRoomsOrderByWithRelationInput

Name Type Nullable
userId SortOrder No
roomId SortOrder No
createAt SortOrder No
updateAt SortOrder No
user userOrderByWithRelationInput No
room roomOrderByWithRelationInput No

userRoomsWhereUniqueInput

Name Type Nullable
userId_roomId userRoomsUserIdRoomIdCompoundUniqueInput No
AND userRoomsWhereInput | userRoomsWhereInput[] No
OR userRoomsWhereInput[] No
NOT userRoomsWhereInput | userRoomsWhereInput[] No
userId IntFilter | Int No
roomId IntFilter | Int No
createAt DateTimeFilter | DateTime No
updateAt DateTimeFilter | DateTime No
user UserRelationFilter | userWhereInput No
room RoomRelationFilter | roomWhereInput No

userRoomsOrderByWithAggregationInput

Name Type Nullable
userId SortOrder No
roomId SortOrder No
createAt SortOrder No
updateAt SortOrder No
_count userRoomsCountOrderByAggregateInput No
_avg userRoomsAvgOrderByAggregateInput No
_max userRoomsMaxOrderByAggregateInput No
_min userRoomsMinOrderByAggregateInput No
_sum userRoomsSumOrderByAggregateInput No


articleCreateInput

Name Type Nullable
url String No
osskey String No
title String No
createAt DateTime No
updateAt DateTime No
author userCreateNestedOneWithoutArticlesInput No

articleUncheckedCreateInput

Name Type Nullable
id Int No
url String No
osskey String No
title String No
authorId Int No
createAt DateTime No
updateAt DateTime No

articleUpdateInput

Name Type Nullable
url String | StringFieldUpdateOperationsInput No
osskey String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
createAt DateTime | DateTimeFieldUpdateOperationsInput No
updateAt DateTime | DateTimeFieldUpdateOperationsInput No
author userUpdateOneRequiredWithoutArticlesNestedInput No

articleUncheckedUpdateInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
url String | StringFieldUpdateOperationsInput No
osskey String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
authorId Int | IntFieldUpdateOperationsInput No
createAt DateTime | DateTimeFieldUpdateOperationsInput No
updateAt DateTime | DateTimeFieldUpdateOperationsInput No

articleCreateManyInput

Name Type Nullable
id Int No
url String No
osskey String No
title String No
authorId Int No
createAt DateTime No
updateAt DateTime No

articleUpdateManyMutationInput

Name Type Nullable
url String | StringFieldUpdateOperationsInput No
osskey String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
createAt DateTime | DateTimeFieldUpdateOperationsInput No
updateAt DateTime | DateTimeFieldUpdateOperationsInput No

articleUncheckedUpdateManyInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
url String | StringFieldUpdateOperationsInput No
osskey String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
authorId Int | IntFieldUpdateOperationsInput No
createAt DateTime | DateTimeFieldUpdateOperationsInput No
updateAt DateTime | DateTimeFieldUpdateOperationsInput No

userCreateInput

Name Type Nullable
name String No
password String No
createAt DateTime No
updateAt DateTime No
articles articleCreateNestedManyWithoutAuthorInput No
role roleCreateNestedOneWithoutUsersInput No
form formCreateNestedManyWithoutAuthorInput No
messages messageCreateNestedManyWithoutUserInput No
rooms userRoomsCreateNestedManyWithoutUserInput No

userUncheckedCreateInput

Name Type Nullable
id Int No
name String No
password String No
roleId Int No
createAt DateTime No
updateAt DateTime No
articles articleUncheckedCreateNestedManyWithoutAuthorInput No
form formUncheckedCreateNestedManyWithoutAuthorInput No
messages messageUncheckedCreateNestedManyWithoutUserInput No
rooms userRoomsUncheckedCreateNestedManyWithoutUserInput No



userCreateManyInput

Name Type Nullable
id Int No
name String No
password String No
roleId Int No
createAt DateTime No
updateAt DateTime No

userUpdateManyMutationInput

Name Type Nullable
name String | StringFieldUpdateOperationsInput No
password String | StringFieldUpdateOperationsInput No
createAt DateTime | DateTimeFieldUpdateOperationsInput No
updateAt DateTime | DateTimeFieldUpdateOperationsInput No

userUncheckedUpdateManyInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
password String | StringFieldUpdateOperationsInput No
roleId Int | IntFieldUpdateOperationsInput No
createAt DateTime | DateTimeFieldUpdateOperationsInput No
updateAt DateTime | DateTimeFieldUpdateOperationsInput No

roleCreateInput

Name Type Nullable
name String No
code String No
createAt DateTime No
updateAt DateTime No
users userCreateNestedManyWithoutRoleInput No

roleUncheckedCreateInput

Name Type Nullable
id Int No
name String No
code String No
createAt DateTime No
updateAt DateTime No
users userUncheckedCreateNestedManyWithoutRoleInput No

roleUpdateInput

Name Type Nullable
name String | StringFieldUpdateOperationsInput No
code String | StringFieldUpdateOperationsInput No
createAt DateTime | DateTimeFieldUpdateOperationsInput No
updateAt DateTime | DateTimeFieldUpdateOperationsInput No
users userUpdateManyWithoutRoleNestedInput No

roleUncheckedUpdateInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
code String | StringFieldUpdateOperationsInput No
createAt DateTime | DateTimeFieldUpdateOperationsInput No
updateAt DateTime | DateTimeFieldUpdateOperationsInput No
users userUncheckedUpdateManyWithoutRoleNestedInput No

roleCreateManyInput

Name Type Nullable
id Int No
name String No
code String No
createAt DateTime No
updateAt DateTime No

roleUpdateManyMutationInput

Name Type Nullable
name String | StringFieldUpdateOperationsInput No
code String | StringFieldUpdateOperationsInput No
createAt DateTime | DateTimeFieldUpdateOperationsInput No
updateAt DateTime | DateTimeFieldUpdateOperationsInput No

roleUncheckedUpdateManyInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
code String | StringFieldUpdateOperationsInput No
createAt DateTime | DateTimeFieldUpdateOperationsInput No
updateAt DateTime | DateTimeFieldUpdateOperationsInput No

categoryCreateInput

Name Type Nullable
code String No
name String No
createAt DateTime No
updateAt DateTime No
form formCreateNestedManyWithoutCategoryInput No

categoryUncheckedCreateInput

Name Type Nullable
id Int No
code String No
name String No
createAt DateTime No
updateAt DateTime No
form formUncheckedCreateNestedManyWithoutCategoryInput No

categoryUpdateInput

Name Type Nullable
code String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
createAt DateTime | DateTimeFieldUpdateOperationsInput No
updateAt DateTime | DateTimeFieldUpdateOperationsInput No
form formUpdateManyWithoutCategoryNestedInput No

categoryUncheckedUpdateInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
code String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
createAt DateTime | DateTimeFieldUpdateOperationsInput No
updateAt DateTime | DateTimeFieldUpdateOperationsInput No
form formUncheckedUpdateManyWithoutCategoryNestedInput No

categoryCreateManyInput

Name Type Nullable
id Int No
code String No
name String No
createAt DateTime No
updateAt DateTime No

categoryUpdateManyMutationInput

Name Type Nullable
code String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
createAt DateTime | DateTimeFieldUpdateOperationsInput No
updateAt DateTime | DateTimeFieldUpdateOperationsInput No

categoryUncheckedUpdateManyInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
code String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
createAt DateTime | DateTimeFieldUpdateOperationsInput No
updateAt DateTime | DateTimeFieldUpdateOperationsInput No

formCreateInput

Name Type Nullable
id String No
name String No
config String No
extConfig String | Null Yes
createAt DateTime No
updateAt DateTime No
versionId String No
author userCreateNestedOneWithoutFormInput No
category categoryCreateNestedOneWithoutFormInput No

formUncheckedCreateInput

Name Type Nullable
id String No
name String No
config String No
extConfig String | Null Yes
authorId Int No
categoryId Int | Null Yes
createAt DateTime No
updateAt DateTime No
versionId String No

formUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
config String | StringFieldUpdateOperationsInput No
extConfig String | NullableStringFieldUpdateOperationsInput | Null Yes
createAt DateTime | DateTimeFieldUpdateOperationsInput No
updateAt DateTime | DateTimeFieldUpdateOperationsInput No
versionId String | StringFieldUpdateOperationsInput No
author userUpdateOneRequiredWithoutFormNestedInput No
category categoryUpdateOneWithoutFormNestedInput No

formUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
config String | StringFieldUpdateOperationsInput No
extConfig String | NullableStringFieldUpdateOperationsInput | Null Yes
authorId Int | IntFieldUpdateOperationsInput No
categoryId Int | NullableIntFieldUpdateOperationsInput | Null Yes
createAt DateTime | DateTimeFieldUpdateOperationsInput No
updateAt DateTime | DateTimeFieldUpdateOperationsInput No
versionId String | StringFieldUpdateOperationsInput No

formCreateManyInput

Name Type Nullable
id String No
name String No
config String No
extConfig String | Null Yes
authorId Int No
categoryId Int | Null Yes
createAt DateTime No
updateAt DateTime No
versionId String No

formUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
config String | StringFieldUpdateOperationsInput No
extConfig String | NullableStringFieldUpdateOperationsInput | Null Yes
createAt DateTime | DateTimeFieldUpdateOperationsInput No
updateAt DateTime | DateTimeFieldUpdateOperationsInput No
versionId String | StringFieldUpdateOperationsInput No

formUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
config String | StringFieldUpdateOperationsInput No
extConfig String | NullableStringFieldUpdateOperationsInput | Null Yes
authorId Int | IntFieldUpdateOperationsInput No
categoryId Int | NullableIntFieldUpdateOperationsInput | Null Yes
createAt DateTime | DateTimeFieldUpdateOperationsInput No
updateAt DateTime | DateTimeFieldUpdateOperationsInput No
versionId String | StringFieldUpdateOperationsInput No

messageCreateInput

Name Type Nullable
message String | Null Yes
createAt DateTime No
updateAt DateTime No
system Int No
user userCreateNestedOneWithoutMessagesInput No
room roomCreateNestedOneWithoutMessagesInput No

messageUncheckedCreateInput

Name Type Nullable
id Int No
message String | Null Yes
userId Int | Null Yes
roomId Int No
createAt DateTime No
updateAt DateTime No
system Int No

messageUpdateInput

Name Type Nullable
message String | NullableStringFieldUpdateOperationsInput | Null Yes
createAt DateTime | DateTimeFieldUpdateOperationsInput No
updateAt DateTime | DateTimeFieldUpdateOperationsInput No
system Int | IntFieldUpdateOperationsInput No
user userUpdateOneWithoutMessagesNestedInput No
room roomUpdateOneRequiredWithoutMessagesNestedInput No

messageUncheckedUpdateInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
message String | NullableStringFieldUpdateOperationsInput | Null Yes
userId Int | NullableIntFieldUpdateOperationsInput | Null Yes
roomId Int | IntFieldUpdateOperationsInput No
createAt DateTime | DateTimeFieldUpdateOperationsInput No
updateAt DateTime | DateTimeFieldUpdateOperationsInput No
system Int | IntFieldUpdateOperationsInput No

messageCreateManyInput

Name Type Nullable
id Int No
message String | Null Yes
userId Int | Null Yes
roomId Int No
createAt DateTime No
updateAt DateTime No
system Int No

messageUpdateManyMutationInput

Name Type Nullable
message String | NullableStringFieldUpdateOperationsInput | Null Yes
createAt DateTime | DateTimeFieldUpdateOperationsInput No
updateAt DateTime | DateTimeFieldUpdateOperationsInput No
system Int | IntFieldUpdateOperationsInput No

messageUncheckedUpdateManyInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
message String | NullableStringFieldUpdateOperationsInput | Null Yes
userId Int | NullableIntFieldUpdateOperationsInput | Null Yes
roomId Int | IntFieldUpdateOperationsInput No
createAt DateTime | DateTimeFieldUpdateOperationsInput No
updateAt DateTime | DateTimeFieldUpdateOperationsInput No
system Int | IntFieldUpdateOperationsInput No

roomCreateInput

Name Type Nullable
muiltple Int No
name String No
createAt DateTime No
updateAt DateTime No
users userRoomsCreateNestedManyWithoutRoomInput No
messages messageCreateNestedManyWithoutRoomInput No

roomUncheckedCreateInput

Name Type Nullable
id Int No
muiltple Int No
name String No
createAt DateTime No
updateAt DateTime No
users userRoomsUncheckedCreateNestedManyWithoutRoomInput No
messages messageUncheckedCreateNestedManyWithoutRoomInput No

roomUpdateInput

Name Type Nullable
muiltple Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
createAt DateTime | DateTimeFieldUpdateOperationsInput No
updateAt DateTime | DateTimeFieldUpdateOperationsInput No
users userRoomsUpdateManyWithoutRoomNestedInput No
messages messageUpdateManyWithoutRoomNestedInput No


roomCreateManyInput

Name Type Nullable
id Int No
muiltple Int No
name String No
createAt DateTime No
updateAt DateTime No

roomUpdateManyMutationInput

Name Type Nullable
muiltple Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
createAt DateTime | DateTimeFieldUpdateOperationsInput No
updateAt DateTime | DateTimeFieldUpdateOperationsInput No

roomUncheckedUpdateManyInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
muiltple Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
createAt DateTime | DateTimeFieldUpdateOperationsInput No
updateAt DateTime | DateTimeFieldUpdateOperationsInput No

userRoomsCreateInput

Name Type Nullable
createAt DateTime No
updateAt DateTime No
user userCreateNestedOneWithoutRoomsInput No
room roomCreateNestedOneWithoutUsersInput No

userRoomsUncheckedCreateInput

Name Type Nullable
userId Int No
roomId Int No
createAt DateTime No
updateAt DateTime No

userRoomsUpdateInput

Name Type Nullable
createAt DateTime | DateTimeFieldUpdateOperationsInput No
updateAt DateTime | DateTimeFieldUpdateOperationsInput No
user userUpdateOneRequiredWithoutRoomsNestedInput No
room roomUpdateOneRequiredWithoutUsersNestedInput No

userRoomsUncheckedUpdateInput

Name Type Nullable
userId Int | IntFieldUpdateOperationsInput No
roomId Int | IntFieldUpdateOperationsInput No
createAt DateTime | DateTimeFieldUpdateOperationsInput No
updateAt DateTime | DateTimeFieldUpdateOperationsInput No

userRoomsCreateManyInput

Name Type Nullable
userId Int No
roomId Int No
createAt DateTime No
updateAt DateTime No

userRoomsUpdateManyMutationInput

Name Type Nullable
createAt DateTime | DateTimeFieldUpdateOperationsInput No
updateAt DateTime | DateTimeFieldUpdateOperationsInput No

userRoomsUncheckedUpdateManyInput

Name Type Nullable
userId Int | IntFieldUpdateOperationsInput No
roomId Int | IntFieldUpdateOperationsInput No
createAt DateTime | DateTimeFieldUpdateOperationsInput No
updateAt DateTime | DateTimeFieldUpdateOperationsInput No

IntFilter

Name Type Nullable
equals Int | IntFieldRefInput No
in Int No
notIn Int No
lt Int | IntFieldRefInput No
lte Int | IntFieldRefInput No
gt Int | IntFieldRefInput No
gte Int | IntFieldRefInput No
not Int | NestedIntFilter No

StringFilter

Name Type Nullable
equals String | StringFieldRefInput No
in String No
notIn String No
lt String | StringFieldRefInput No
lte String | StringFieldRefInput No
gt String | StringFieldRefInput No
gte String | StringFieldRefInput No
contains String | StringFieldRefInput No
startsWith String | StringFieldRefInput No
endsWith String | StringFieldRefInput No
not String | NestedStringFilter No

DateTimeFilter

Name Type Nullable
equals DateTime | DateTimeFieldRefInput No
in DateTime No
notIn DateTime No
lt DateTime | DateTimeFieldRefInput No
lte DateTime | DateTimeFieldRefInput No
gt DateTime | DateTimeFieldRefInput No
gte DateTime | DateTimeFieldRefInput No
not DateTime | NestedDateTimeFilter No

UserRelationFilter

Name Type Nullable
is userWhereInput No
isNot userWhereInput No

articleCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
url SortOrder No
osskey SortOrder No
title SortOrder No
authorId SortOrder No
createAt SortOrder No
updateAt SortOrder No

articleAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
authorId SortOrder No

articleMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
url SortOrder No
osskey SortOrder No
title SortOrder No
authorId SortOrder No
createAt SortOrder No
updateAt SortOrder No

articleMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
url SortOrder No
osskey SortOrder No
title SortOrder No
authorId SortOrder No
createAt SortOrder No
updateAt SortOrder No

articleSumOrderByAggregateInput

Name Type Nullable
id SortOrder No
authorId SortOrder No

IntWithAggregatesFilter

Name Type Nullable
equals Int | IntFieldRefInput No
in Int No
notIn Int No
lt Int | IntFieldRefInput No
lte Int | IntFieldRefInput No
gt Int | IntFieldRefInput No
gte Int | IntFieldRefInput No
not Int | NestedIntWithAggregatesFilter No
_count NestedIntFilter No
_avg NestedFloatFilter No
_sum NestedIntFilter No
_min NestedIntFilter No
_max NestedIntFilter No

StringWithAggregatesFilter

Name Type Nullable
equals String | StringFieldRefInput No
in String No
notIn String No
lt String | StringFieldRefInput No
lte String | StringFieldRefInput No
gt String | StringFieldRefInput No
gte String | StringFieldRefInput No
contains String | StringFieldRefInput No
startsWith String | StringFieldRefInput No
endsWith String | StringFieldRefInput No
not String | NestedStringWithAggregatesFilter No
_count NestedIntFilter No
_min NestedStringFilter No
_max NestedStringFilter No

DateTimeWithAggregatesFilter

Name Type Nullable
equals DateTime | DateTimeFieldRefInput No
in DateTime No
notIn DateTime No
lt DateTime | DateTimeFieldRefInput No
lte DateTime | DateTimeFieldRefInput No
gt DateTime | DateTimeFieldRefInput No
gte DateTime | DateTimeFieldRefInput No
not DateTime | NestedDateTimeWithAggregatesFilter No
_count NestedIntFilter No
_min NestedDateTimeFilter No
_max NestedDateTimeFilter No

ArticleListRelationFilter

Name Type Nullable
every articleWhereInput No
some articleWhereInput No
none articleWhereInput No

RoleRelationFilter

Name Type Nullable
is roleWhereInput No
isNot roleWhereInput No

FormListRelationFilter

Name Type Nullable
every formWhereInput No
some formWhereInput No
none formWhereInput No

MessageListRelationFilter

Name Type Nullable
every messageWhereInput No
some messageWhereInput No
none messageWhereInput No

UserRoomsListRelationFilter

Name Type Nullable
every userRoomsWhereInput No
some userRoomsWhereInput No
none userRoomsWhereInput No

articleOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

formOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

messageOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

userRoomsOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

userCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
password SortOrder No
roleId SortOrder No
createAt SortOrder No
updateAt SortOrder No

userAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
roleId SortOrder No

userMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
password SortOrder No
roleId SortOrder No
createAt SortOrder No
updateAt SortOrder No

userMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
password SortOrder No
roleId SortOrder No
createAt SortOrder No
updateAt SortOrder No

userSumOrderByAggregateInput

Name Type Nullable
id SortOrder No
roleId SortOrder No

UserListRelationFilter

Name Type Nullable
every userWhereInput No
some userWhereInput No
none userWhereInput No

userOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

roleCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
code SortOrder No
createAt SortOrder No
updateAt SortOrder No

roleAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No

roleMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
code SortOrder No
createAt SortOrder No
updateAt SortOrder No

roleMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
code SortOrder No
createAt SortOrder No
updateAt SortOrder No

roleSumOrderByAggregateInput

Name Type Nullable
id SortOrder No

categoryCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
code SortOrder No
name SortOrder No
createAt SortOrder No
updateAt SortOrder No

categoryAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No

categoryMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
code SortOrder No
name SortOrder No
createAt SortOrder No
updateAt SortOrder No

categoryMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
code SortOrder No
name SortOrder No
createAt SortOrder No
updateAt SortOrder No

categorySumOrderByAggregateInput

Name Type Nullable
id SortOrder No

StringNullableFilter

Name Type Nullable
equals String | StringFieldRefInput | Null Yes
in String | Null Yes
notIn String | Null Yes
lt String | StringFieldRefInput No
lte String | StringFieldRefInput No
gt String | StringFieldRefInput No
gte String | StringFieldRefInput No
contains String | StringFieldRefInput No
startsWith String | StringFieldRefInput No
endsWith String | StringFieldRefInput No
not String | NestedStringNullableFilter | Null Yes

IntNullableFilter

Name Type Nullable
equals Int | IntFieldRefInput | Null Yes
in Int | Null Yes
notIn Int | Null Yes
lt Int | IntFieldRefInput No
lte Int | IntFieldRefInput No
gt Int | IntFieldRefInput No
gte Int | IntFieldRefInput No
not Int | NestedIntNullableFilter | Null Yes

CategoryNullableRelationFilter

Name Type Nullable
is categoryWhereInput | Null Yes
isNot categoryWhereInput | Null Yes

SortOrderInput

Name Type Nullable
sort SortOrder No
nulls NullsOrder No

formCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
config SortOrder No
extConfig SortOrder No
authorId SortOrder No
categoryId SortOrder No
createAt SortOrder No
updateAt SortOrder No
versionId SortOrder No

formAvgOrderByAggregateInput

Name Type Nullable
authorId SortOrder No
categoryId SortOrder No

formMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
config SortOrder No
extConfig SortOrder No
authorId SortOrder No
categoryId SortOrder No
createAt SortOrder No
updateAt SortOrder No
versionId SortOrder No

formMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
config SortOrder No
extConfig SortOrder No
authorId SortOrder No
categoryId SortOrder No
createAt SortOrder No
updateAt SortOrder No
versionId SortOrder No

formSumOrderByAggregateInput

Name Type Nullable
authorId SortOrder No
categoryId SortOrder No

StringNullableWithAggregatesFilter

Name Type Nullable
equals String | StringFieldRefInput | Null Yes
in String | Null Yes
notIn String | Null Yes
lt String | StringFieldRefInput No
lte String | StringFieldRefInput No
gt String | StringFieldRefInput No
gte String | StringFieldRefInput No
contains String | StringFieldRefInput No
startsWith String | StringFieldRefInput No
endsWith String | StringFieldRefInput No
not String | NestedStringNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedStringNullableFilter No
_max NestedStringNullableFilter No

IntNullableWithAggregatesFilter

Name Type Nullable
equals Int | IntFieldRefInput | Null Yes
in Int | Null Yes
notIn Int | Null Yes
lt Int | IntFieldRefInput No
lte Int | IntFieldRefInput No
gt Int | IntFieldRefInput No
gte Int | IntFieldRefInput No
not Int | NestedIntNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_avg NestedFloatNullableFilter No
_sum NestedIntNullableFilter No
_min NestedIntNullableFilter No
_max NestedIntNullableFilter No

UserNullableRelationFilter

Name Type Nullable
is userWhereInput | Null Yes
isNot userWhereInput | Null Yes

RoomRelationFilter

Name Type Nullable
is roomWhereInput No
isNot roomWhereInput No

messageCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
message SortOrder No
userId SortOrder No
roomId SortOrder No
createAt SortOrder No
updateAt SortOrder No
system SortOrder No

messageAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
userId SortOrder No
roomId SortOrder No
system SortOrder No

messageMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
message SortOrder No
userId SortOrder No
roomId SortOrder No
createAt SortOrder No
updateAt SortOrder No
system SortOrder No

messageMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
message SortOrder No
userId SortOrder No
roomId SortOrder No
createAt SortOrder No
updateAt SortOrder No
system SortOrder No

messageSumOrderByAggregateInput

Name Type Nullable
id SortOrder No
userId SortOrder No
roomId SortOrder No
system SortOrder No

roomCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
muiltple SortOrder No
name SortOrder No
createAt SortOrder No
updateAt SortOrder No

roomAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
muiltple SortOrder No

roomMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
muiltple SortOrder No
name SortOrder No
createAt SortOrder No
updateAt SortOrder No

roomMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
muiltple SortOrder No
name SortOrder No
createAt SortOrder No
updateAt SortOrder No

roomSumOrderByAggregateInput

Name Type Nullable
id SortOrder No
muiltple SortOrder No

userRoomsUserIdRoomIdCompoundUniqueInput

Name Type Nullable
userId Int No
roomId Int No

userRoomsCountOrderByAggregateInput

Name Type Nullable
userId SortOrder No
roomId SortOrder No
createAt SortOrder No
updateAt SortOrder No

userRoomsAvgOrderByAggregateInput

Name Type Nullable
userId SortOrder No
roomId SortOrder No

userRoomsMaxOrderByAggregateInput

Name Type Nullable
userId SortOrder No
roomId SortOrder No
createAt SortOrder No
updateAt SortOrder No

userRoomsMinOrderByAggregateInput

Name Type Nullable
userId SortOrder No
roomId SortOrder No
createAt SortOrder No
updateAt SortOrder No

userRoomsSumOrderByAggregateInput

Name Type Nullable
userId SortOrder No
roomId SortOrder No

userCreateNestedOneWithoutArticlesInput

Name Type Nullable
create userCreateWithoutArticlesInput | userUncheckedCreateWithoutArticlesInput No
connectOrCreate userCreateOrConnectWithoutArticlesInput No
connect userWhereUniqueInput No

StringFieldUpdateOperationsInput

Name Type Nullable
set String No

DateTimeFieldUpdateOperationsInput

Name Type Nullable
set DateTime No


IntFieldUpdateOperationsInput

Name Type Nullable
set Int No
increment Int No
decrement Int No
multiply Int No
divide Int No


roleCreateNestedOneWithoutUsersInput

Name Type Nullable
create roleCreateWithoutUsersInput | roleUncheckedCreateWithoutUsersInput No
connectOrCreate roleCreateOrConnectWithoutUsersInput No
connect roleWhereUniqueInput No








articleUpdateManyWithoutAuthorNestedInput

Name Type Nullable
create articleCreateWithoutAuthorInput | articleCreateWithoutAuthorInput[] | articleUncheckedCreateWithoutAuthorInput | articleUncheckedCreateWithoutAuthorInput[] No
connectOrCreate articleCreateOrConnectWithoutAuthorInput | articleCreateOrConnectWithoutAuthorInput[] No
upsert articleUpsertWithWhereUniqueWithoutAuthorInput | articleUpsertWithWhereUniqueWithoutAuthorInput[] No
createMany articleCreateManyAuthorInputEnvelope No
set articleWhereUniqueInput | articleWhereUniqueInput[] No
disconnect articleWhereUniqueInput | articleWhereUniqueInput[] No
delete articleWhereUniqueInput | articleWhereUniqueInput[] No
connect articleWhereUniqueInput | articleWhereUniqueInput[] No
update articleUpdateWithWhereUniqueWithoutAuthorInput | articleUpdateWithWhereUniqueWithoutAuthorInput[] No
updateMany articleUpdateManyWithWhereWithoutAuthorInput | articleUpdateManyWithWhereWithoutAuthorInput[] No
deleteMany articleScalarWhereInput | articleScalarWhereInput[] No


formUpdateManyWithoutAuthorNestedInput

Name Type Nullable
create formCreateWithoutAuthorInput | formCreateWithoutAuthorInput[] | formUncheckedCreateWithoutAuthorInput | formUncheckedCreateWithoutAuthorInput[] No
connectOrCreate formCreateOrConnectWithoutAuthorInput | formCreateOrConnectWithoutAuthorInput[] No
upsert formUpsertWithWhereUniqueWithoutAuthorInput | formUpsertWithWhereUniqueWithoutAuthorInput[] No
createMany formCreateManyAuthorInputEnvelope No
set formWhereUniqueInput | formWhereUniqueInput[] No
disconnect formWhereUniqueInput | formWhereUniqueInput[] No
delete formWhereUniqueInput | formWhereUniqueInput[] No
connect formWhereUniqueInput | formWhereUniqueInput[] No
update formUpdateWithWhereUniqueWithoutAuthorInput | formUpdateWithWhereUniqueWithoutAuthorInput[] No
updateMany formUpdateManyWithWhereWithoutAuthorInput | formUpdateManyWithWhereWithoutAuthorInput[] No
deleteMany formScalarWhereInput | formScalarWhereInput[] No

messageUpdateManyWithoutUserNestedInput

Name Type Nullable
create messageCreateWithoutUserInput | messageCreateWithoutUserInput[] | messageUncheckedCreateWithoutUserInput | messageUncheckedCreateWithoutUserInput[] No
connectOrCreate messageCreateOrConnectWithoutUserInput | messageCreateOrConnectWithoutUserInput[] No
upsert messageUpsertWithWhereUniqueWithoutUserInput | messageUpsertWithWhereUniqueWithoutUserInput[] No
createMany messageCreateManyUserInputEnvelope No
set messageWhereUniqueInput | messageWhereUniqueInput[] No
disconnect messageWhereUniqueInput | messageWhereUniqueInput[] No
delete messageWhereUniqueInput | messageWhereUniqueInput[] No
connect messageWhereUniqueInput | messageWhereUniqueInput[] No
update messageUpdateWithWhereUniqueWithoutUserInput | messageUpdateWithWhereUniqueWithoutUserInput[] No
updateMany messageUpdateManyWithWhereWithoutUserInput | messageUpdateManyWithWhereWithoutUserInput[] No
deleteMany messageScalarWhereInput | messageScalarWhereInput[] No

userRoomsUpdateManyWithoutUserNestedInput

Name Type Nullable
create userRoomsCreateWithoutUserInput | userRoomsCreateWithoutUserInput[] | userRoomsUncheckedCreateWithoutUserInput | userRoomsUncheckedCreateWithoutUserInput[] No
connectOrCreate userRoomsCreateOrConnectWithoutUserInput | userRoomsCreateOrConnectWithoutUserInput[] No
upsert userRoomsUpsertWithWhereUniqueWithoutUserInput | userRoomsUpsertWithWhereUniqueWithoutUserInput[] No
createMany userRoomsCreateManyUserInputEnvelope No
set userRoomsWhereUniqueInput | userRoomsWhereUniqueInput[] No
disconnect userRoomsWhereUniqueInput | userRoomsWhereUniqueInput[] No
delete userRoomsWhereUniqueInput | userRoomsWhereUniqueInput[] No
connect userRoomsWhereUniqueInput | userRoomsWhereUniqueInput[] No
update userRoomsUpdateWithWhereUniqueWithoutUserInput | userRoomsUpdateWithWhereUniqueWithoutUserInput[] No
updateMany userRoomsUpdateManyWithWhereWithoutUserInput | userRoomsUpdateManyWithWhereWithoutUserInput[] No
deleteMany userRoomsScalarWhereInput | userRoomsScalarWhereInput[] No

articleUncheckedUpdateManyWithoutAuthorNestedInput

Name Type Nullable
create articleCreateWithoutAuthorInput | articleCreateWithoutAuthorInput[] | articleUncheckedCreateWithoutAuthorInput | articleUncheckedCreateWithoutAuthorInput[] No
connectOrCreate articleCreateOrConnectWithoutAuthorInput | articleCreateOrConnectWithoutAuthorInput[] No
upsert articleUpsertWithWhereUniqueWithoutAuthorInput | articleUpsertWithWhereUniqueWithoutAuthorInput[] No
createMany articleCreateManyAuthorInputEnvelope No
set articleWhereUniqueInput | articleWhereUniqueInput[] No
disconnect articleWhereUniqueInput | articleWhereUniqueInput[] No
delete articleWhereUniqueInput | articleWhereUniqueInput[] No
connect articleWhereUniqueInput | articleWhereUniqueInput[] No
update articleUpdateWithWhereUniqueWithoutAuthorInput | articleUpdateWithWhereUniqueWithoutAuthorInput[] No
updateMany articleUpdateManyWithWhereWithoutAuthorInput | articleUpdateManyWithWhereWithoutAuthorInput[] No
deleteMany articleScalarWhereInput | articleScalarWhereInput[] No

formUncheckedUpdateManyWithoutAuthorNestedInput

Name Type Nullable
create formCreateWithoutAuthorInput | formCreateWithoutAuthorInput[] | formUncheckedCreateWithoutAuthorInput | formUncheckedCreateWithoutAuthorInput[] No
connectOrCreate formCreateOrConnectWithoutAuthorInput | formCreateOrConnectWithoutAuthorInput[] No
upsert formUpsertWithWhereUniqueWithoutAuthorInput | formUpsertWithWhereUniqueWithoutAuthorInput[] No
createMany formCreateManyAuthorInputEnvelope No
set formWhereUniqueInput | formWhereUniqueInput[] No
disconnect formWhereUniqueInput | formWhereUniqueInput[] No
delete formWhereUniqueInput | formWhereUniqueInput[] No
connect formWhereUniqueInput | formWhereUniqueInput[] No
update formUpdateWithWhereUniqueWithoutAuthorInput | formUpdateWithWhereUniqueWithoutAuthorInput[] No
updateMany formUpdateManyWithWhereWithoutAuthorInput | formUpdateManyWithWhereWithoutAuthorInput[] No
deleteMany formScalarWhereInput | formScalarWhereInput[] No

messageUncheckedUpdateManyWithoutUserNestedInput

Name Type Nullable
create messageCreateWithoutUserInput | messageCreateWithoutUserInput[] | messageUncheckedCreateWithoutUserInput | messageUncheckedCreateWithoutUserInput[] No
connectOrCreate messageCreateOrConnectWithoutUserInput | messageCreateOrConnectWithoutUserInput[] No
upsert messageUpsertWithWhereUniqueWithoutUserInput | messageUpsertWithWhereUniqueWithoutUserInput[] No
createMany messageCreateManyUserInputEnvelope No
set messageWhereUniqueInput | messageWhereUniqueInput[] No
disconnect messageWhereUniqueInput | messageWhereUniqueInput[] No
delete messageWhereUniqueInput | messageWhereUniqueInput[] No
connect messageWhereUniqueInput | messageWhereUniqueInput[] No
update messageUpdateWithWhereUniqueWithoutUserInput | messageUpdateWithWhereUniqueWithoutUserInput[] No
updateMany messageUpdateManyWithWhereWithoutUserInput | messageUpdateManyWithWhereWithoutUserInput[] No
deleteMany messageScalarWhereInput | messageScalarWhereInput[] No

userRoomsUncheckedUpdateManyWithoutUserNestedInput

Name Type Nullable
create userRoomsCreateWithoutUserInput | userRoomsCreateWithoutUserInput[] | userRoomsUncheckedCreateWithoutUserInput | userRoomsUncheckedCreateWithoutUserInput[] No
connectOrCreate userRoomsCreateOrConnectWithoutUserInput | userRoomsCreateOrConnectWithoutUserInput[] No
upsert userRoomsUpsertWithWhereUniqueWithoutUserInput | userRoomsUpsertWithWhereUniqueWithoutUserInput[] No
createMany userRoomsCreateManyUserInputEnvelope No
set userRoomsWhereUniqueInput | userRoomsWhereUniqueInput[] No
disconnect userRoomsWhereUniqueInput | userRoomsWhereUniqueInput[] No
delete userRoomsWhereUniqueInput | userRoomsWhereUniqueInput[] No
connect userRoomsWhereUniqueInput | userRoomsWhereUniqueInput[] No
update userRoomsUpdateWithWhereUniqueWithoutUserInput | userRoomsUpdateWithWhereUniqueWithoutUserInput[] No
updateMany userRoomsUpdateManyWithWhereWithoutUserInput | userRoomsUpdateManyWithWhereWithoutUserInput[] No
deleteMany userRoomsScalarWhereInput | userRoomsScalarWhereInput[] No



userUpdateManyWithoutRoleNestedInput

Name Type Nullable
create userCreateWithoutRoleInput | userCreateWithoutRoleInput[] | userUncheckedCreateWithoutRoleInput | userUncheckedCreateWithoutRoleInput[] No
connectOrCreate userCreateOrConnectWithoutRoleInput | userCreateOrConnectWithoutRoleInput[] No
upsert userUpsertWithWhereUniqueWithoutRoleInput | userUpsertWithWhereUniqueWithoutRoleInput[] No
createMany userCreateManyRoleInputEnvelope No
set userWhereUniqueInput | userWhereUniqueInput[] No
disconnect userWhereUniqueInput | userWhereUniqueInput[] No
delete userWhereUniqueInput | userWhereUniqueInput[] No
connect userWhereUniqueInput | userWhereUniqueInput[] No
update userUpdateWithWhereUniqueWithoutRoleInput | userUpdateWithWhereUniqueWithoutRoleInput[] No
updateMany userUpdateManyWithWhereWithoutRoleInput | userUpdateManyWithWhereWithoutRoleInput[] No
deleteMany userScalarWhereInput | userScalarWhereInput[] No

userUncheckedUpdateManyWithoutRoleNestedInput

Name Type Nullable
create userCreateWithoutRoleInput | userCreateWithoutRoleInput[] | userUncheckedCreateWithoutRoleInput | userUncheckedCreateWithoutRoleInput[] No
connectOrCreate userCreateOrConnectWithoutRoleInput | userCreateOrConnectWithoutRoleInput[] No
upsert userUpsertWithWhereUniqueWithoutRoleInput | userUpsertWithWhereUniqueWithoutRoleInput[] No
createMany userCreateManyRoleInputEnvelope No
set userWhereUniqueInput | userWhereUniqueInput[] No
disconnect userWhereUniqueInput | userWhereUniqueInput[] No
delete userWhereUniqueInput | userWhereUniqueInput[] No
connect userWhereUniqueInput | userWhereUniqueInput[] No
update userUpdateWithWhereUniqueWithoutRoleInput | userUpdateWithWhereUniqueWithoutRoleInput[] No
updateMany userUpdateManyWithWhereWithoutRoleInput | userUpdateManyWithWhereWithoutRoleInput[] No
deleteMany userScalarWhereInput | userScalarWhereInput[] No



formUpdateManyWithoutCategoryNestedInput

Name Type Nullable
create formCreateWithoutCategoryInput | formCreateWithoutCategoryInput[] | formUncheckedCreateWithoutCategoryInput | formUncheckedCreateWithoutCategoryInput[] No
connectOrCreate formCreateOrConnectWithoutCategoryInput | formCreateOrConnectWithoutCategoryInput[] No
upsert formUpsertWithWhereUniqueWithoutCategoryInput | formUpsertWithWhereUniqueWithoutCategoryInput[] No
createMany formCreateManyCategoryInputEnvelope No
set formWhereUniqueInput | formWhereUniqueInput[] No
disconnect formWhereUniqueInput | formWhereUniqueInput[] No
delete formWhereUniqueInput | formWhereUniqueInput[] No
connect formWhereUniqueInput | formWhereUniqueInput[] No
update formUpdateWithWhereUniqueWithoutCategoryInput | formUpdateWithWhereUniqueWithoutCategoryInput[] No
updateMany formUpdateManyWithWhereWithoutCategoryInput | formUpdateManyWithWhereWithoutCategoryInput[] No
deleteMany formScalarWhereInput | formScalarWhereInput[] No

formUncheckedUpdateManyWithoutCategoryNestedInput

Name Type Nullable
create formCreateWithoutCategoryInput | formCreateWithoutCategoryInput[] | formUncheckedCreateWithoutCategoryInput | formUncheckedCreateWithoutCategoryInput[] No
connectOrCreate formCreateOrConnectWithoutCategoryInput | formCreateOrConnectWithoutCategoryInput[] No
upsert formUpsertWithWhereUniqueWithoutCategoryInput | formUpsertWithWhereUniqueWithoutCategoryInput[] No
createMany formCreateManyCategoryInputEnvelope No
set formWhereUniqueInput | formWhereUniqueInput[] No
disconnect formWhereUniqueInput | formWhereUniqueInput[] No
delete formWhereUniqueInput | formWhereUniqueInput[] No
connect formWhereUniqueInput | formWhereUniqueInput[] No
update formUpdateWithWhereUniqueWithoutCategoryInput | formUpdateWithWhereUniqueWithoutCategoryInput[] No
updateMany formUpdateManyWithWhereWithoutCategoryInput | formUpdateManyWithWhereWithoutCategoryInput[] No
deleteMany formScalarWhereInput | formScalarWhereInput[] No

userCreateNestedOneWithoutFormInput

Name Type Nullable
create userCreateWithoutFormInput | userUncheckedCreateWithoutFormInput No
connectOrCreate userCreateOrConnectWithoutFormInput No
connect userWhereUniqueInput No

categoryCreateNestedOneWithoutFormInput

Name Type Nullable
create categoryCreateWithoutFormInput | categoryUncheckedCreateWithoutFormInput No
connectOrCreate categoryCreateOrConnectWithoutFormInput No
connect categoryWhereUniqueInput No

NullableStringFieldUpdateOperationsInput

Name Type Nullable
set String | Null Yes



NullableIntFieldUpdateOperationsInput

Name Type Nullable
set Int | Null Yes
increment Int No
decrement Int No
multiply Int No
divide Int No

userCreateNestedOneWithoutMessagesInput

Name Type Nullable
create userCreateWithoutMessagesInput | userUncheckedCreateWithoutMessagesInput No
connectOrCreate userCreateOrConnectWithoutMessagesInput No
connect userWhereUniqueInput No

roomCreateNestedOneWithoutMessagesInput

Name Type Nullable
create roomCreateWithoutMessagesInput | roomUncheckedCreateWithoutMessagesInput No
connectOrCreate roomCreateOrConnectWithoutMessagesInput No
connect roomWhereUniqueInput No







userRoomsUpdateManyWithoutRoomNestedInput

Name Type Nullable
create userRoomsCreateWithoutRoomInput | userRoomsCreateWithoutRoomInput[] | userRoomsUncheckedCreateWithoutRoomInput | userRoomsUncheckedCreateWithoutRoomInput[] No
connectOrCreate userRoomsCreateOrConnectWithoutRoomInput | userRoomsCreateOrConnectWithoutRoomInput[] No
upsert userRoomsUpsertWithWhereUniqueWithoutRoomInput | userRoomsUpsertWithWhereUniqueWithoutRoomInput[] No
createMany userRoomsCreateManyRoomInputEnvelope No
set userRoomsWhereUniqueInput | userRoomsWhereUniqueInput[] No
disconnect userRoomsWhereUniqueInput | userRoomsWhereUniqueInput[] No
delete userRoomsWhereUniqueInput | userRoomsWhereUniqueInput[] No
connect userRoomsWhereUniqueInput | userRoomsWhereUniqueInput[] No
update userRoomsUpdateWithWhereUniqueWithoutRoomInput | userRoomsUpdateWithWhereUniqueWithoutRoomInput[] No
updateMany userRoomsUpdateManyWithWhereWithoutRoomInput | userRoomsUpdateManyWithWhereWithoutRoomInput[] No
deleteMany userRoomsScalarWhereInput | userRoomsScalarWhereInput[] No

messageUpdateManyWithoutRoomNestedInput

Name Type Nullable
create messageCreateWithoutRoomInput | messageCreateWithoutRoomInput[] | messageUncheckedCreateWithoutRoomInput | messageUncheckedCreateWithoutRoomInput[] No
connectOrCreate messageCreateOrConnectWithoutRoomInput | messageCreateOrConnectWithoutRoomInput[] No
upsert messageUpsertWithWhereUniqueWithoutRoomInput | messageUpsertWithWhereUniqueWithoutRoomInput[] No
createMany messageCreateManyRoomInputEnvelope No
set messageWhereUniqueInput | messageWhereUniqueInput[] No
disconnect messageWhereUniqueInput | messageWhereUniqueInput[] No
delete messageWhereUniqueInput | messageWhereUniqueInput[] No
connect messageWhereUniqueInput | messageWhereUniqueInput[] No
update messageUpdateWithWhereUniqueWithoutRoomInput | messageUpdateWithWhereUniqueWithoutRoomInput[] No
updateMany messageUpdateManyWithWhereWithoutRoomInput | messageUpdateManyWithWhereWithoutRoomInput[] No
deleteMany messageScalarWhereInput | messageScalarWhereInput[] No

userRoomsUncheckedUpdateManyWithoutRoomNestedInput

Name Type Nullable
create userRoomsCreateWithoutRoomInput | userRoomsCreateWithoutRoomInput[] | userRoomsUncheckedCreateWithoutRoomInput | userRoomsUncheckedCreateWithoutRoomInput[] No
connectOrCreate userRoomsCreateOrConnectWithoutRoomInput | userRoomsCreateOrConnectWithoutRoomInput[] No
upsert userRoomsUpsertWithWhereUniqueWithoutRoomInput | userRoomsUpsertWithWhereUniqueWithoutRoomInput[] No
createMany userRoomsCreateManyRoomInputEnvelope No
set userRoomsWhereUniqueInput | userRoomsWhereUniqueInput[] No
disconnect userRoomsWhereUniqueInput | userRoomsWhereUniqueInput[] No
delete userRoomsWhereUniqueInput | userRoomsWhereUniqueInput[] No
connect userRoomsWhereUniqueInput | userRoomsWhereUniqueInput[] No
update userRoomsUpdateWithWhereUniqueWithoutRoomInput | userRoomsUpdateWithWhereUniqueWithoutRoomInput[] No
updateMany userRoomsUpdateManyWithWhereWithoutRoomInput | userRoomsUpdateManyWithWhereWithoutRoomInput[] No
deleteMany userRoomsScalarWhereInput | userRoomsScalarWhereInput[] No

messageUncheckedUpdateManyWithoutRoomNestedInput

Name Type Nullable
create messageCreateWithoutRoomInput | messageCreateWithoutRoomInput[] | messageUncheckedCreateWithoutRoomInput | messageUncheckedCreateWithoutRoomInput[] No
connectOrCreate messageCreateOrConnectWithoutRoomInput | messageCreateOrConnectWithoutRoomInput[] No
upsert messageUpsertWithWhereUniqueWithoutRoomInput | messageUpsertWithWhereUniqueWithoutRoomInput[] No
createMany messageCreateManyRoomInputEnvelope No
set messageWhereUniqueInput | messageWhereUniqueInput[] No
disconnect messageWhereUniqueInput | messageWhereUniqueInput[] No
delete messageWhereUniqueInput | messageWhereUniqueInput[] No
connect messageWhereUniqueInput | messageWhereUniqueInput[] No
update messageUpdateWithWhereUniqueWithoutRoomInput | messageUpdateWithWhereUniqueWithoutRoomInput[] No
updateMany messageUpdateManyWithWhereWithoutRoomInput | messageUpdateManyWithWhereWithoutRoomInput[] No
deleteMany messageScalarWhereInput | messageScalarWhereInput[] No

userCreateNestedOneWithoutRoomsInput

Name Type Nullable
create userCreateWithoutRoomsInput | userUncheckedCreateWithoutRoomsInput No
connectOrCreate userCreateOrConnectWithoutRoomsInput No
connect userWhereUniqueInput No

roomCreateNestedOneWithoutUsersInput

Name Type Nullable
create roomCreateWithoutUsersInput | roomUncheckedCreateWithoutUsersInput No
connectOrCreate roomCreateOrConnectWithoutUsersInput No
connect roomWhereUniqueInput No



NestedIntFilter

Name Type Nullable
equals Int | IntFieldRefInput No
in Int No
notIn Int No
lt Int | IntFieldRefInput No
lte Int | IntFieldRefInput No
gt Int | IntFieldRefInput No
gte Int | IntFieldRefInput No
not Int | NestedIntFilter No

NestedStringFilter

Name Type Nullable
equals String | StringFieldRefInput No
in String No
notIn String No
lt String | StringFieldRefInput No
lte String | StringFieldRefInput No
gt String | StringFieldRefInput No
gte String | StringFieldRefInput No
contains String | StringFieldRefInput No
startsWith String | StringFieldRefInput No
endsWith String | StringFieldRefInput No
not String | NestedStringFilter No

NestedDateTimeFilter

Name Type Nullable
equals DateTime | DateTimeFieldRefInput No
in DateTime No
notIn DateTime No
lt DateTime | DateTimeFieldRefInput No
lte DateTime | DateTimeFieldRefInput No
gt DateTime | DateTimeFieldRefInput No
gte DateTime | DateTimeFieldRefInput No
not DateTime | NestedDateTimeFilter No

NestedIntWithAggregatesFilter

Name Type Nullable
equals Int | IntFieldRefInput No
in Int No
notIn Int No
lt Int | IntFieldRefInput No
lte Int | IntFieldRefInput No
gt Int | IntFieldRefInput No
gte Int | IntFieldRefInput No
not Int | NestedIntWithAggregatesFilter No
_count NestedIntFilter No
_avg NestedFloatFilter No
_sum NestedIntFilter No
_min NestedIntFilter No
_max NestedIntFilter No

NestedFloatFilter

Name Type Nullable
equals Float | FloatFieldRefInput No
in Float No
notIn Float No
lt Float | FloatFieldRefInput No
lte Float | FloatFieldRefInput No
gt Float | FloatFieldRefInput No
gte Float | FloatFieldRefInput No
not Float | NestedFloatFilter No

NestedStringWithAggregatesFilter

Name Type Nullable
equals String | StringFieldRefInput No
in String No
notIn String No
lt String | StringFieldRefInput No
lte String | StringFieldRefInput No
gt String | StringFieldRefInput No
gte String | StringFieldRefInput No
contains String | StringFieldRefInput No
startsWith String | StringFieldRefInput No
endsWith String | StringFieldRefInput No
not String | NestedStringWithAggregatesFilter No
_count NestedIntFilter No
_min NestedStringFilter No
_max NestedStringFilter No

NestedDateTimeWithAggregatesFilter

Name Type Nullable
equals DateTime | DateTimeFieldRefInput No
in DateTime No
notIn DateTime No
lt DateTime | DateTimeFieldRefInput No
lte DateTime | DateTimeFieldRefInput No
gt DateTime | DateTimeFieldRefInput No
gte DateTime | DateTimeFieldRefInput No
not DateTime | NestedDateTimeWithAggregatesFilter No
_count NestedIntFilter No
_min NestedDateTimeFilter No
_max NestedDateTimeFilter No

NestedStringNullableFilter

Name Type Nullable
equals String | StringFieldRefInput | Null Yes
in String | Null Yes
notIn String | Null Yes
lt String | StringFieldRefInput No
lte String | StringFieldRefInput No
gt String | StringFieldRefInput No
gte String | StringFieldRefInput No
contains String | StringFieldRefInput No
startsWith String | StringFieldRefInput No
endsWith String | StringFieldRefInput No
not String | NestedStringNullableFilter | Null Yes

NestedIntNullableFilter

Name Type Nullable
equals Int | IntFieldRefInput | Null Yes
in Int | Null Yes
notIn Int | Null Yes
lt Int | IntFieldRefInput No
lte Int | IntFieldRefInput No
gt Int | IntFieldRefInput No
gte Int | IntFieldRefInput No
not Int | NestedIntNullableFilter | Null Yes

NestedStringNullableWithAggregatesFilter

Name Type Nullable
equals String | StringFieldRefInput | Null Yes
in String | Null Yes
notIn String | Null Yes
lt String | StringFieldRefInput No
lte String | StringFieldRefInput No
gt String | StringFieldRefInput No
gte String | StringFieldRefInput No
contains String | StringFieldRefInput No
startsWith String | StringFieldRefInput No
endsWith String | StringFieldRefInput No
not String | NestedStringNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedStringNullableFilter No
_max NestedStringNullableFilter No

NestedIntNullableWithAggregatesFilter

Name Type Nullable
equals Int | IntFieldRefInput | Null Yes
in Int | Null Yes
notIn Int | Null Yes
lt Int | IntFieldRefInput No
lte Int | IntFieldRefInput No
gt Int | IntFieldRefInput No
gte Int | IntFieldRefInput No
not Int | NestedIntNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_avg NestedFloatNullableFilter No
_sum NestedIntNullableFilter No
_min NestedIntNullableFilter No
_max NestedIntNullableFilter No

NestedFloatNullableFilter

Name Type Nullable
equals Float | FloatFieldRefInput | Null Yes
in Float | Null Yes
notIn Float | Null Yes
lt Float | FloatFieldRefInput No
lte Float | FloatFieldRefInput No
gt Float | FloatFieldRefInput No
gte Float | FloatFieldRefInput No
not Float | NestedFloatNullableFilter | Null Yes

userCreateWithoutArticlesInput

Name Type Nullable
name String No
password String No
createAt DateTime No
updateAt DateTime No
role roleCreateNestedOneWithoutUsersInput No
form formCreateNestedManyWithoutAuthorInput No
messages messageCreateNestedManyWithoutUserInput No
rooms userRoomsCreateNestedManyWithoutUserInput No

userUncheckedCreateWithoutArticlesInput

Name Type Nullable
id Int No
name String No
password String No
roleId Int No
createAt DateTime No
updateAt DateTime No
form formUncheckedCreateNestedManyWithoutAuthorInput No
messages messageUncheckedCreateNestedManyWithoutUserInput No
rooms userRoomsUncheckedCreateNestedManyWithoutUserInput No

userCreateOrConnectWithoutArticlesInput

Name Type Nullable
where userWhereUniqueInput No
create userCreateWithoutArticlesInput | userUncheckedCreateWithoutArticlesInput No


userUpdateToOneWithWhereWithoutArticlesInput

Name Type Nullable
where userWhereInput No
data userUpdateWithoutArticlesInput | userUncheckedUpdateWithoutArticlesInput No



articleCreateWithoutAuthorInput

Name Type Nullable
url String No
osskey String No
title String No
createAt DateTime No
updateAt DateTime No

articleUncheckedCreateWithoutAuthorInput

Name Type Nullable
id Int No
url String No
osskey String No
title String No
createAt DateTime No
updateAt DateTime No

articleCreateOrConnectWithoutAuthorInput

Name Type Nullable
where articleWhereUniqueInput No
create articleCreateWithoutAuthorInput | articleUncheckedCreateWithoutAuthorInput No

articleCreateManyAuthorInputEnvelope

Name Type Nullable
data articleCreateManyAuthorInput | articleCreateManyAuthorInput[] No
skipDuplicates Boolean No

roleCreateWithoutUsersInput

Name Type Nullable
name String No
code String No
createAt DateTime No
updateAt DateTime No

roleUncheckedCreateWithoutUsersInput

Name Type Nullable
id Int No
name String No
code String No
createAt DateTime No
updateAt DateTime No

roleCreateOrConnectWithoutUsersInput

Name Type Nullable
where roleWhereUniqueInput No
create roleCreateWithoutUsersInput | roleUncheckedCreateWithoutUsersInput No

formCreateWithoutAuthorInput

Name Type Nullable
id String No
name String No
config String No
extConfig String | Null Yes
createAt DateTime No
updateAt DateTime No
versionId String No
category categoryCreateNestedOneWithoutFormInput No

formUncheckedCreateWithoutAuthorInput

Name Type Nullable
id String No
name String No
config String No
extConfig String | Null Yes
categoryId Int | Null Yes
createAt DateTime No
updateAt DateTime No
versionId String No

formCreateOrConnectWithoutAuthorInput

Name Type Nullable
where formWhereUniqueInput No
create formCreateWithoutAuthorInput | formUncheckedCreateWithoutAuthorInput No

formCreateManyAuthorInputEnvelope

Name Type Nullable
data formCreateManyAuthorInput | formCreateManyAuthorInput[] No
skipDuplicates Boolean No

messageCreateWithoutUserInput

Name Type Nullable
message String | Null Yes
createAt DateTime No
updateAt DateTime No
system Int No
room roomCreateNestedOneWithoutMessagesInput No

messageUncheckedCreateWithoutUserInput

Name Type Nullable
id Int No
message String | Null Yes
roomId Int No
createAt DateTime No
updateAt DateTime No
system Int No

messageCreateOrConnectWithoutUserInput

Name Type Nullable
where messageWhereUniqueInput No
create messageCreateWithoutUserInput | messageUncheckedCreateWithoutUserInput No

messageCreateManyUserInputEnvelope

Name Type Nullable
data messageCreateManyUserInput | messageCreateManyUserInput[] No
skipDuplicates Boolean No

userRoomsCreateWithoutUserInput

Name Type Nullable
createAt DateTime No
updateAt DateTime No
room roomCreateNestedOneWithoutUsersInput No

userRoomsUncheckedCreateWithoutUserInput

Name Type Nullable
roomId Int No
createAt DateTime No
updateAt DateTime No

userRoomsCreateOrConnectWithoutUserInput

Name Type Nullable
where userRoomsWhereUniqueInput No
create userRoomsCreateWithoutUserInput | userRoomsUncheckedCreateWithoutUserInput No

userRoomsCreateManyUserInputEnvelope

Name Type Nullable
data userRoomsCreateManyUserInput | userRoomsCreateManyUserInput[] No
skipDuplicates Boolean No


articleUpdateWithWhereUniqueWithoutAuthorInput

Name Type Nullable
where articleWhereUniqueInput No
data articleUpdateWithoutAuthorInput | articleUncheckedUpdateWithoutAuthorInput No

articleUpdateManyWithWhereWithoutAuthorInput

Name Type Nullable
where articleScalarWhereInput No
data articleUpdateManyMutationInput | articleUncheckedUpdateManyWithoutAuthorInput No

articleScalarWhereInput

Name Type Nullable
AND articleScalarWhereInput | articleScalarWhereInput[] No
OR articleScalarWhereInput[] No
NOT articleScalarWhereInput | articleScalarWhereInput[] No
id IntFilter | Int No
url StringFilter | String No
osskey StringFilter | String No
title StringFilter | String No
authorId IntFilter | Int No
createAt DateTimeFilter | DateTime No
updateAt DateTimeFilter | DateTime No


roleUpdateToOneWithWhereWithoutUsersInput

Name Type Nullable
where roleWhereInput No
data roleUpdateWithoutUsersInput | roleUncheckedUpdateWithoutUsersInput No

roleUpdateWithoutUsersInput

Name Type Nullable
name String | StringFieldUpdateOperationsInput No
code String | StringFieldUpdateOperationsInput No
createAt DateTime | DateTimeFieldUpdateOperationsInput No
updateAt DateTime | DateTimeFieldUpdateOperationsInput No

roleUncheckedUpdateWithoutUsersInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
code String | StringFieldUpdateOperationsInput No
createAt DateTime | DateTimeFieldUpdateOperationsInput No
updateAt DateTime | DateTimeFieldUpdateOperationsInput No

formUpsertWithWhereUniqueWithoutAuthorInput

Name Type Nullable
where formWhereUniqueInput No
update formUpdateWithoutAuthorInput | formUncheckedUpdateWithoutAuthorInput No
create formCreateWithoutAuthorInput | formUncheckedCreateWithoutAuthorInput No

formUpdateWithWhereUniqueWithoutAuthorInput

Name Type Nullable
where formWhereUniqueInput No
data formUpdateWithoutAuthorInput | formUncheckedUpdateWithoutAuthorInput No

formUpdateManyWithWhereWithoutAuthorInput

Name Type Nullable
where formScalarWhereInput No
data formUpdateManyMutationInput | formUncheckedUpdateManyWithoutAuthorInput No

formScalarWhereInput

Name Type Nullable
AND formScalarWhereInput | formScalarWhereInput[] No
OR formScalarWhereInput[] No
NOT formScalarWhereInput | formScalarWhereInput[] No
id StringFilter | String No
name StringFilter | String No
config StringFilter | String No
extConfig StringNullableFilter | String | Null Yes
authorId IntFilter | Int No
categoryId IntNullableFilter | Int | Null Yes
createAt DateTimeFilter | DateTime No
updateAt DateTimeFilter | DateTime No
versionId StringFilter | String No


messageUpdateWithWhereUniqueWithoutUserInput

Name Type Nullable
where messageWhereUniqueInput No
data messageUpdateWithoutUserInput | messageUncheckedUpdateWithoutUserInput No

messageUpdateManyWithWhereWithoutUserInput

Name Type Nullable
where messageScalarWhereInput No
data messageUpdateManyMutationInput | messageUncheckedUpdateManyWithoutUserInput No

messageScalarWhereInput

Name Type Nullable
AND messageScalarWhereInput | messageScalarWhereInput[] No
OR messageScalarWhereInput[] No
NOT messageScalarWhereInput | messageScalarWhereInput[] No
id IntFilter | Int No
message StringNullableFilter | String | Null Yes
userId IntNullableFilter | Int | Null Yes
roomId IntFilter | Int No
createAt DateTimeFilter | DateTime No
updateAt DateTimeFilter | DateTime No
system IntFilter | Int No


userRoomsUpdateWithWhereUniqueWithoutUserInput

Name Type Nullable
where userRoomsWhereUniqueInput No
data userRoomsUpdateWithoutUserInput | userRoomsUncheckedUpdateWithoutUserInput No

userRoomsUpdateManyWithWhereWithoutUserInput

Name Type Nullable
where userRoomsScalarWhereInput No
data userRoomsUpdateManyMutationInput | userRoomsUncheckedUpdateManyWithoutUserInput No

userRoomsScalarWhereInput

Name Type Nullable
AND userRoomsScalarWhereInput | userRoomsScalarWhereInput[] No
OR userRoomsScalarWhereInput[] No
NOT userRoomsScalarWhereInput | userRoomsScalarWhereInput[] No
userId IntFilter | Int No
roomId IntFilter | Int No
createAt DateTimeFilter | DateTime No
updateAt DateTimeFilter | DateTime No

userCreateWithoutRoleInput

Name Type Nullable
name String No
password String No
createAt DateTime No
updateAt DateTime No
articles articleCreateNestedManyWithoutAuthorInput No
form formCreateNestedManyWithoutAuthorInput No
messages messageCreateNestedManyWithoutUserInput No
rooms userRoomsCreateNestedManyWithoutUserInput No

userUncheckedCreateWithoutRoleInput

Name Type Nullable
id Int No
name String No
password String No
createAt DateTime No
updateAt DateTime No
articles articleUncheckedCreateNestedManyWithoutAuthorInput No
form formUncheckedCreateNestedManyWithoutAuthorInput No
messages messageUncheckedCreateNestedManyWithoutUserInput No
rooms userRoomsUncheckedCreateNestedManyWithoutUserInput No

userCreateOrConnectWithoutRoleInput

Name Type Nullable
where userWhereUniqueInput No
create userCreateWithoutRoleInput | userUncheckedCreateWithoutRoleInput No

userCreateManyRoleInputEnvelope

Name Type Nullable
data userCreateManyRoleInput | userCreateManyRoleInput[] No
skipDuplicates Boolean No

userUpsertWithWhereUniqueWithoutRoleInput

Name Type Nullable
where userWhereUniqueInput No
update userUpdateWithoutRoleInput | userUncheckedUpdateWithoutRoleInput No
create userCreateWithoutRoleInput | userUncheckedCreateWithoutRoleInput No

userUpdateWithWhereUniqueWithoutRoleInput

Name Type Nullable
where userWhereUniqueInput No
data userUpdateWithoutRoleInput | userUncheckedUpdateWithoutRoleInput No

userUpdateManyWithWhereWithoutRoleInput

Name Type Nullable
where userScalarWhereInput No
data userUpdateManyMutationInput | userUncheckedUpdateManyWithoutRoleInput No

userScalarWhereInput

Name Type Nullable
AND userScalarWhereInput | userScalarWhereInput[] No
OR userScalarWhereInput[] No
NOT userScalarWhereInput | userScalarWhereInput[] No
id IntFilter | Int No
name StringFilter | String No
password StringFilter | String No
roleId IntFilter | Int No
createAt DateTimeFilter | DateTime No
updateAt DateTimeFilter | DateTime No

formCreateWithoutCategoryInput

Name Type Nullable
id String No
name String No
config String No
extConfig String | Null Yes
createAt DateTime No
updateAt DateTime No
versionId String No
author userCreateNestedOneWithoutFormInput No

formUncheckedCreateWithoutCategoryInput

Name Type Nullable
id String No
name String No
config String No
extConfig String | Null Yes
authorId Int No
createAt DateTime No
updateAt DateTime No
versionId String No

formCreateOrConnectWithoutCategoryInput

Name Type Nullable
where formWhereUniqueInput No
create formCreateWithoutCategoryInput | formUncheckedCreateWithoutCategoryInput No

formCreateManyCategoryInputEnvelope

Name Type Nullable
data formCreateManyCategoryInput | formCreateManyCategoryInput[] No
skipDuplicates Boolean No


formUpdateWithWhereUniqueWithoutCategoryInput

Name Type Nullable
where formWhereUniqueInput No
data formUpdateWithoutCategoryInput | formUncheckedUpdateWithoutCategoryInput No

formUpdateManyWithWhereWithoutCategoryInput

Name Type Nullable
where formScalarWhereInput No
data formUpdateManyMutationInput | formUncheckedUpdateManyWithoutCategoryInput No

userCreateWithoutFormInput

Name Type Nullable
name String No
password String No
createAt DateTime No
updateAt DateTime No
articles articleCreateNestedManyWithoutAuthorInput No
role roleCreateNestedOneWithoutUsersInput No
messages messageCreateNestedManyWithoutUserInput No
rooms userRoomsCreateNestedManyWithoutUserInput No

userUncheckedCreateWithoutFormInput

Name Type Nullable
id Int No
name String No
password String No
roleId Int No
createAt DateTime No
updateAt DateTime No
articles articleUncheckedCreateNestedManyWithoutAuthorInput No
messages messageUncheckedCreateNestedManyWithoutUserInput No
rooms userRoomsUncheckedCreateNestedManyWithoutUserInput No

userCreateOrConnectWithoutFormInput

Name Type Nullable
where userWhereUniqueInput No
create userCreateWithoutFormInput | userUncheckedCreateWithoutFormInput No

categoryCreateWithoutFormInput

Name Type Nullable
code String No
name String No
createAt DateTime No
updateAt DateTime No

categoryUncheckedCreateWithoutFormInput

Name Type Nullable
id Int No
code String No
name String No
createAt DateTime No
updateAt DateTime No

categoryCreateOrConnectWithoutFormInput

Name Type Nullable
where categoryWhereUniqueInput No
create categoryCreateWithoutFormInput | categoryUncheckedCreateWithoutFormInput No


userUpdateToOneWithWhereWithoutFormInput

Name Type Nullable
where userWhereInput No
data userUpdateWithoutFormInput | userUncheckedUpdateWithoutFormInput No




categoryUpdateToOneWithWhereWithoutFormInput

Name Type Nullable
where categoryWhereInput No
data categoryUpdateWithoutFormInput | categoryUncheckedUpdateWithoutFormInput No

categoryUpdateWithoutFormInput

Name Type Nullable
code String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
createAt DateTime | DateTimeFieldUpdateOperationsInput No
updateAt DateTime | DateTimeFieldUpdateOperationsInput No

categoryUncheckedUpdateWithoutFormInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
code String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
createAt DateTime | DateTimeFieldUpdateOperationsInput No
updateAt DateTime | DateTimeFieldUpdateOperationsInput No

userCreateWithoutMessagesInput

Name Type Nullable
name String No
password String No
createAt DateTime No
updateAt DateTime No
articles articleCreateNestedManyWithoutAuthorInput No
role roleCreateNestedOneWithoutUsersInput No
form formCreateNestedManyWithoutAuthorInput No
rooms userRoomsCreateNestedManyWithoutUserInput No

userUncheckedCreateWithoutMessagesInput

Name Type Nullable
id Int No
name String No
password String No
roleId Int No
createAt DateTime No
updateAt DateTime No
articles articleUncheckedCreateNestedManyWithoutAuthorInput No
form formUncheckedCreateNestedManyWithoutAuthorInput No
rooms userRoomsUncheckedCreateNestedManyWithoutUserInput No

userCreateOrConnectWithoutMessagesInput

Name Type Nullable
where userWhereUniqueInput No
create userCreateWithoutMessagesInput | userUncheckedCreateWithoutMessagesInput No

roomCreateWithoutMessagesInput

Name Type Nullable
muiltple Int No
name String No
createAt DateTime No
updateAt DateTime No
users userRoomsCreateNestedManyWithoutRoomInput No

roomUncheckedCreateWithoutMessagesInput

Name Type Nullable
id Int No
muiltple Int No
name String No
createAt DateTime No
updateAt DateTime No
users userRoomsUncheckedCreateNestedManyWithoutRoomInput No

roomCreateOrConnectWithoutMessagesInput

Name Type Nullable
where roomWhereUniqueInput No
create roomCreateWithoutMessagesInput | roomUncheckedCreateWithoutMessagesInput No


userUpdateToOneWithWhereWithoutMessagesInput

Name Type Nullable
where userWhereInput No
data userUpdateWithoutMessagesInput | userUncheckedUpdateWithoutMessagesInput No




roomUpdateToOneWithWhereWithoutMessagesInput

Name Type Nullable
where roomWhereInput No
data roomUpdateWithoutMessagesInput | roomUncheckedUpdateWithoutMessagesInput No

roomUpdateWithoutMessagesInput

Name Type Nullable
muiltple Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
createAt DateTime | DateTimeFieldUpdateOperationsInput No
updateAt DateTime | DateTimeFieldUpdateOperationsInput No
users userRoomsUpdateManyWithoutRoomNestedInput No

roomUncheckedUpdateWithoutMessagesInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
muiltple Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
createAt DateTime | DateTimeFieldUpdateOperationsInput No
updateAt DateTime | DateTimeFieldUpdateOperationsInput No
users userRoomsUncheckedUpdateManyWithoutRoomNestedInput No

userRoomsCreateWithoutRoomInput

Name Type Nullable
createAt DateTime No
updateAt DateTime No
user userCreateNestedOneWithoutRoomsInput No

userRoomsUncheckedCreateWithoutRoomInput

Name Type Nullable
userId Int No
createAt DateTime No
updateAt DateTime No

userRoomsCreateOrConnectWithoutRoomInput

Name Type Nullable
where userRoomsWhereUniqueInput No
create userRoomsCreateWithoutRoomInput | userRoomsUncheckedCreateWithoutRoomInput No

userRoomsCreateManyRoomInputEnvelope

Name Type Nullable
data userRoomsCreateManyRoomInput | userRoomsCreateManyRoomInput[] No
skipDuplicates Boolean No

messageCreateWithoutRoomInput

Name Type Nullable
message String | Null Yes
createAt DateTime No
updateAt DateTime No
system Int No
user userCreateNestedOneWithoutMessagesInput No

messageUncheckedCreateWithoutRoomInput

Name Type Nullable
id Int No
message String | Null Yes
userId Int | Null Yes
createAt DateTime No
updateAt DateTime No
system Int No

messageCreateOrConnectWithoutRoomInput

Name Type Nullable
where messageWhereUniqueInput No
create messageCreateWithoutRoomInput | messageUncheckedCreateWithoutRoomInput No

messageCreateManyRoomInputEnvelope

Name Type Nullable
data messageCreateManyRoomInput | messageCreateManyRoomInput[] No
skipDuplicates Boolean No


userRoomsUpdateWithWhereUniqueWithoutRoomInput

Name Type Nullable
where userRoomsWhereUniqueInput No
data userRoomsUpdateWithoutRoomInput | userRoomsUncheckedUpdateWithoutRoomInput No

userRoomsUpdateManyWithWhereWithoutRoomInput

Name Type Nullable
where userRoomsScalarWhereInput No
data userRoomsUpdateManyMutationInput | userRoomsUncheckedUpdateManyWithoutRoomInput No


messageUpdateWithWhereUniqueWithoutRoomInput

Name Type Nullable
where messageWhereUniqueInput No
data messageUpdateWithoutRoomInput | messageUncheckedUpdateWithoutRoomInput No

messageUpdateManyWithWhereWithoutRoomInput

Name Type Nullable
where messageScalarWhereInput No
data messageUpdateManyMutationInput | messageUncheckedUpdateManyWithoutRoomInput No

userCreateWithoutRoomsInput

Name Type Nullable
name String No
password String No
createAt DateTime No
updateAt DateTime No
articles articleCreateNestedManyWithoutAuthorInput No
role roleCreateNestedOneWithoutUsersInput No
form formCreateNestedManyWithoutAuthorInput No
messages messageCreateNestedManyWithoutUserInput No

userUncheckedCreateWithoutRoomsInput

Name Type Nullable
id Int No
name String No
password String No
roleId Int No
createAt DateTime No
updateAt DateTime No
articles articleUncheckedCreateNestedManyWithoutAuthorInput No
form formUncheckedCreateNestedManyWithoutAuthorInput No
messages messageUncheckedCreateNestedManyWithoutUserInput No

userCreateOrConnectWithoutRoomsInput

Name Type Nullable
where userWhereUniqueInput No
create userCreateWithoutRoomsInput | userUncheckedCreateWithoutRoomsInput No

roomCreateWithoutUsersInput

Name Type Nullable
muiltple Int No
name String No
createAt DateTime No
updateAt DateTime No
messages messageCreateNestedManyWithoutRoomInput No

roomUncheckedCreateWithoutUsersInput

Name Type Nullable
id Int No
muiltple Int No
name String No
createAt DateTime No
updateAt DateTime No
messages messageUncheckedCreateNestedManyWithoutRoomInput No

roomCreateOrConnectWithoutUsersInput

Name Type Nullable
where roomWhereUniqueInput No
create roomCreateWithoutUsersInput | roomUncheckedCreateWithoutUsersInput No


userUpdateToOneWithWhereWithoutRoomsInput

Name Type Nullable
where userWhereInput No
data userUpdateWithoutRoomsInput | userUncheckedUpdateWithoutRoomsInput No




roomUpdateToOneWithWhereWithoutUsersInput

Name Type Nullable
where roomWhereInput No
data roomUpdateWithoutUsersInput | roomUncheckedUpdateWithoutUsersInput No

roomUpdateWithoutUsersInput

Name Type Nullable
muiltple Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
createAt DateTime | DateTimeFieldUpdateOperationsInput No
updateAt DateTime | DateTimeFieldUpdateOperationsInput No
messages messageUpdateManyWithoutRoomNestedInput No

roomUncheckedUpdateWithoutUsersInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
muiltple Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
createAt DateTime | DateTimeFieldUpdateOperationsInput No
updateAt DateTime | DateTimeFieldUpdateOperationsInput No
messages messageUncheckedUpdateManyWithoutRoomNestedInput No

articleCreateManyAuthorInput

Name Type Nullable
id Int No
url String No
osskey String No
title String No
createAt DateTime No
updateAt DateTime No

formCreateManyAuthorInput

Name Type Nullable
id String No
name String No
config String No
extConfig String | Null Yes
categoryId Int | Null Yes
createAt DateTime No
updateAt DateTime No
versionId String No

messageCreateManyUserInput

Name Type Nullable
id Int No
message String | Null Yes
roomId Int No
createAt DateTime No
updateAt DateTime No
system Int No

userRoomsCreateManyUserInput

Name Type Nullable
roomId Int No
createAt DateTime No
updateAt DateTime No

articleUpdateWithoutAuthorInput

Name Type Nullable
url String | StringFieldUpdateOperationsInput No
osskey String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
createAt DateTime | DateTimeFieldUpdateOperationsInput No
updateAt DateTime | DateTimeFieldUpdateOperationsInput No

articleUncheckedUpdateWithoutAuthorInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
url String | StringFieldUpdateOperationsInput No
osskey String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
createAt DateTime | DateTimeFieldUpdateOperationsInput No
updateAt DateTime | DateTimeFieldUpdateOperationsInput No

articleUncheckedUpdateManyWithoutAuthorInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
url String | StringFieldUpdateOperationsInput No
osskey String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
createAt DateTime | DateTimeFieldUpdateOperationsInput No
updateAt DateTime | DateTimeFieldUpdateOperationsInput No

formUpdateWithoutAuthorInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
config String | StringFieldUpdateOperationsInput No
extConfig String | NullableStringFieldUpdateOperationsInput | Null Yes
createAt DateTime | DateTimeFieldUpdateOperationsInput No
updateAt DateTime | DateTimeFieldUpdateOperationsInput No
versionId String | StringFieldUpdateOperationsInput No
category categoryUpdateOneWithoutFormNestedInput No

formUncheckedUpdateWithoutAuthorInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
config String | StringFieldUpdateOperationsInput No
extConfig String | NullableStringFieldUpdateOperationsInput | Null Yes
categoryId Int | NullableIntFieldUpdateOperationsInput | Null Yes
createAt DateTime | DateTimeFieldUpdateOperationsInput No
updateAt DateTime | DateTimeFieldUpdateOperationsInput No
versionId String | StringFieldUpdateOperationsInput No

formUncheckedUpdateManyWithoutAuthorInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
config String | StringFieldUpdateOperationsInput No
extConfig String | NullableStringFieldUpdateOperationsInput | Null Yes
categoryId Int | NullableIntFieldUpdateOperationsInput | Null Yes
createAt DateTime | DateTimeFieldUpdateOperationsInput No
updateAt DateTime | DateTimeFieldUpdateOperationsInput No
versionId String | StringFieldUpdateOperationsInput No

messageUpdateWithoutUserInput

Name Type Nullable
message String | NullableStringFieldUpdateOperationsInput | Null Yes
createAt DateTime | DateTimeFieldUpdateOperationsInput No
updateAt DateTime | DateTimeFieldUpdateOperationsInput No
system Int | IntFieldUpdateOperationsInput No
room roomUpdateOneRequiredWithoutMessagesNestedInput No

messageUncheckedUpdateWithoutUserInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
message String | NullableStringFieldUpdateOperationsInput | Null Yes
roomId Int | IntFieldUpdateOperationsInput No
createAt DateTime | DateTimeFieldUpdateOperationsInput No
updateAt DateTime | DateTimeFieldUpdateOperationsInput No
system Int | IntFieldUpdateOperationsInput No

messageUncheckedUpdateManyWithoutUserInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
message String | NullableStringFieldUpdateOperationsInput | Null Yes
roomId Int | IntFieldUpdateOperationsInput No
createAt DateTime | DateTimeFieldUpdateOperationsInput No
updateAt DateTime | DateTimeFieldUpdateOperationsInput No
system Int | IntFieldUpdateOperationsInput No

userRoomsUpdateWithoutUserInput

Name Type Nullable
createAt DateTime | DateTimeFieldUpdateOperationsInput No
updateAt DateTime | DateTimeFieldUpdateOperationsInput No
room roomUpdateOneRequiredWithoutUsersNestedInput No

userRoomsUncheckedUpdateWithoutUserInput

Name Type Nullable
roomId Int | IntFieldUpdateOperationsInput No
createAt DateTime | DateTimeFieldUpdateOperationsInput No
updateAt DateTime | DateTimeFieldUpdateOperationsInput No

userRoomsUncheckedUpdateManyWithoutUserInput

Name Type Nullable
roomId Int | IntFieldUpdateOperationsInput No
createAt DateTime | DateTimeFieldUpdateOperationsInput No
updateAt DateTime | DateTimeFieldUpdateOperationsInput No

userCreateManyRoleInput

Name Type Nullable
id Int No
name String No
password String No
createAt DateTime No
updateAt DateTime No



userUncheckedUpdateManyWithoutRoleInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
password String | StringFieldUpdateOperationsInput No
createAt DateTime | DateTimeFieldUpdateOperationsInput No
updateAt DateTime | DateTimeFieldUpdateOperationsInput No

formCreateManyCategoryInput

Name Type Nullable
id String No
name String No
config String No
extConfig String | Null Yes
authorId Int No
createAt DateTime No
updateAt DateTime No
versionId String No

formUpdateWithoutCategoryInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
config String | StringFieldUpdateOperationsInput No
extConfig String | NullableStringFieldUpdateOperationsInput | Null Yes
createAt DateTime | DateTimeFieldUpdateOperationsInput No
updateAt DateTime | DateTimeFieldUpdateOperationsInput No
versionId String | StringFieldUpdateOperationsInput No
author userUpdateOneRequiredWithoutFormNestedInput No

formUncheckedUpdateWithoutCategoryInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
config String | StringFieldUpdateOperationsInput No
extConfig String | NullableStringFieldUpdateOperationsInput | Null Yes
authorId Int | IntFieldUpdateOperationsInput No
createAt DateTime | DateTimeFieldUpdateOperationsInput No
updateAt DateTime | DateTimeFieldUpdateOperationsInput No
versionId String | StringFieldUpdateOperationsInput No

formUncheckedUpdateManyWithoutCategoryInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
config String | StringFieldUpdateOperationsInput No
extConfig String | NullableStringFieldUpdateOperationsInput | Null Yes
authorId Int | IntFieldUpdateOperationsInput No
createAt DateTime | DateTimeFieldUpdateOperationsInput No
updateAt DateTime | DateTimeFieldUpdateOperationsInput No
versionId String | StringFieldUpdateOperationsInput No

userRoomsCreateManyRoomInput

Name Type Nullable
userId Int No
createAt DateTime No
updateAt DateTime No

messageCreateManyRoomInput

Name Type Nullable
id Int No
message String | Null Yes
userId Int | Null Yes
createAt DateTime No
updateAt DateTime No
system Int No

userRoomsUpdateWithoutRoomInput

Name Type Nullable
createAt DateTime | DateTimeFieldUpdateOperationsInput No
updateAt DateTime | DateTimeFieldUpdateOperationsInput No
user userUpdateOneRequiredWithoutRoomsNestedInput No

userRoomsUncheckedUpdateWithoutRoomInput

Name Type Nullable
userId Int | IntFieldUpdateOperationsInput No
createAt DateTime | DateTimeFieldUpdateOperationsInput No
updateAt DateTime | DateTimeFieldUpdateOperationsInput No

userRoomsUncheckedUpdateManyWithoutRoomInput

Name Type Nullable
userId Int | IntFieldUpdateOperationsInput No
createAt DateTime | DateTimeFieldUpdateOperationsInput No
updateAt DateTime | DateTimeFieldUpdateOperationsInput No

messageUpdateWithoutRoomInput

Name Type Nullable
message String | NullableStringFieldUpdateOperationsInput | Null Yes
createAt DateTime | DateTimeFieldUpdateOperationsInput No
updateAt DateTime | DateTimeFieldUpdateOperationsInput No
system Int | IntFieldUpdateOperationsInput No
user userUpdateOneWithoutMessagesNestedInput No

messageUncheckedUpdateWithoutRoomInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
message String | NullableStringFieldUpdateOperationsInput | Null Yes
userId Int | NullableIntFieldUpdateOperationsInput | Null Yes
createAt DateTime | DateTimeFieldUpdateOperationsInput No
updateAt DateTime | DateTimeFieldUpdateOperationsInput No
system Int | IntFieldUpdateOperationsInput No

messageUncheckedUpdateManyWithoutRoomInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
message String | NullableStringFieldUpdateOperationsInput | Null Yes
userId Int | NullableIntFieldUpdateOperationsInput | Null Yes
createAt DateTime | DateTimeFieldUpdateOperationsInput No
updateAt DateTime | DateTimeFieldUpdateOperationsInput No
system Int | IntFieldUpdateOperationsInput No

Output Types

article

Name Type Nullable
id Int Yes
url String Yes
osskey String Yes
title String Yes
authorId Int Yes
createAt DateTime Yes
updateAt DateTime Yes
author user Yes

user

Name Type Nullable
id Int Yes
name String Yes
password String Yes
roleId Int Yes
createAt DateTime Yes
updateAt DateTime Yes
articles article[] No
role role Yes
form form[] No
messages message[] No
rooms userRooms[] No
_count UserCountOutputType Yes

role

Name Type Nullable
id Int Yes
name String Yes
code String Yes
createAt DateTime Yes
updateAt DateTime Yes
users user[] No
_count RoleCountOutputType Yes

category

Name Type Nullable
id Int Yes
code String Yes
name String Yes
createAt DateTime Yes
updateAt DateTime Yes
form form[] No
_count CategoryCountOutputType Yes

form

Name Type Nullable
id String Yes
name String Yes
config String Yes
extConfig String No
authorId Int Yes
categoryId Int No
createAt DateTime Yes
updateAt DateTime Yes
versionId String Yes
author user Yes
category category No

message

Name Type Nullable
id Int Yes
message String No
userId Int No
roomId Int Yes
createAt DateTime Yes
updateAt DateTime Yes
system Int Yes
user user No
room room Yes

room

Name Type Nullable
id Int Yes
muiltple Int Yes
name String Yes
createAt DateTime Yes
updateAt DateTime Yes
users userRooms[] No
messages message[] No
_count RoomCountOutputType Yes

userRooms

Name Type Nullable
userId Int Yes
roomId Int Yes
createAt DateTime Yes
updateAt DateTime Yes
user user Yes
room room Yes


ArticleGroupByOutputType

Name Type Nullable
id Int Yes
url String Yes
osskey String Yes
title String Yes
authorId Int Yes
createAt DateTime Yes
updateAt DateTime Yes
_count ArticleCountAggregateOutputType No
_avg ArticleAvgAggregateOutputType No
_sum ArticleSumAggregateOutputType No
_min ArticleMinAggregateOutputType No
_max ArticleMaxAggregateOutputType No


UserGroupByOutputType

Name Type Nullable
id Int Yes
name String Yes
password String Yes
roleId Int Yes
createAt DateTime Yes
updateAt DateTime Yes
_count UserCountAggregateOutputType No
_avg UserAvgAggregateOutputType No
_sum UserSumAggregateOutputType No
_min UserMinAggregateOutputType No
_max UserMaxAggregateOutputType No


RoleGroupByOutputType

Name Type Nullable
id Int Yes
name String Yes
code String Yes
createAt DateTime Yes
updateAt DateTime Yes
_count RoleCountAggregateOutputType No
_avg RoleAvgAggregateOutputType No
_sum RoleSumAggregateOutputType No
_min RoleMinAggregateOutputType No
_max RoleMaxAggregateOutputType No


CategoryGroupByOutputType

Name Type Nullable
id Int Yes
code String Yes
name String Yes
createAt DateTime Yes
updateAt DateTime Yes
_count CategoryCountAggregateOutputType No
_avg CategoryAvgAggregateOutputType No
_sum CategorySumAggregateOutputType No
_min CategoryMinAggregateOutputType No
_max CategoryMaxAggregateOutputType No


FormGroupByOutputType

Name Type Nullable
id String Yes
name String Yes
config String Yes
extConfig String No
authorId Int Yes
categoryId Int No
createAt DateTime Yes
updateAt DateTime Yes
versionId String Yes
_count FormCountAggregateOutputType No
_avg FormAvgAggregateOutputType No
_sum FormSumAggregateOutputType No
_min FormMinAggregateOutputType No
_max FormMaxAggregateOutputType No


MessageGroupByOutputType

Name Type Nullable
id Int Yes
message String No
userId Int No
roomId Int Yes
createAt DateTime Yes
updateAt DateTime Yes
system Int Yes
_count MessageCountAggregateOutputType No
_avg MessageAvgAggregateOutputType No
_sum MessageSumAggregateOutputType No
_min MessageMinAggregateOutputType No
_max MessageMaxAggregateOutputType No


RoomGroupByOutputType

Name Type Nullable
id Int Yes
muiltple Int Yes
name String Yes
createAt DateTime Yes
updateAt DateTime Yes
_count RoomCountAggregateOutputType No
_avg RoomAvgAggregateOutputType No
_sum RoomSumAggregateOutputType No
_min RoomMinAggregateOutputType No
_max RoomMaxAggregateOutputType No


UserRoomsGroupByOutputType

Name Type Nullable
userId Int Yes
roomId Int Yes
createAt DateTime Yes
updateAt DateTime Yes
_count UserRoomsCountAggregateOutputType No
_avg UserRoomsAvgAggregateOutputType No
_sum UserRoomsSumAggregateOutputType No
_min UserRoomsMinAggregateOutputType No
_max UserRoomsMaxAggregateOutputType No

AffectedRowsOutput

Name Type Nullable
count Int Yes

ArticleCountAggregateOutputType

Name Type Nullable
id Int Yes
url Int Yes
osskey Int Yes
title Int Yes
authorId Int Yes
createAt Int Yes
updateAt Int Yes
_all Int Yes

ArticleAvgAggregateOutputType

Name Type Nullable
id Float No
authorId Float No

ArticleSumAggregateOutputType

Name Type Nullable
id Int No
authorId Int No

ArticleMinAggregateOutputType

Name Type Nullable
id Int No
url String No
osskey String No
title String No
authorId Int No
createAt DateTime No
updateAt DateTime No

ArticleMaxAggregateOutputType

Name Type Nullable
id Int No
url String No
osskey String No
title String No
authorId Int No
createAt DateTime No
updateAt DateTime No

UserCountOutputType

Name Type Nullable
articles Int Yes
form Int Yes
messages Int Yes
rooms Int Yes

UserCountAggregateOutputType

Name Type Nullable
id Int Yes
name Int Yes
password Int Yes
roleId Int Yes
createAt Int Yes
updateAt Int Yes
_all Int Yes

UserAvgAggregateOutputType

Name Type Nullable
id Float No
roleId Float No

UserSumAggregateOutputType

Name Type Nullable
id Int No
roleId Int No

UserMinAggregateOutputType

Name Type Nullable
id Int No
name String No
password String No
roleId Int No
createAt DateTime No
updateAt DateTime No

UserMaxAggregateOutputType

Name Type Nullable
id Int No
name String No
password String No
roleId Int No
createAt DateTime No
updateAt DateTime No

RoleCountOutputType

Name Type Nullable
users Int Yes

RoleCountAggregateOutputType

Name Type Nullable
id Int Yes
name Int Yes
code Int Yes
createAt Int Yes
updateAt Int Yes
_all Int Yes

RoleAvgAggregateOutputType

Name Type Nullable
id Float No

RoleSumAggregateOutputType

Name Type Nullable
id Int No

RoleMinAggregateOutputType

Name Type Nullable
id Int No
name String No
code String No
createAt DateTime No
updateAt DateTime No

RoleMaxAggregateOutputType

Name Type Nullable
id Int No
name String No
code String No
createAt DateTime No
updateAt DateTime No

CategoryCountOutputType

Name Type Nullable
form Int Yes

CategoryCountAggregateOutputType

Name Type Nullable
id Int Yes
code Int Yes
name Int Yes
createAt Int Yes
updateAt Int Yes
_all Int Yes

CategoryAvgAggregateOutputType

Name Type Nullable
id Float No

CategorySumAggregateOutputType

Name Type Nullable
id Int No

CategoryMinAggregateOutputType

Name Type Nullable
id Int No
code String No
name String No
createAt DateTime No
updateAt DateTime No

CategoryMaxAggregateOutputType

Name Type Nullable
id Int No
code String No
name String No
createAt DateTime No
updateAt DateTime No

FormCountAggregateOutputType

Name Type Nullable
id Int Yes
name Int Yes
config Int Yes
extConfig Int Yes
authorId Int Yes
categoryId Int Yes
createAt Int Yes
updateAt Int Yes
versionId Int Yes
_all Int Yes

FormAvgAggregateOutputType

Name Type Nullable
authorId Float No
categoryId Float No

FormSumAggregateOutputType

Name Type Nullable
authorId Int No
categoryId Int No

FormMinAggregateOutputType

Name Type Nullable
id String No
name String No
config String No
extConfig String No
authorId Int No
categoryId Int No
createAt DateTime No
updateAt DateTime No
versionId String No

FormMaxAggregateOutputType

Name Type Nullable
id String No
name String No
config String No
extConfig String No
authorId Int No
categoryId Int No
createAt DateTime No
updateAt DateTime No
versionId String No

MessageCountAggregateOutputType

Name Type Nullable
id Int Yes
message Int Yes
userId Int Yes
roomId Int Yes
createAt Int Yes
updateAt Int Yes
system Int Yes
_all Int Yes

MessageAvgAggregateOutputType

Name Type Nullable
id Float No
userId Float No
roomId Float No
system Float No

MessageSumAggregateOutputType

Name Type Nullable
id Int No
userId Int No
roomId Int No
system Int No

MessageMinAggregateOutputType

Name Type Nullable
id Int No
message String No
userId Int No
roomId Int No
createAt DateTime No
updateAt DateTime No
system Int No

MessageMaxAggregateOutputType

Name Type Nullable
id Int No
message String No
userId Int No
roomId Int No
createAt DateTime No
updateAt DateTime No
system Int No

RoomCountOutputType

Name Type Nullable
users Int Yes
messages Int Yes

RoomCountAggregateOutputType

Name Type Nullable
id Int Yes
muiltple Int Yes
name Int Yes
createAt Int Yes
updateAt Int Yes
_all Int Yes

RoomAvgAggregateOutputType

Name Type Nullable
id Float No
muiltple Float No

RoomSumAggregateOutputType

Name Type Nullable
id Int No
muiltple Int No

RoomMinAggregateOutputType

Name Type Nullable
id Int No
muiltple Int No
name String No
createAt DateTime No
updateAt DateTime No

RoomMaxAggregateOutputType

Name Type Nullable
id Int No
muiltple Int No
name String No
createAt DateTime No
updateAt DateTime No

UserRoomsCountAggregateOutputType

Name Type Nullable
userId Int Yes
roomId Int Yes
createAt Int Yes
updateAt Int Yes
_all Int Yes

UserRoomsAvgAggregateOutputType

Name Type Nullable
userId Float No
roomId Float No

UserRoomsSumAggregateOutputType

Name Type Nullable
userId Int No
roomId Int No

UserRoomsMinAggregateOutputType

Name Type Nullable
userId Int No
roomId Int No
createAt DateTime No
updateAt DateTime No

UserRoomsMaxAggregateOutputType

Name Type Nullable
userId Int No
roomId Int No
createAt DateTime No
updateAt DateTime No