Name | Type | Attributes | Required | Comment |
---|---|---|---|---|
id | String |
|
Yes | - |
String |
|
Yes | - | |
name | String |
|
Yes | - |
password | String |
|
Yes | - |
createdAt | DateTime |
|
Yes | - |
emailVerified | Boolean |
|
Yes | - |
tokens | Token[] |
|
Yes | - |
Webhook | Webhook[] |
|
Yes | - |
DiscordBotWebhook | DiscordBotWebhook[] |
|
Yes | - |
oAuthUserData | oAuthUserData[] |
|
Yes | - |
Find zero or one User
// Get one User
const user = await prisma.user.findUnique({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | UserWhereUniqueInput | Yes |
Find first User
// Get one User
const user = await prisma.user.findFirst({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | UserWhereInput | No |
orderBy | UserOrderByWithRelationInput[] | UserOrderByWithRelationInput | No |
cursor | UserWhereUniqueInput | No |
take | Int | No |
skip | Int | No |
distinct | UserScalarFieldEnum[] | No |
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 })
Name | Type | Required |
---|---|---|
where | UserWhereInput | No |
orderBy | UserOrderByWithRelationInput[] | UserOrderByWithRelationInput | No |
cursor | UserWhereUniqueInput | No |
take | Int | No |
skip | Int | No |
distinct | UserScalarFieldEnum[] | No |
Create one User
// Create one User
const User = await prisma.user.create({
data: {
// ... data to create a User
}
})
Name | Type | Required |
---|---|---|
data | UserCreateInput | UserUncheckedCreateInput | Yes |
Delete one User
// Delete one User
const User = await prisma.user.delete({
where: {
// ... filter to delete one User
}
})
Name | Type | Required |
---|---|---|
where | UserWhereUniqueInput | Yes |
Update one User
// Update one User
const user = await prisma.user.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
Name | Type | Required |
---|---|---|
data | UserUpdateInput | UserUncheckedUpdateInput | Yes |
where | UserWhereUniqueInput | Yes |
Delete zero or more User
// Delete a few User
const { count } = await prisma.user.deleteMany({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | UserWhereInput | No |
Update zero or one User
const { count } = await prisma.user.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
Name | Type | Required |
---|---|---|
data | UserUpdateManyMutationInput | UserUncheckedUpdateManyInput | Yes |
where | UserWhereInput | No |
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
}
})
Name | Type | Required |
---|---|---|
where | UserWhereUniqueInput | Yes |
create | UserCreateInput | UserUncheckedCreateInput | Yes |
update | UserUpdateInput | UserUncheckedUpdateInput | Yes |
Name | Value |
---|---|
@@unique |
|
@@unique |
|
@@index |
|
@@index |
|
Name | Type | Attributes | Required | Comment |
---|---|---|---|---|
oAuthUserDataId | String |
|
Yes | - |
userId | String |
|
Yes | - |
user | User |
|
Yes | - |
providerUserId | String |
|
Yes | - |
data | Json |
|
Yes | - |
accessToken | String |
|
Yes | - |
refreshToken | String |
|
Yes | - |
oAuthProviderName | String |
|
Yes | - |
oAuthProvider | oAuthProvider |
|
Yes | - |
Find zero or one OAuthUserData
// Get one OAuthUserData
const oAuthUserData = await prisma.oAuthUserData.findUnique({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | oAuthUserDataWhereUniqueInput | Yes |
Find first OAuthUserData
// Get one OAuthUserData
const oAuthUserData = await prisma.oAuthUserData.findFirst({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | oAuthUserDataWhereInput | No |
orderBy | oAuthUserDataOrderByWithRelationInput[] | oAuthUserDataOrderByWithRelationInput | No |
cursor | oAuthUserDataWhereUniqueInput | No |
take | Int | No |
skip | Int | No |
distinct | OAuthUserDataScalarFieldEnum[] | No |
Find zero or more OAuthUserData
// Get all OAuthUserData
const OAuthUserData = await prisma.oAuthUserData.findMany()
// Get first 10 OAuthUserData
const OAuthUserData = await prisma.oAuthUserData.findMany({ take: 10 })
Name | Type | Required |
---|---|---|
where | oAuthUserDataWhereInput | No |
orderBy | oAuthUserDataOrderByWithRelationInput[] | oAuthUserDataOrderByWithRelationInput | No |
cursor | oAuthUserDataWhereUniqueInput | No |
take | Int | No |
skip | Int | No |
distinct | OAuthUserDataScalarFieldEnum[] | No |
Create one OAuthUserData
// Create one OAuthUserData
const OAuthUserData = await prisma.oAuthUserData.create({
data: {
// ... data to create a OAuthUserData
}
})
Name | Type | Required |
---|---|---|
data | oAuthUserDataCreateInput | oAuthUserDataUncheckedCreateInput | Yes |
Delete one OAuthUserData
// Delete one OAuthUserData
const OAuthUserData = await prisma.oAuthUserData.delete({
where: {
// ... filter to delete one OAuthUserData
}
})
Name | Type | Required |
---|---|---|
where | oAuthUserDataWhereUniqueInput | Yes |
Update one OAuthUserData
// Update one OAuthUserData
const oAuthUserData = await prisma.oAuthUserData.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
Name | Type | Required |
---|---|---|
data | oAuthUserDataUpdateInput | oAuthUserDataUncheckedUpdateInput | Yes |
where | oAuthUserDataWhereUniqueInput | Yes |
Delete zero or more OAuthUserData
// Delete a few OAuthUserData
const { count } = await prisma.oAuthUserData.deleteMany({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | oAuthUserDataWhereInput | No |
Update zero or one OAuthUserData
const { count } = await prisma.oAuthUserData.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
Name | Type | Required |
---|---|---|
data | oAuthUserDataUpdateManyMutationInput | oAuthUserDataUncheckedUpdateManyInput | Yes |
where | oAuthUserDataWhereInput | No |
Create or update one OAuthUserData
// Update or create a OAuthUserData
const oAuthUserData = await prisma.oAuthUserData.upsert({
create: {
// ... data to create a OAuthUserData
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the OAuthUserData we want to update
}
})
Name | Type | Required |
---|---|---|
where | oAuthUserDataWhereUniqueInput | Yes |
create | oAuthUserDataCreateInput | oAuthUserDataUncheckedCreateInput | Yes |
update | oAuthUserDataUpdateInput | oAuthUserDataUncheckedUpdateInput | Yes |
Name | Type | Attributes | Required | Comment |
---|---|---|---|---|
oAuthProviderName | String |
|
Yes | - |
serviceName | String? |
|
No | - |
service | Service? |
|
No | - |
data | Json |
|
Yes | - |
oAuthUserData | oAuthUserData[] |
|
Yes | - |
Find zero or one OAuthProvider
// Get one OAuthProvider
const oAuthProvider = await prisma.oAuthProvider.findUnique({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | oAuthProviderWhereUniqueInput | Yes |
Find first OAuthProvider
// Get one OAuthProvider
const oAuthProvider = await prisma.oAuthProvider.findFirst({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | oAuthProviderWhereInput | No |
orderBy | oAuthProviderOrderByWithRelationInput[] | oAuthProviderOrderByWithRelationInput | No |
cursor | oAuthProviderWhereUniqueInput | No |
take | Int | No |
skip | Int | No |
distinct | OAuthProviderScalarFieldEnum[] | No |
Find zero or more OAuthProvider
// Get all OAuthProvider
const OAuthProvider = await prisma.oAuthProvider.findMany()
// Get first 10 OAuthProvider
const OAuthProvider = await prisma.oAuthProvider.findMany({ take: 10 })
Name | Type | Required |
---|---|---|
where | oAuthProviderWhereInput | No |
orderBy | oAuthProviderOrderByWithRelationInput[] | oAuthProviderOrderByWithRelationInput | No |
cursor | oAuthProviderWhereUniqueInput | No |
take | Int | No |
skip | Int | No |
distinct | OAuthProviderScalarFieldEnum[] | No |
Create one OAuthProvider
// Create one OAuthProvider
const OAuthProvider = await prisma.oAuthProvider.create({
data: {
// ... data to create a OAuthProvider
}
})
Name | Type | Required |
---|---|---|
data | oAuthProviderCreateInput | oAuthProviderUncheckedCreateInput | Yes |
Delete one OAuthProvider
// Delete one OAuthProvider
const OAuthProvider = await prisma.oAuthProvider.delete({
where: {
// ... filter to delete one OAuthProvider
}
})
Name | Type | Required |
---|---|---|
where | oAuthProviderWhereUniqueInput | Yes |
Update one OAuthProvider
// Update one OAuthProvider
const oAuthProvider = await prisma.oAuthProvider.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
Name | Type | Required |
---|---|---|
data | oAuthProviderUpdateInput | oAuthProviderUncheckedUpdateInput | Yes |
where | oAuthProviderWhereUniqueInput | Yes |
Delete zero or more OAuthProvider
// Delete a few OAuthProvider
const { count } = await prisma.oAuthProvider.deleteMany({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | oAuthProviderWhereInput | No |
Update zero or one OAuthProvider
const { count } = await prisma.oAuthProvider.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
Name | Type | Required |
---|---|---|
data | oAuthProviderUpdateManyMutationInput | oAuthProviderUncheckedUpdateManyInput | Yes |
where | oAuthProviderWhereInput | No |
Create or update one OAuthProvider
// Update or create a OAuthProvider
const oAuthProvider = await prisma.oAuthProvider.upsert({
create: {
// ... data to create a OAuthProvider
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the OAuthProvider we want to update
}
})
Name | Type | Required |
---|---|---|
where | oAuthProviderWhereUniqueInput | Yes |
create | oAuthProviderCreateInput | oAuthProviderUncheckedCreateInput | Yes |
update | oAuthProviderUpdateInput | oAuthProviderUncheckedUpdateInput | Yes |
Name | Value |
---|---|
@@unique |
|
@@index |
|
Find zero or one Token
// Get one Token
const token = await prisma.token.findUnique({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | TokenWhereUniqueInput | Yes |
Find first Token
// Get one Token
const token = await prisma.token.findFirst({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | TokenWhereInput | No |
orderBy | TokenOrderByWithRelationInput[] | TokenOrderByWithRelationInput | No |
cursor | TokenWhereUniqueInput | No |
take | Int | No |
skip | Int | No |
distinct | TokenScalarFieldEnum[] | No |
Find zero or more Token
// Get all Token
const Token = await prisma.token.findMany()
// Get first 10 Token
const Token = await prisma.token.findMany({ take: 10 })
Name | Type | Required |
---|---|---|
where | TokenWhereInput | No |
orderBy | TokenOrderByWithRelationInput[] | TokenOrderByWithRelationInput | No |
cursor | TokenWhereUniqueInput | No |
take | Int | No |
skip | Int | No |
distinct | TokenScalarFieldEnum[] | No |
Create one Token
// Create one Token
const Token = await prisma.token.create({
data: {
// ... data to create a Token
}
})
Name | Type | Required |
---|---|---|
data | TokenCreateInput | TokenUncheckedCreateInput | Yes |
Delete one Token
// Delete one Token
const Token = await prisma.token.delete({
where: {
// ... filter to delete one Token
}
})
Name | Type | Required |
---|---|---|
where | TokenWhereUniqueInput | Yes |
Update one Token
// Update one Token
const token = await prisma.token.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
Name | Type | Required |
---|---|---|
data | TokenUpdateInput | TokenUncheckedUpdateInput | Yes |
where | TokenWhereUniqueInput | Yes |
Delete zero or more Token
// Delete a few Token
const { count } = await prisma.token.deleteMany({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | TokenWhereInput | No |
Update zero or one Token
const { count } = await prisma.token.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
Name | Type | Required |
---|---|---|
data | TokenUpdateManyMutationInput | TokenUncheckedUpdateManyInput | Yes |
where | TokenWhereInput | No |
Create or update one Token
// Update or create a Token
const token = await prisma.token.upsert({
create: {
// ... data to create a Token
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Token we want to update
}
})
Name | Type | Required |
---|---|---|
where | TokenWhereUniqueInput | Yes |
create | TokenCreateInput | TokenUncheckedCreateInput | Yes |
update | TokenUpdateInput | TokenUncheckedUpdateInput | Yes |
Name | Type | Attributes | Required | Comment |
---|---|---|---|---|
serviceName | String |
|
Yes | - |
React | React[] |
|
Yes | - |
Webhook | Webhook[] |
|
Yes | - |
oAuthProviderName | String? |
|
No | - |
oAuthProvider | oAuthProvider? |
|
No | - |
Reaction | Reaction[] |
|
Yes | - |
Action | Action[] |
|
Yes | - |
Find zero or one Service
// Get one Service
const service = await prisma.service.findUnique({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | ServiceWhereUniqueInput | Yes |
Find first Service
// Get one Service
const service = await prisma.service.findFirst({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | ServiceWhereInput | No |
orderBy | ServiceOrderByWithRelationInput[] | ServiceOrderByWithRelationInput | No |
cursor | ServiceWhereUniqueInput | No |
take | Int | No |
skip | Int | No |
distinct | ServiceScalarFieldEnum[] | No |
Find zero or more Service
// Get all Service
const Service = await prisma.service.findMany()
// Get first 10 Service
const Service = await prisma.service.findMany({ take: 10 })
Name | Type | Required |
---|---|---|
where | ServiceWhereInput | No |
orderBy | ServiceOrderByWithRelationInput[] | ServiceOrderByWithRelationInput | No |
cursor | ServiceWhereUniqueInput | No |
take | Int | No |
skip | Int | No |
distinct | ServiceScalarFieldEnum[] | No |
Create one Service
// Create one Service
const Service = await prisma.service.create({
data: {
// ... data to create a Service
}
})
Name | Type | Required |
---|---|---|
data | ServiceCreateInput | ServiceUncheckedCreateInput | Yes |
Delete one Service
// Delete one Service
const Service = await prisma.service.delete({
where: {
// ... filter to delete one Service
}
})
Name | Type | Required |
---|---|---|
where | ServiceWhereUniqueInput | Yes |
Update one Service
// Update one Service
const service = await prisma.service.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
Name | Type | Required |
---|---|---|
data | ServiceUpdateInput | ServiceUncheckedUpdateInput | Yes |
where | ServiceWhereUniqueInput | Yes |
Delete zero or more Service
// Delete a few Service
const { count } = await prisma.service.deleteMany({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | ServiceWhereInput | No |
Update zero or one Service
const { count } = await prisma.service.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
Name | Type | Required |
---|---|---|
data | ServiceUpdateManyMutationInput | ServiceUncheckedUpdateManyInput | Yes |
where | ServiceWhereInput | No |
Create or update one Service
// Update or create a Service
const service = await prisma.service.upsert({
create: {
// ... data to create a Service
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Service we want to update
}
})
Name | Type | Required |
---|---|---|
where | ServiceWhereUniqueInput | Yes |
create | ServiceCreateInput | ServiceUncheckedCreateInput | Yes |
update | ServiceUpdateInput | ServiceUncheckedUpdateInput | Yes |
Name | Type | Attributes | Required | Comment |
---|---|---|---|---|
webhookId | String |
|
Yes | - |
userId | String |
|
Yes | - |
user | User |
|
Yes | - |
reactionId | Int |
|
Yes | - |
reaction | Reaction |
|
Yes | - |
incomingServiceName | String |
|
Yes | - |
incomingService | Service |
|
Yes | - |
DiscordBotWebhook | DiscordBotWebhook[] |
|
Yes | - |
Find zero or one Webhook
// Get one Webhook
const webhook = await prisma.webhook.findUnique({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | WebhookWhereUniqueInput | Yes |
Find first Webhook
// Get one Webhook
const webhook = await prisma.webhook.findFirst({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | WebhookWhereInput | No |
orderBy | WebhookOrderByWithRelationInput[] | WebhookOrderByWithRelationInput | No |
cursor | WebhookWhereUniqueInput | No |
take | Int | No |
skip | Int | No |
distinct | WebhookScalarFieldEnum[] | No |
Find zero or more Webhook
// Get all Webhook
const Webhook = await prisma.webhook.findMany()
// Get first 10 Webhook
const Webhook = await prisma.webhook.findMany({ take: 10 })
Name | Type | Required |
---|---|---|
where | WebhookWhereInput | No |
orderBy | WebhookOrderByWithRelationInput[] | WebhookOrderByWithRelationInput | No |
cursor | WebhookWhereUniqueInput | No |
take | Int | No |
skip | Int | No |
distinct | WebhookScalarFieldEnum[] | No |
Create one Webhook
// Create one Webhook
const Webhook = await prisma.webhook.create({
data: {
// ... data to create a Webhook
}
})
Name | Type | Required |
---|---|---|
data | WebhookCreateInput | WebhookUncheckedCreateInput | Yes |
Delete one Webhook
// Delete one Webhook
const Webhook = await prisma.webhook.delete({
where: {
// ... filter to delete one Webhook
}
})
Name | Type | Required |
---|---|---|
where | WebhookWhereUniqueInput | Yes |
Update one Webhook
// Update one Webhook
const webhook = await prisma.webhook.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
Name | Type | Required |
---|---|---|
data | WebhookUpdateInput | WebhookUncheckedUpdateInput | Yes |
where | WebhookWhereUniqueInput | Yes |
Delete zero or more Webhook
// Delete a few Webhook
const { count } = await prisma.webhook.deleteMany({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | WebhookWhereInput | No |
Update zero or one Webhook
const { count } = await prisma.webhook.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
Name | Type | Required |
---|---|---|
data | WebhookUpdateManyMutationInput | WebhookUncheckedUpdateManyInput | Yes |
where | WebhookWhereInput | No |
Create or update one Webhook
// Update or create a Webhook
const webhook = await prisma.webhook.upsert({
create: {
// ... data to create a Webhook
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Webhook we want to update
}
})
Name | Type | Required |
---|---|---|
where | WebhookWhereUniqueInput | Yes |
create | WebhookCreateInput | WebhookUncheckedCreateInput | Yes |
update | WebhookUpdateInput | WebhookUncheckedUpdateInput | Yes |
Name | Value |
---|---|
@@id |
|
@@unique |
|
@@index |
|
Name | Type | Attributes | Required | Comment |
---|---|---|---|---|
actionName | String |
|
Yes | - |
serviceName | String |
|
Yes | - |
service | Service |
|
Yes | - |
description | String |
|
Yes | - |
Find zero or one Action
// Get one Action
const action = await prisma.action.findUnique({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | ActionWhereUniqueInput | Yes |
Find first Action
// Get one Action
const action = await prisma.action.findFirst({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | ActionWhereInput | No |
orderBy | ActionOrderByWithRelationInput[] | ActionOrderByWithRelationInput | No |
cursor | ActionWhereUniqueInput | No |
take | Int | No |
skip | Int | No |
distinct | ActionScalarFieldEnum[] | No |
Find zero or more Action
// Get all Action
const Action = await prisma.action.findMany()
// Get first 10 Action
const Action = await prisma.action.findMany({ take: 10 })
Name | Type | Required |
---|---|---|
where | ActionWhereInput | No |
orderBy | ActionOrderByWithRelationInput[] | ActionOrderByWithRelationInput | No |
cursor | ActionWhereUniqueInput | No |
take | Int | No |
skip | Int | No |
distinct | ActionScalarFieldEnum[] | No |
Create one Action
// Create one Action
const Action = await prisma.action.create({
data: {
// ... data to create a Action
}
})
Name | Type | Required |
---|---|---|
data | ActionCreateInput | ActionUncheckedCreateInput | Yes |
Delete one Action
// Delete one Action
const Action = await prisma.action.delete({
where: {
// ... filter to delete one Action
}
})
Name | Type | Required |
---|---|---|
where | ActionWhereUniqueInput | Yes |
Update one Action
// Update one Action
const action = await prisma.action.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
Name | Type | Required |
---|---|---|
data | ActionUpdateInput | ActionUncheckedUpdateInput | Yes |
where | ActionWhereUniqueInput | Yes |
Delete zero or more Action
// Delete a few Action
const { count } = await prisma.action.deleteMany({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | ActionWhereInput | No |
Update zero or one Action
const { count } = await prisma.action.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
Name | Type | Required |
---|---|---|
data | ActionUpdateManyMutationInput | ActionUncheckedUpdateManyInput | Yes |
where | ActionWhereInput | No |
Create or update one Action
// Update or create a Action
const action = await prisma.action.upsert({
create: {
// ... data to create a Action
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Action we want to update
}
})
Name | Type | Required |
---|---|---|
where | ActionWhereUniqueInput | Yes |
create | ActionCreateInput | ActionUncheckedCreateInput | Yes |
update | ActionUpdateInput | ActionUncheckedUpdateInput | Yes |
Name | Value |
---|---|
@@id |
|
@@unique |
|
@@index |
|
Name | Type | Attributes | Required | Comment |
---|---|---|---|---|
reactionName | String |
|
Yes | - |
description | String |
|
Yes | - |
serviceName | String |
|
Yes | - |
service | Service |
|
Yes | - |
Reaction | Reaction[] |
|
Yes | - |
Find zero or one React
// Get one React
const react = await prisma.react.findUnique({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | ReactWhereUniqueInput | Yes |
Find first React
// Get one React
const react = await prisma.react.findFirst({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | ReactWhereInput | No |
orderBy | ReactOrderByWithRelationInput[] | ReactOrderByWithRelationInput | No |
cursor | ReactWhereUniqueInput | No |
take | Int | No |
skip | Int | No |
distinct | ReactScalarFieldEnum[] | No |
Find zero or more React
// Get all React
const React = await prisma.react.findMany()
// Get first 10 React
const React = await prisma.react.findMany({ take: 10 })
Name | Type | Required |
---|---|---|
where | ReactWhereInput | No |
orderBy | ReactOrderByWithRelationInput[] | ReactOrderByWithRelationInput | No |
cursor | ReactWhereUniqueInput | No |
take | Int | No |
skip | Int | No |
distinct | ReactScalarFieldEnum[] | No |
Create one React
// Create one React
const React = await prisma.react.create({
data: {
// ... data to create a React
}
})
Name | Type | Required |
---|---|---|
data | ReactCreateInput | ReactUncheckedCreateInput | Yes |
Delete one React
// Delete one React
const React = await prisma.react.delete({
where: {
// ... filter to delete one React
}
})
Name | Type | Required |
---|---|---|
where | ReactWhereUniqueInput | Yes |
Update one React
// Update one React
const react = await prisma.react.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
Name | Type | Required |
---|---|---|
data | ReactUpdateInput | ReactUncheckedUpdateInput | Yes |
where | ReactWhereUniqueInput | Yes |
Delete zero or more React
// Delete a few React
const { count } = await prisma.react.deleteMany({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | ReactWhereInput | No |
Update zero or one React
const { count } = await prisma.react.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
Name | Type | Required |
---|---|---|
data | ReactUpdateManyMutationInput | ReactUncheckedUpdateManyInput | Yes |
where | ReactWhereInput | No |
Create or update one React
// Update or create a React
const react = await prisma.react.upsert({
create: {
// ... data to create a React
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the React we want to update
}
})
Name | Type | Required |
---|---|---|
where | ReactWhereUniqueInput | Yes |
create | ReactCreateInput | ReactUncheckedCreateInput | Yes |
update | ReactUpdateInput | ReactUncheckedUpdateInput | Yes |
Name | Type | Attributes | Required | Comment |
---|---|---|---|---|
reactionId | Int |
|
Yes | - |
serviceName | String |
|
Yes | - |
service | Service |
|
Yes | - |
reactionName | String |
|
Yes | - |
react | React |
|
Yes | - |
incomingWebhook | Webhook? |
|
No | - |
outgoingWebhook | String? |
|
No | - |
actions | ActionReaction[] |
|
Yes | - |
reactions | ActionReaction[] |
|
Yes | - |
enabled | Boolean |
|
Yes | - |
enabledChain | Boolean |
|
Yes | - |
Find zero or one Reaction
// Get one Reaction
const reaction = await prisma.reaction.findUnique({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | ReactionWhereUniqueInput | Yes |
Find first Reaction
// Get one Reaction
const reaction = await prisma.reaction.findFirst({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | ReactionWhereInput | No |
orderBy | ReactionOrderByWithRelationInput[] | ReactionOrderByWithRelationInput | No |
cursor | ReactionWhereUniqueInput | No |
take | Int | No |
skip | Int | No |
distinct | ReactionScalarFieldEnum[] | No |
Find zero or more Reaction
// Get all Reaction
const Reaction = await prisma.reaction.findMany()
// Get first 10 Reaction
const Reaction = await prisma.reaction.findMany({ take: 10 })
Name | Type | Required |
---|---|---|
where | ReactionWhereInput | No |
orderBy | ReactionOrderByWithRelationInput[] | ReactionOrderByWithRelationInput | No |
cursor | ReactionWhereUniqueInput | No |
take | Int | No |
skip | Int | No |
distinct | ReactionScalarFieldEnum[] | No |
Create one Reaction
// Create one Reaction
const Reaction = await prisma.reaction.create({
data: {
// ... data to create a Reaction
}
})
Name | Type | Required |
---|---|---|
data | ReactionCreateInput | ReactionUncheckedCreateInput | Yes |
Delete one Reaction
// Delete one Reaction
const Reaction = await prisma.reaction.delete({
where: {
// ... filter to delete one Reaction
}
})
Name | Type | Required |
---|---|---|
where | ReactionWhereUniqueInput | Yes |
Update one Reaction
// Update one Reaction
const reaction = await prisma.reaction.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
Name | Type | Required |
---|---|---|
data | ReactionUpdateInput | ReactionUncheckedUpdateInput | Yes |
where | ReactionWhereUniqueInput | Yes |
Delete zero or more Reaction
// Delete a few Reaction
const { count } = await prisma.reaction.deleteMany({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | ReactionWhereInput | No |
Update zero or one Reaction
const { count } = await prisma.reaction.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
Name | Type | Required |
---|---|---|
data | ReactionUpdateManyMutationInput | ReactionUncheckedUpdateManyInput | Yes |
where | ReactionWhereInput | No |
Create or update one Reaction
// Update or create a Reaction
const reaction = await prisma.reaction.upsert({
create: {
// ... data to create a Reaction
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Reaction we want to update
}
})
Name | Type | Required |
---|---|---|
where | ReactionWhereUniqueInput | Yes |
create | ReactionCreateInput | ReactionUncheckedCreateInput | Yes |
update | ReactionUpdateInput | ReactionUncheckedUpdateInput | Yes |
Name | Value |
---|---|
@@unique |
|
@@index |
|
Find zero or one ActionReaction
// Get one ActionReaction
const actionReaction = await prisma.actionReaction.findUnique({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | ActionReactionWhereUniqueInput | Yes |
Find first ActionReaction
// Get one ActionReaction
const actionReaction = await prisma.actionReaction.findFirst({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | ActionReactionWhereInput | No |
orderBy | ActionReactionOrderByWithRelationInput[] | ActionReactionOrderByWithRelationInput | No |
cursor | ActionReactionWhereUniqueInput | No |
take | Int | No |
skip | Int | No |
distinct | ActionReactionScalarFieldEnum[] | No |
Find zero or more ActionReaction
// Get all ActionReaction
const ActionReaction = await prisma.actionReaction.findMany()
// Get first 10 ActionReaction
const ActionReaction = await prisma.actionReaction.findMany({ take: 10 })
Name | Type | Required |
---|---|---|
where | ActionReactionWhereInput | No |
orderBy | ActionReactionOrderByWithRelationInput[] | ActionReactionOrderByWithRelationInput | No |
cursor | ActionReactionWhereUniqueInput | No |
take | Int | No |
skip | Int | No |
distinct | ActionReactionScalarFieldEnum[] | No |
Create one ActionReaction
// Create one ActionReaction
const ActionReaction = await prisma.actionReaction.create({
data: {
// ... data to create a ActionReaction
}
})
Name | Type | Required |
---|---|---|
data | ActionReactionCreateInput | ActionReactionUncheckedCreateInput | Yes |
Delete one ActionReaction
// Delete one ActionReaction
const ActionReaction = await prisma.actionReaction.delete({
where: {
// ... filter to delete one ActionReaction
}
})
Name | Type | Required |
---|---|---|
where | ActionReactionWhereUniqueInput | Yes |
Update one ActionReaction
// Update one ActionReaction
const actionReaction = await prisma.actionReaction.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
Name | Type | Required |
---|---|---|
data | ActionReactionUpdateInput | ActionReactionUncheckedUpdateInput | Yes |
where | ActionReactionWhereUniqueInput | Yes |
Delete zero or more ActionReaction
// Delete a few ActionReaction
const { count } = await prisma.actionReaction.deleteMany({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | ActionReactionWhereInput | No |
Update zero or one ActionReaction
const { count } = await prisma.actionReaction.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
Name | Type | Required |
---|---|---|
data | ActionReactionUpdateManyMutationInput | ActionReactionUncheckedUpdateManyInput | Yes |
where | ActionReactionWhereInput | No |
Create or update one ActionReaction
// Update or create a ActionReaction
const actionReaction = await prisma.actionReaction.upsert({
create: {
// ... data to create a ActionReaction
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the ActionReaction we want to update
}
})
Name | Type | Required |
---|---|---|
where | ActionReactionWhereUniqueInput | Yes |
create | ActionReactionCreateInput | ActionReactionUncheckedCreateInput | Yes |
update | ActionReactionUpdateInput | ActionReactionUncheckedUpdateInput | Yes |
Name | Value |
---|---|
@@id |
|
@@unique |
|
@@index |
|
Find zero or one DiscordBotWebhook
// Get one DiscordBotWebhook
const discordBotWebhook = await prisma.discordBotWebhook.findUnique({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | DiscordBotWebhookWhereUniqueInput | Yes |
Find first DiscordBotWebhook
// Get one DiscordBotWebhook
const discordBotWebhook = await prisma.discordBotWebhook.findFirst({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | DiscordBotWebhookWhereInput | No |
orderBy | DiscordBotWebhookOrderByWithRelationInput[] | DiscordBotWebhookOrderByWithRelationInput | No |
cursor | DiscordBotWebhookWhereUniqueInput | No |
take | Int | No |
skip | Int | No |
distinct | DiscordBotWebhookScalarFieldEnum[] | No |
Find zero or more DiscordBotWebhook
// Get all DiscordBotWebhook
const DiscordBotWebhook = await prisma.discordBotWebhook.findMany()
// Get first 10 DiscordBotWebhook
const DiscordBotWebhook = await prisma.discordBotWebhook.findMany({ take: 10 })
Name | Type | Required |
---|---|---|
where | DiscordBotWebhookWhereInput | No |
orderBy | DiscordBotWebhookOrderByWithRelationInput[] | DiscordBotWebhookOrderByWithRelationInput | No |
cursor | DiscordBotWebhookWhereUniqueInput | No |
take | Int | No |
skip | Int | No |
distinct | DiscordBotWebhookScalarFieldEnum[] | No |
Create one DiscordBotWebhook
// Create one DiscordBotWebhook
const DiscordBotWebhook = await prisma.discordBotWebhook.create({
data: {
// ... data to create a DiscordBotWebhook
}
})
Name | Type | Required |
---|---|---|
data | DiscordBotWebhookCreateInput | DiscordBotWebhookUncheckedCreateInput | Yes |
Delete one DiscordBotWebhook
// Delete one DiscordBotWebhook
const DiscordBotWebhook = await prisma.discordBotWebhook.delete({
where: {
// ... filter to delete one DiscordBotWebhook
}
})
Name | Type | Required |
---|---|---|
where | DiscordBotWebhookWhereUniqueInput | Yes |
Update one DiscordBotWebhook
// Update one DiscordBotWebhook
const discordBotWebhook = await prisma.discordBotWebhook.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
Name | Type | Required |
---|---|---|
data | DiscordBotWebhookUpdateInput | DiscordBotWebhookUncheckedUpdateInput | Yes |
where | DiscordBotWebhookWhereUniqueInput | Yes |
Delete zero or more DiscordBotWebhook
// Delete a few DiscordBotWebhook
const { count } = await prisma.discordBotWebhook.deleteMany({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | DiscordBotWebhookWhereInput | No |
Update zero or one DiscordBotWebhook
const { count } = await prisma.discordBotWebhook.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
Name | Type | Required |
---|---|---|
data | DiscordBotWebhookUpdateManyMutationInput | DiscordBotWebhookUncheckedUpdateManyInput | Yes |
where | DiscordBotWebhookWhereInput | No |
Create or update one DiscordBotWebhook
// Update or create a DiscordBotWebhook
const discordBotWebhook = await prisma.discordBotWebhook.upsert({
create: {
// ... data to create a DiscordBotWebhook
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the DiscordBotWebhook we want to update
}
})
Name | Type | Required |
---|---|---|
where | DiscordBotWebhookWhereUniqueInput | Yes |
create | DiscordBotWebhookCreateInput | DiscordBotWebhookUncheckedCreateInput | Yes |
update | DiscordBotWebhookUpdateInput | DiscordBotWebhookUncheckedUpdateInput | Yes |
Name | Type | Attributes | Required | Comment |
---|---|---|---|---|
id | Int |
|
Yes | - |
message | String |
|
Yes | - |
channelId | String |
|
Yes | - |
embed | Boolean |
|
Yes | - |
Find zero or one DiscordMessageQueue
// Get one DiscordMessageQueue
const discordMessageQueue = await prisma.discordMessageQueue.findUnique({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | DiscordMessageQueueWhereUniqueInput | Yes |
Find first DiscordMessageQueue
// Get one DiscordMessageQueue
const discordMessageQueue = await prisma.discordMessageQueue.findFirst({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | DiscordMessageQueueWhereInput | No |
orderBy | DiscordMessageQueueOrderByWithRelationInput[] | DiscordMessageQueueOrderByWithRelationInput | No |
cursor | DiscordMessageQueueWhereUniqueInput | No |
take | Int | No |
skip | Int | No |
distinct | DiscordMessageQueueScalarFieldEnum[] | No |
Find zero or more DiscordMessageQueue
// Get all DiscordMessageQueue
const DiscordMessageQueue = await prisma.discordMessageQueue.findMany()
// Get first 10 DiscordMessageQueue
const DiscordMessageQueue = await prisma.discordMessageQueue.findMany({ take: 10 })
Name | Type | Required |
---|---|---|
where | DiscordMessageQueueWhereInput | No |
orderBy | DiscordMessageQueueOrderByWithRelationInput[] | DiscordMessageQueueOrderByWithRelationInput | No |
cursor | DiscordMessageQueueWhereUniqueInput | No |
take | Int | No |
skip | Int | No |
distinct | DiscordMessageQueueScalarFieldEnum[] | No |
Create one DiscordMessageQueue
// Create one DiscordMessageQueue
const DiscordMessageQueue = await prisma.discordMessageQueue.create({
data: {
// ... data to create a DiscordMessageQueue
}
})
Name | Type | Required |
---|---|---|
data | DiscordMessageQueueCreateInput | DiscordMessageQueueUncheckedCreateInput | Yes |
Delete one DiscordMessageQueue
// Delete one DiscordMessageQueue
const DiscordMessageQueue = await prisma.discordMessageQueue.delete({
where: {
// ... filter to delete one DiscordMessageQueue
}
})
Name | Type | Required |
---|---|---|
where | DiscordMessageQueueWhereUniqueInput | Yes |
Update one DiscordMessageQueue
// Update one DiscordMessageQueue
const discordMessageQueue = await prisma.discordMessageQueue.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
Name | Type | Required |
---|---|---|
data | DiscordMessageQueueUpdateInput | DiscordMessageQueueUncheckedUpdateInput | Yes |
where | DiscordMessageQueueWhereUniqueInput | Yes |
Delete zero or more DiscordMessageQueue
// Delete a few DiscordMessageQueue
const { count } = await prisma.discordMessageQueue.deleteMany({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | DiscordMessageQueueWhereInput | No |
Update zero or one DiscordMessageQueue
const { count } = await prisma.discordMessageQueue.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
Name | Type | Required |
---|---|---|
data | DiscordMessageQueueUpdateManyMutationInput | DiscordMessageQueueUncheckedUpdateManyInput | Yes |
where | DiscordMessageQueueWhereInput | No |
Create or update one DiscordMessageQueue
// Update or create a DiscordMessageQueue
const discordMessageQueue = await prisma.discordMessageQueue.upsert({
create: {
// ... data to create a DiscordMessageQueue
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the DiscordMessageQueue we want to update
}
})
Name | Type | Required |
---|---|---|
where | DiscordMessageQueueWhereUniqueInput | Yes |
create | DiscordMessageQueueCreateInput | DiscordMessageQueueUncheckedCreateInput | Yes |
update | DiscordMessageQueueUpdateInput | DiscordMessageQueueUncheckedUpdateInput | Yes |
Name | Type | Nullable |
---|---|---|
AND | UserWhereInput | UserWhereInput[] | No |
OR | UserWhereInput[] | No |
NOT | UserWhereInput | UserWhereInput[] | No |
id | StringFilter | String | No |
StringFilter | String | No | |
name | StringFilter | String | No |
password | StringFilter | String | No |
createdAt | DateTimeFilter | DateTime | No |
emailVerified | BoolFilter | Boolean | No |
tokens | TokenListRelationFilter | No |
Webhook | WebhookListRelationFilter | No |
DiscordBotWebhook | DiscordBotWebhookListRelationFilter | No |
oAuthUserData | OAuthUserDataListRelationFilter | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
SortOrder | No | |
name | SortOrder | No |
password | SortOrder | No |
createdAt | SortOrder | No |
emailVerified | SortOrder | No |
tokens | TokenOrderByRelationAggregateInput | No |
Webhook | WebhookOrderByRelationAggregateInput | No |
DiscordBotWebhook | DiscordBotWebhookOrderByRelationAggregateInput | No |
oAuthUserData | oAuthUserDataOrderByRelationAggregateInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
String | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
SortOrder | No | |
name | SortOrder | No |
password | SortOrder | No |
createdAt | SortOrder | No |
emailVerified | SortOrder | No |
_count | UserCountOrderByAggregateInput | No |
_max | UserMaxOrderByAggregateInput | No |
_min | UserMinOrderByAggregateInput | No |
Name | Type | Nullable |
---|---|---|
AND | UserScalarWhereWithAggregatesInput | UserScalarWhereWithAggregatesInput[] | No |
OR | UserScalarWhereWithAggregatesInput[] | No |
NOT | UserScalarWhereWithAggregatesInput | UserScalarWhereWithAggregatesInput[] | No |
id | StringWithAggregatesFilter | String | No |
StringWithAggregatesFilter | String | No | |
name | StringWithAggregatesFilter | String | No |
password | StringWithAggregatesFilter | String | No |
createdAt | DateTimeWithAggregatesFilter | DateTime | No |
emailVerified | BoolWithAggregatesFilter | Boolean | No |
Name | Type | Nullable |
---|---|---|
AND | oAuthUserDataWhereInput | oAuthUserDataWhereInput[] | No |
OR | oAuthUserDataWhereInput[] | No |
NOT | oAuthUserDataWhereInput | oAuthUserDataWhereInput[] | No |
oAuthUserDataId | StringFilter | String | No |
userId | StringFilter | String | No |
user | UserRelationFilter | UserWhereInput | No |
providerUserId | StringFilter | String | No |
data | JsonFilter | No |
accessToken | StringFilter | String | No |
refreshToken | StringFilter | String | No |
oAuthProviderName | StringFilter | String | No |
oAuthProvider | OAuthProviderRelationFilter | oAuthProviderWhereInput | No |
Name | Type | Nullable |
---|---|---|
oAuthUserDataId | SortOrder | No |
userId | SortOrder | No |
user | UserOrderByWithRelationInput | No |
providerUserId | SortOrder | No |
data | SortOrder | No |
accessToken | SortOrder | No |
refreshToken | SortOrder | No |
oAuthProviderName | SortOrder | No |
oAuthProvider | oAuthProviderOrderByWithRelationInput | No |
Name | Type | Nullable |
---|---|---|
oAuthUserDataId | String | No |
userId_oAuthProviderName | oAuthUserDataUserIdOAuthProviderNameCompoundUniqueInput | No |
providerUserId_oAuthProviderName | oAuthUserDataProviderUserIdOAuthProviderNameCompoundUniqueInput | No |
Name | Type | Nullable |
---|---|---|
oAuthUserDataId | SortOrder | No |
userId | SortOrder | No |
providerUserId | SortOrder | No |
data | SortOrder | No |
accessToken | SortOrder | No |
refreshToken | SortOrder | No |
oAuthProviderName | SortOrder | No |
_count | oAuthUserDataCountOrderByAggregateInput | No |
_max | oAuthUserDataMaxOrderByAggregateInput | No |
_min | oAuthUserDataMinOrderByAggregateInput | No |
Name | Type | Nullable |
---|---|---|
AND | oAuthUserDataScalarWhereWithAggregatesInput | oAuthUserDataScalarWhereWithAggregatesInput[] | No |
OR | oAuthUserDataScalarWhereWithAggregatesInput[] | No |
NOT | oAuthUserDataScalarWhereWithAggregatesInput | oAuthUserDataScalarWhereWithAggregatesInput[] | No |
oAuthUserDataId | StringWithAggregatesFilter | String | No |
userId | StringWithAggregatesFilter | String | No |
providerUserId | StringWithAggregatesFilter | String | No |
data | JsonWithAggregatesFilter | No |
accessToken | StringWithAggregatesFilter | String | No |
refreshToken | StringWithAggregatesFilter | String | No |
oAuthProviderName | StringWithAggregatesFilter | String | No |
Name | Type | Nullable |
---|---|---|
AND | oAuthProviderWhereInput | oAuthProviderWhereInput[] | No |
OR | oAuthProviderWhereInput[] | No |
NOT | oAuthProviderWhereInput | oAuthProviderWhereInput[] | No |
oAuthProviderName | StringFilter | String | No |
serviceName | StringNullableFilter | String | Null | Yes |
service | ServiceRelationFilter | ServiceWhereInput | Null | Yes |
data | JsonFilter | No |
oAuthUserData | OAuthUserDataListRelationFilter | No |
Name | Type | Nullable |
---|---|---|
oAuthProviderName | SortOrder | No |
serviceName | SortOrder | No |
service | ServiceOrderByWithRelationInput | No |
data | SortOrder | No |
oAuthUserData | oAuthUserDataOrderByRelationAggregateInput | No |
Name | Type | Nullable |
---|---|---|
oAuthProviderName | String | No |
serviceName | String | No |
Name | Type | Nullable |
---|---|---|
oAuthProviderName | SortOrder | No |
serviceName | SortOrder | No |
data | SortOrder | No |
_count | oAuthProviderCountOrderByAggregateInput | No |
_max | oAuthProviderMaxOrderByAggregateInput | No |
_min | oAuthProviderMinOrderByAggregateInput | No |
Name | Type | Nullable |
---|---|---|
AND | oAuthProviderScalarWhereWithAggregatesInput | oAuthProviderScalarWhereWithAggregatesInput[] | No |
OR | oAuthProviderScalarWhereWithAggregatesInput[] | No |
NOT | oAuthProviderScalarWhereWithAggregatesInput | oAuthProviderScalarWhereWithAggregatesInput[] | No |
oAuthProviderName | StringWithAggregatesFilter | String | No |
serviceName | StringNullableWithAggregatesFilter | String | Null | Yes |
data | JsonWithAggregatesFilter | No |
Name | Type | Nullable |
---|---|---|
AND | TokenWhereInput | TokenWhereInput[] | No |
OR | TokenWhereInput[] | No |
NOT | TokenWhereInput | TokenWhereInput[] | No |
id | StringFilter | String | No |
userId | StringFilter | String | No |
createdAt | DateTimeFilter | DateTime | No |
updatedAt | DateTimeFilter | DateTime | No |
valid | BoolFilter | Boolean | No |
user | UserRelationFilter | UserWhereInput | No |
type | EnumTokenTypeFilter | TokenType | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
userId | SortOrder | No |
createdAt | SortOrder | No |
updatedAt | SortOrder | No |
valid | SortOrder | No |
user | UserOrderByWithRelationInput | No |
type | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
userId_type | TokenUserIdTypeCompoundUniqueInput | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
userId | SortOrder | No |
createdAt | SortOrder | No |
updatedAt | SortOrder | No |
valid | SortOrder | No |
type | SortOrder | No |
_count | TokenCountOrderByAggregateInput | No |
_max | TokenMaxOrderByAggregateInput | No |
_min | TokenMinOrderByAggregateInput | No |
Name | Type | Nullable |
---|---|---|
AND | TokenScalarWhereWithAggregatesInput | TokenScalarWhereWithAggregatesInput[] | No |
OR | TokenScalarWhereWithAggregatesInput[] | No |
NOT | TokenScalarWhereWithAggregatesInput | TokenScalarWhereWithAggregatesInput[] | No |
id | StringWithAggregatesFilter | String | No |
userId | StringWithAggregatesFilter | String | No |
createdAt | DateTimeWithAggregatesFilter | DateTime | No |
updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
valid | BoolWithAggregatesFilter | Boolean | No |
type | EnumTokenTypeWithAggregatesFilter | TokenType | No |
Name | Type | Nullable |
---|---|---|
AND | ServiceWhereInput | ServiceWhereInput[] | No |
OR | ServiceWhereInput[] | No |
NOT | ServiceWhereInput | ServiceWhereInput[] | No |
serviceName | StringFilter | String | No |
React | ReactListRelationFilter | No |
Webhook | WebhookListRelationFilter | No |
oAuthProviderName | StringNullableFilter | String | Null | Yes |
oAuthProvider | OAuthProviderRelationFilter | oAuthProviderWhereInput | Null | Yes |
Reaction | ReactionListRelationFilter | No |
Action | ActionListRelationFilter | No |
Name | Type | Nullable |
---|---|---|
serviceName | SortOrder | No |
React | ReactOrderByRelationAggregateInput | No |
Webhook | WebhookOrderByRelationAggregateInput | No |
oAuthProviderName | SortOrder | No |
oAuthProvider | oAuthProviderOrderByWithRelationInput | No |
Reaction | ReactionOrderByRelationAggregateInput | No |
Action | ActionOrderByRelationAggregateInput | No |
Name | Type | Nullable |
---|---|---|
serviceName | String | No |
oAuthProviderName | String | No |
Name | Type | Nullable |
---|---|---|
serviceName | SortOrder | No |
oAuthProviderName | SortOrder | No |
_count | ServiceCountOrderByAggregateInput | No |
_max | ServiceMaxOrderByAggregateInput | No |
_min | ServiceMinOrderByAggregateInput | No |
Name | Type | Nullable |
---|---|---|
AND | ServiceScalarWhereWithAggregatesInput | ServiceScalarWhereWithAggregatesInput[] | No |
OR | ServiceScalarWhereWithAggregatesInput[] | No |
NOT | ServiceScalarWhereWithAggregatesInput | ServiceScalarWhereWithAggregatesInput[] | No |
serviceName | StringWithAggregatesFilter | String | No |
oAuthProviderName | StringNullableWithAggregatesFilter | String | Null | Yes |
Name | Type | Nullable |
---|---|---|
AND | WebhookWhereInput | WebhookWhereInput[] | No |
OR | WebhookWhereInput[] | No |
NOT | WebhookWhereInput | WebhookWhereInput[] | No |
webhookId | StringFilter | String | No |
userId | StringFilter | String | No |
user | UserRelationFilter | UserWhereInput | No |
reactionId | IntFilter | Int | No |
reaction | ReactionRelationFilter | ReactionWhereInput | No |
incomingServiceName | StringFilter | String | No |
incomingService | ServiceRelationFilter | ServiceWhereInput | No |
DiscordBotWebhook | DiscordBotWebhookListRelationFilter | No |
Name | Type | Nullable |
---|---|---|
webhookId | SortOrder | No |
userId | SortOrder | No |
user | UserOrderByWithRelationInput | No |
reactionId | SortOrder | No |
reaction | ReactionOrderByWithRelationInput | No |
incomingServiceName | SortOrder | No |
incomingService | ServiceOrderByWithRelationInput | No |
DiscordBotWebhook | DiscordBotWebhookOrderByRelationAggregateInput | No |
Name | Type | Nullable |
---|---|---|
webhookId | String | No |
reactionId | Int | No |
Name | Type | Nullable |
---|---|---|
webhookId | SortOrder | No |
userId | SortOrder | No |
reactionId | SortOrder | No |
incomingServiceName | SortOrder | No |
_count | WebhookCountOrderByAggregateInput | No |
_avg | WebhookAvgOrderByAggregateInput | No |
_max | WebhookMaxOrderByAggregateInput | No |
_min | WebhookMinOrderByAggregateInput | No |
_sum | WebhookSumOrderByAggregateInput | No |
Name | Type | Nullable |
---|---|---|
AND | WebhookScalarWhereWithAggregatesInput | WebhookScalarWhereWithAggregatesInput[] | No |
OR | WebhookScalarWhereWithAggregatesInput[] | No |
NOT | WebhookScalarWhereWithAggregatesInput | WebhookScalarWhereWithAggregatesInput[] | No |
webhookId | StringWithAggregatesFilter | String | No |
userId | StringWithAggregatesFilter | String | No |
reactionId | IntWithAggregatesFilter | Int | No |
incomingServiceName | StringWithAggregatesFilter | String | No |
Name | Type | Nullable |
---|---|---|
AND | ActionWhereInput | ActionWhereInput[] | No |
OR | ActionWhereInput[] | No |
NOT | ActionWhereInput | ActionWhereInput[] | No |
actionName | StringFilter | String | No |
serviceName | StringFilter | String | No |
service | ServiceRelationFilter | ServiceWhereInput | No |
description | StringFilter | String | No |
Name | Type | Nullable |
---|---|---|
actionName | SortOrder | No |
serviceName | SortOrder | No |
service | ServiceOrderByWithRelationInput | No |
description | SortOrder | No |
Name | Type | Nullable |
---|---|---|
actionName_serviceName | ActionActionNameServiceNameCompoundUniqueInput | No |
actionName_serviceName | ActionActionNameServiceNameCompoundUniqueInput | No |
Name | Type | Nullable |
---|---|---|
actionName | SortOrder | No |
serviceName | SortOrder | No |
description | SortOrder | No |
_count | ActionCountOrderByAggregateInput | No |
_max | ActionMaxOrderByAggregateInput | No |
_min | ActionMinOrderByAggregateInput | No |
Name | Type | Nullable |
---|---|---|
AND | ActionScalarWhereWithAggregatesInput | ActionScalarWhereWithAggregatesInput[] | No |
OR | ActionScalarWhereWithAggregatesInput[] | No |
NOT | ActionScalarWhereWithAggregatesInput | ActionScalarWhereWithAggregatesInput[] | No |
actionName | StringWithAggregatesFilter | String | No |
serviceName | StringWithAggregatesFilter | String | No |
description | StringWithAggregatesFilter | String | No |
Name | Type | Nullable |
---|---|---|
AND | ReactWhereInput | ReactWhereInput[] | No |
OR | ReactWhereInput[] | No |
NOT | ReactWhereInput | ReactWhereInput[] | No |
reactionName | StringFilter | String | No |
description | StringFilter | String | No |
serviceName | StringFilter | String | No |
service | ServiceRelationFilter | ServiceWhereInput | No |
Reaction | ReactionListRelationFilter | No |
Name | Type | Nullable |
---|---|---|
reactionName | SortOrder | No |
description | SortOrder | No |
serviceName | SortOrder | No |
service | ServiceOrderByWithRelationInput | No |
Reaction | ReactionOrderByRelationAggregateInput | No |
Name | Type | Nullable |
---|---|---|
serviceName_reactionName | ReactServiceNameReactionNameCompoundUniqueInput | No |
serviceName_reactionName | ReactServiceNameReactionNameCompoundUniqueInput | No |
Name | Type | Nullable |
---|---|---|
reactionName | SortOrder | No |
description | SortOrder | No |
serviceName | SortOrder | No |
_count | ReactCountOrderByAggregateInput | No |
_max | ReactMaxOrderByAggregateInput | No |
_min | ReactMinOrderByAggregateInput | No |
Name | Type | Nullable |
---|---|---|
AND | ReactScalarWhereWithAggregatesInput | ReactScalarWhereWithAggregatesInput[] | No |
OR | ReactScalarWhereWithAggregatesInput[] | No |
NOT | ReactScalarWhereWithAggregatesInput | ReactScalarWhereWithAggregatesInput[] | No |
reactionName | StringWithAggregatesFilter | String | No |
description | StringWithAggregatesFilter | String | No |
serviceName | StringWithAggregatesFilter | String | No |
Name | Type | Nullable |
---|---|---|
AND | ReactionWhereInput | ReactionWhereInput[] | No |
OR | ReactionWhereInput[] | No |
NOT | ReactionWhereInput | ReactionWhereInput[] | No |
reactionId | IntFilter | Int | No |
serviceName | StringFilter | String | No |
service | ServiceRelationFilter | ServiceWhereInput | No |
reactionName | StringFilter | String | No |
react | ReactRelationFilter | ReactWhereInput | No |
incomingWebhook | WebhookRelationFilter | WebhookWhereInput | Null | Yes |
outgoingWebhook | StringNullableFilter | String | Null | Yes |
actions | ActionReactionListRelationFilter | No |
reactions | ActionReactionListRelationFilter | No |
enabled | BoolFilter | Boolean | No |
enabledChain | BoolFilter | Boolean | No |
Name | Type | Nullable |
---|---|---|
reactionId | SortOrder | No |
serviceName | SortOrder | No |
service | ServiceOrderByWithRelationInput | No |
reactionName | SortOrder | No |
react | ReactOrderByWithRelationInput | No |
incomingWebhook | WebhookOrderByWithRelationInput | No |
outgoingWebhook | SortOrder | No |
actions | ActionReactionOrderByRelationAggregateInput | No |
reactions | ActionReactionOrderByRelationAggregateInput | No |
enabled | SortOrder | No |
enabledChain | SortOrder | No |
Name | Type | Nullable |
---|---|---|
reactionId | Int | No |
Name | Type | Nullable |
---|---|---|
reactionId | SortOrder | No |
serviceName | SortOrder | No |
reactionName | SortOrder | No |
outgoingWebhook | SortOrder | No |
enabled | SortOrder | No |
enabledChain | SortOrder | No |
_count | ReactionCountOrderByAggregateInput | No |
_avg | ReactionAvgOrderByAggregateInput | No |
_max | ReactionMaxOrderByAggregateInput | No |
_min | ReactionMinOrderByAggregateInput | No |
_sum | ReactionSumOrderByAggregateInput | No |
Name | Type | Nullable |
---|---|---|
AND | ReactionScalarWhereWithAggregatesInput | ReactionScalarWhereWithAggregatesInput[] | No |
OR | ReactionScalarWhereWithAggregatesInput[] | No |
NOT | ReactionScalarWhereWithAggregatesInput | ReactionScalarWhereWithAggregatesInput[] | No |
reactionId | IntWithAggregatesFilter | Int | No |
serviceName | StringWithAggregatesFilter | String | No |
reactionName | StringWithAggregatesFilter | String | No |
outgoingWebhook | StringNullableWithAggregatesFilter | String | Null | Yes |
enabled | BoolWithAggregatesFilter | Boolean | No |
enabledChain | BoolWithAggregatesFilter | Boolean | No |
Name | Type | Nullable |
---|---|---|
AND | ActionReactionWhereInput | ActionReactionWhereInput[] | No |
OR | ActionReactionWhereInput[] | No |
NOT | ActionReactionWhereInput | ActionReactionWhereInput[] | No |
id | IntFilter | Int | No |
actionId | IntFilter | Int | No |
reactionId | IntFilter | Int | No |
action | ReactionRelationFilter | ReactionWhereInput | No |
reaction | ReactionRelationFilter | ReactionWhereInput | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
actionId | SortOrder | No |
reactionId | SortOrder | No |
action | ReactionOrderByWithRelationInput | No |
reaction | ReactionOrderByWithRelationInput | No |
Name | Type | Nullable |
---|---|---|
id | Int | No |
reactionId | Int | No |
actionId_reactionId | ActionReactionActionIdReactionIdCompoundUniqueInput | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
actionId | SortOrder | No |
reactionId | SortOrder | No |
_count | ActionReactionCountOrderByAggregateInput | No |
_avg | ActionReactionAvgOrderByAggregateInput | No |
_max | ActionReactionMaxOrderByAggregateInput | No |
_min | ActionReactionMinOrderByAggregateInput | No |
_sum | ActionReactionSumOrderByAggregateInput | No |
Name | Type | Nullable |
---|---|---|
AND | ActionReactionScalarWhereWithAggregatesInput | ActionReactionScalarWhereWithAggregatesInput[] | No |
OR | ActionReactionScalarWhereWithAggregatesInput[] | No |
NOT | ActionReactionScalarWhereWithAggregatesInput | ActionReactionScalarWhereWithAggregatesInput[] | No |
id | IntWithAggregatesFilter | Int | No |
actionId | IntWithAggregatesFilter | Int | No |
reactionId | IntWithAggregatesFilter | Int | No |
Name | Type | Nullable |
---|---|---|
AND | DiscordBotWebhookWhereInput | DiscordBotWebhookWhereInput[] | No |
OR | DiscordBotWebhookWhereInput[] | No |
NOT | DiscordBotWebhookWhereInput | DiscordBotWebhookWhereInput[] | No |
command | StringFilter | String | No |
serverId | StringFilter | String | No |
userId | StringFilter | String | No |
user | UserRelationFilter | UserWhereInput | Null | Yes |
webhookWebhookId | StringFilter | String | No |
webhook | WebhookRelationFilter | WebhookWhereInput | No |
Name | Type | Nullable |
---|---|---|
command | SortOrder | No |
serverId | SortOrder | No |
userId | SortOrder | No |
user | UserOrderByWithRelationInput | No |
webhookWebhookId | SortOrder | No |
webhook | WebhookOrderByWithRelationInput | No |
Name | Type | Nullable |
---|---|---|
command_userId_serverId | DiscordBotWebhookCommandUserIdServerIdCompoundUniqueInput | No |
command_userId_serverId | DiscordBotWebhookCommandUserIdServerIdCompoundUniqueInput | No |
Name | Type | Nullable |
---|---|---|
command | SortOrder | No |
serverId | SortOrder | No |
userId | SortOrder | No |
webhookWebhookId | SortOrder | No |
_count | DiscordBotWebhookCountOrderByAggregateInput | No |
_max | DiscordBotWebhookMaxOrderByAggregateInput | No |
_min | DiscordBotWebhookMinOrderByAggregateInput | No |
Name | Type | Nullable |
---|---|---|
AND | DiscordBotWebhookScalarWhereWithAggregatesInput | DiscordBotWebhookScalarWhereWithAggregatesInput[] | No |
OR | DiscordBotWebhookScalarWhereWithAggregatesInput[] | No |
NOT | DiscordBotWebhookScalarWhereWithAggregatesInput | DiscordBotWebhookScalarWhereWithAggregatesInput[] | No |
command | StringWithAggregatesFilter | String | No |
serverId | StringWithAggregatesFilter | String | No |
userId | StringWithAggregatesFilter | String | No |
webhookWebhookId | StringWithAggregatesFilter | String | No |
Name | Type | Nullable |
---|---|---|
AND | DiscordMessageQueueWhereInput | DiscordMessageQueueWhereInput[] | No |
OR | DiscordMessageQueueWhereInput[] | No |
NOT | DiscordMessageQueueWhereInput | DiscordMessageQueueWhereInput[] | No |
id | IntFilter | Int | No |
message | StringFilter | String | No |
channelId | StringFilter | String | No |
embed | BoolFilter | Boolean | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
message | SortOrder | No |
channelId | SortOrder | No |
embed | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | Int | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
message | SortOrder | No |
channelId | SortOrder | No |
embed | SortOrder | No |
_count | DiscordMessageQueueCountOrderByAggregateInput | No |
_avg | DiscordMessageQueueAvgOrderByAggregateInput | No |
_max | DiscordMessageQueueMaxOrderByAggregateInput | No |
_min | DiscordMessageQueueMinOrderByAggregateInput | No |
_sum | DiscordMessageQueueSumOrderByAggregateInput | No |
Name | Type | Nullable |
---|---|---|
AND | DiscordMessageQueueScalarWhereWithAggregatesInput | DiscordMessageQueueScalarWhereWithAggregatesInput[] | No |
OR | DiscordMessageQueueScalarWhereWithAggregatesInput[] | No |
NOT | DiscordMessageQueueScalarWhereWithAggregatesInput | DiscordMessageQueueScalarWhereWithAggregatesInput[] | No |
id | IntWithAggregatesFilter | Int | No |
message | StringWithAggregatesFilter | String | No |
channelId | StringWithAggregatesFilter | String | No |
embed | BoolWithAggregatesFilter | Boolean | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
String | No | |
name | String | No |
password | String | No |
createdAt | DateTime | No |
emailVerified | Boolean | No |
tokens | TokenCreateNestedManyWithoutUserInput | No |
Webhook | WebhookCreateNestedManyWithoutUserInput | No |
DiscordBotWebhook | DiscordBotWebhookCreateNestedManyWithoutUserInput | No |
oAuthUserData | oAuthUserDataCreateNestedManyWithoutUserInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
String | No | |
name | String | No |
password | String | No |
createdAt | DateTime | No |
emailVerified | Boolean | No |
tokens | TokenUncheckedCreateNestedManyWithoutUserInput | No |
Webhook | WebhookUncheckedCreateNestedManyWithoutUserInput | No |
DiscordBotWebhook | DiscordBotWebhookUncheckedCreateNestedManyWithoutUserInput | No |
oAuthUserData | oAuthUserDataUncheckedCreateNestedManyWithoutUserInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
String | StringFieldUpdateOperationsInput | No | |
name | String | StringFieldUpdateOperationsInput | No |
password | String | StringFieldUpdateOperationsInput | No |
createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
emailVerified | Boolean | BoolFieldUpdateOperationsInput | No |
tokens | TokenUpdateManyWithoutUserNestedInput | No |
Webhook | WebhookUpdateManyWithoutUserNestedInput | No |
DiscordBotWebhook | DiscordBotWebhookUpdateManyWithoutUserNestedInput | No |
oAuthUserData | oAuthUserDataUpdateManyWithoutUserNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
String | StringFieldUpdateOperationsInput | No | |
name | String | StringFieldUpdateOperationsInput | No |
password | String | StringFieldUpdateOperationsInput | No |
createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
emailVerified | Boolean | BoolFieldUpdateOperationsInput | No |
tokens | TokenUncheckedUpdateManyWithoutUserNestedInput | No |
Webhook | WebhookUncheckedUpdateManyWithoutUserNestedInput | No |
DiscordBotWebhook | DiscordBotWebhookUncheckedUpdateManyWithoutUserNestedInput | No |
oAuthUserData | oAuthUserDataUncheckedUpdateManyWithoutUserNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
String | No | |
name | String | No |
password | String | No |
createdAt | DateTime | No |
emailVerified | Boolean | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
String | StringFieldUpdateOperationsInput | No | |
name | String | StringFieldUpdateOperationsInput | No |
password | String | StringFieldUpdateOperationsInput | No |
createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
emailVerified | Boolean | BoolFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
String | StringFieldUpdateOperationsInput | No | |
name | String | StringFieldUpdateOperationsInput | No |
password | String | StringFieldUpdateOperationsInput | No |
createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
emailVerified | Boolean | BoolFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
oAuthUserDataId | String | No |
user | UserCreateNestedOneWithoutOAuthUserDataInput | No |
providerUserId | String | No |
data | JsonNullValueInput | Json | No |
accessToken | String | No |
refreshToken | String | No |
oAuthProvider | oAuthProviderCreateNestedOneWithoutOAuthUserDataInput | No |
Name | Type | Nullable |
---|---|---|
oAuthUserDataId | String | No |
userId | String | No |
providerUserId | String | No |
data | JsonNullValueInput | Json | No |
accessToken | String | No |
refreshToken | String | No |
oAuthProviderName | String | No |
Name | Type | Nullable |
---|---|---|
oAuthUserDataId | String | StringFieldUpdateOperationsInput | No |
user | UserUpdateOneRequiredWithoutOAuthUserDataNestedInput | No |
providerUserId | String | StringFieldUpdateOperationsInput | No |
data | JsonNullValueInput | Json | No |
accessToken | String | StringFieldUpdateOperationsInput | No |
refreshToken | String | StringFieldUpdateOperationsInput | No |
oAuthProvider | oAuthProviderUpdateOneRequiredWithoutOAuthUserDataNestedInput | No |
Name | Type | Nullable |
---|---|---|
oAuthUserDataId | String | StringFieldUpdateOperationsInput | No |
userId | String | StringFieldUpdateOperationsInput | No |
providerUserId | String | StringFieldUpdateOperationsInput | No |
data | JsonNullValueInput | Json | No |
accessToken | String | StringFieldUpdateOperationsInput | No |
refreshToken | String | StringFieldUpdateOperationsInput | No |
oAuthProviderName | String | StringFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
oAuthUserDataId | String | No |
userId | String | No |
providerUserId | String | No |
data | JsonNullValueInput | Json | No |
accessToken | String | No |
refreshToken | String | No |
oAuthProviderName | String | No |
Name | Type | Nullable |
---|---|---|
oAuthUserDataId | String | StringFieldUpdateOperationsInput | No |
providerUserId | String | StringFieldUpdateOperationsInput | No |
data | JsonNullValueInput | Json | No |
accessToken | String | StringFieldUpdateOperationsInput | No |
refreshToken | String | StringFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
oAuthUserDataId | String | StringFieldUpdateOperationsInput | No |
userId | String | StringFieldUpdateOperationsInput | No |
providerUserId | String | StringFieldUpdateOperationsInput | No |
data | JsonNullValueInput | Json | No |
accessToken | String | StringFieldUpdateOperationsInput | No |
refreshToken | String | StringFieldUpdateOperationsInput | No |
oAuthProviderName | String | StringFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
oAuthProviderName | String | No |
service | ServiceCreateNestedOneWithoutOAuthProviderInput | No |
data | JsonNullValueInput | Json | No |
oAuthUserData | oAuthUserDataCreateNestedManyWithoutOAuthProviderInput | No |
Name | Type | Nullable |
---|---|---|
oAuthProviderName | String | No |
serviceName | String | Null | Yes |
data | JsonNullValueInput | Json | No |
oAuthUserData | oAuthUserDataUncheckedCreateNestedManyWithoutOAuthProviderInput | No |
Name | Type | Nullable |
---|---|---|
oAuthProviderName | String | StringFieldUpdateOperationsInput | No |
service | ServiceUpdateOneWithoutOAuthProviderNestedInput | No |
data | JsonNullValueInput | Json | No |
oAuthUserData | oAuthUserDataUpdateManyWithoutOAuthProviderNestedInput | No |
Name | Type | Nullable |
---|---|---|
oAuthProviderName | String | StringFieldUpdateOperationsInput | No |
serviceName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
data | JsonNullValueInput | Json | No |
oAuthUserData | oAuthUserDataUncheckedUpdateManyWithoutOAuthProviderNestedInput | No |
Name | Type | Nullable |
---|---|---|
oAuthProviderName | String | No |
serviceName | String | Null | Yes |
data | JsonNullValueInput | Json | No |
Name | Type | Nullable |
---|---|---|
oAuthProviderName | String | StringFieldUpdateOperationsInput | No |
data | JsonNullValueInput | Json | No |
Name | Type | Nullable |
---|---|---|
oAuthProviderName | String | StringFieldUpdateOperationsInput | No |
serviceName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
data | JsonNullValueInput | Json | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
createdAt | DateTime | No |
updatedAt | DateTime | No |
valid | Boolean | No |
user | UserCreateNestedOneWithoutTokensInput | No |
type | TokenType | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
userId | String | No |
createdAt | DateTime | No |
updatedAt | DateTime | No |
valid | Boolean | No |
type | TokenType | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
valid | Boolean | BoolFieldUpdateOperationsInput | No |
user | UserUpdateOneRequiredWithoutTokensNestedInput | No |
type | TokenType | EnumTokenTypeFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
userId | String | StringFieldUpdateOperationsInput | No |
createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
valid | Boolean | BoolFieldUpdateOperationsInput | No |
type | TokenType | EnumTokenTypeFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
userId | String | No |
createdAt | DateTime | No |
updatedAt | DateTime | No |
valid | Boolean | No |
type | TokenType | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
valid | Boolean | BoolFieldUpdateOperationsInput | No |
type | TokenType | EnumTokenTypeFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
userId | String | StringFieldUpdateOperationsInput | No |
createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
valid | Boolean | BoolFieldUpdateOperationsInput | No |
type | TokenType | EnumTokenTypeFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
serviceName | String | No |
React | ReactCreateNestedManyWithoutServiceInput | No |
Webhook | WebhookCreateNestedManyWithoutIncomingServiceInput | No |
oAuthProviderName | String | Null | Yes |
oAuthProvider | oAuthProviderCreateNestedOneWithoutServiceInput | No |
Reaction | ReactionCreateNestedManyWithoutServiceInput | No |
Action | ActionCreateNestedManyWithoutServiceInput | No |
Name | Type | Nullable |
---|---|---|
serviceName | String | No |
React | ReactUncheckedCreateNestedManyWithoutServiceInput | No |
Webhook | WebhookUncheckedCreateNestedManyWithoutIncomingServiceInput | No |
oAuthProviderName | String | Null | Yes |
oAuthProvider | oAuthProviderUncheckedCreateNestedOneWithoutServiceInput | No |
Reaction | ReactionUncheckedCreateNestedManyWithoutServiceInput | No |
Action | ActionUncheckedCreateNestedManyWithoutServiceInput | No |
Name | Type | Nullable |
---|---|---|
serviceName | String | StringFieldUpdateOperationsInput | No |
React | ReactUpdateManyWithoutServiceNestedInput | No |
Webhook | WebhookUpdateManyWithoutIncomingServiceNestedInput | No |
oAuthProviderName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
oAuthProvider | oAuthProviderUpdateOneWithoutServiceNestedInput | No |
Reaction | ReactionUpdateManyWithoutServiceNestedInput | No |
Action | ActionUpdateManyWithoutServiceNestedInput | No |
Name | Type | Nullable |
---|---|---|
serviceName | String | StringFieldUpdateOperationsInput | No |
React | ReactUncheckedUpdateManyWithoutServiceNestedInput | No |
Webhook | WebhookUncheckedUpdateManyWithoutIncomingServiceNestedInput | No |
oAuthProviderName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
oAuthProvider | oAuthProviderUncheckedUpdateOneWithoutServiceNestedInput | No |
Reaction | ReactionUncheckedUpdateManyWithoutServiceNestedInput | No |
Action | ActionUncheckedUpdateManyWithoutServiceNestedInput | No |
Name | Type | Nullable |
---|---|---|
serviceName | String | No |
oAuthProviderName | String | Null | Yes |
Name | Type | Nullable |
---|---|---|
serviceName | String | StringFieldUpdateOperationsInput | No |
oAuthProviderName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
Name | Type | Nullable |
---|---|---|
serviceName | String | StringFieldUpdateOperationsInput | No |
oAuthProviderName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
Name | Type | Nullable |
---|---|---|
webhookId | String | No |
user | UserCreateNestedOneWithoutWebhookInput | No |
reaction | ReactionCreateNestedOneWithoutIncomingWebhookInput | No |
incomingService | ServiceCreateNestedOneWithoutWebhookInput | No |
DiscordBotWebhook | DiscordBotWebhookCreateNestedManyWithoutWebhookInput | No |
Name | Type | Nullable |
---|---|---|
webhookId | String | No |
userId | String | No |
reactionId | Int | No |
incomingServiceName | String | No |
DiscordBotWebhook | DiscordBotWebhookUncheckedCreateNestedManyWithoutWebhookInput | No |
Name | Type | Nullable |
---|---|---|
webhookId | String | StringFieldUpdateOperationsInput | No |
user | UserUpdateOneRequiredWithoutWebhookNestedInput | No |
reaction | ReactionUpdateOneRequiredWithoutIncomingWebhookNestedInput | No |
incomingService | ServiceUpdateOneRequiredWithoutWebhookNestedInput | No |
DiscordBotWebhook | DiscordBotWebhookUpdateManyWithoutWebhookNestedInput | No |
Name | Type | Nullable |
---|---|---|
webhookId | String | StringFieldUpdateOperationsInput | No |
userId | String | StringFieldUpdateOperationsInput | No |
reactionId | Int | IntFieldUpdateOperationsInput | No |
incomingServiceName | String | StringFieldUpdateOperationsInput | No |
DiscordBotWebhook | DiscordBotWebhookUncheckedUpdateManyWithoutWebhookNestedInput | No |
Name | Type | Nullable |
---|---|---|
webhookId | String | No |
userId | String | No |
reactionId | Int | No |
incomingServiceName | String | No |
Name | Type | Nullable |
---|---|---|
webhookId | String | StringFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
webhookId | String | StringFieldUpdateOperationsInput | No |
userId | String | StringFieldUpdateOperationsInput | No |
reactionId | Int | IntFieldUpdateOperationsInput | No |
incomingServiceName | String | StringFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
actionName | String | No |
service | ServiceCreateNestedOneWithoutActionInput | No |
description | String | No |
Name | Type | Nullable |
---|---|---|
actionName | String | No |
serviceName | String | No |
description | String | No |
Name | Type | Nullable |
---|---|---|
actionName | String | StringFieldUpdateOperationsInput | No |
service | ServiceUpdateOneRequiredWithoutActionNestedInput | No |
description | String | StringFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
actionName | String | StringFieldUpdateOperationsInput | No |
serviceName | String | StringFieldUpdateOperationsInput | No |
description | String | StringFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
actionName | String | No |
serviceName | String | No |
description | String | No |
Name | Type | Nullable |
---|---|---|
actionName | String | StringFieldUpdateOperationsInput | No |
description | String | StringFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
actionName | String | StringFieldUpdateOperationsInput | No |
serviceName | String | StringFieldUpdateOperationsInput | No |
description | String | StringFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
reactionName | String | No |
description | String | No |
service | ServiceCreateNestedOneWithoutReactInput | No |
Reaction | ReactionCreateNestedManyWithoutReactInput | No |
Name | Type | Nullable |
---|---|---|
reactionName | String | No |
description | String | No |
serviceName | String | No |
Reaction | ReactionUncheckedCreateNestedManyWithoutReactInput | No |
Name | Type | Nullable |
---|---|---|
reactionName | String | StringFieldUpdateOperationsInput | No |
description | String | StringFieldUpdateOperationsInput | No |
service | ServiceUpdateOneRequiredWithoutReactNestedInput | No |
Reaction | ReactionUpdateManyWithoutReactNestedInput | No |
Name | Type | Nullable |
---|---|---|
reactionName | String | StringFieldUpdateOperationsInput | No |
description | String | StringFieldUpdateOperationsInput | No |
serviceName | String | StringFieldUpdateOperationsInput | No |
Reaction | ReactionUncheckedUpdateManyWithoutReactNestedInput | No |
Name | Type | Nullable |
---|---|---|
reactionName | String | No |
description | String | No |
serviceName | String | No |
Name | Type | Nullable |
---|---|---|
reactionName | String | StringFieldUpdateOperationsInput | No |
description | String | StringFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
reactionName | String | StringFieldUpdateOperationsInput | No |
description | String | StringFieldUpdateOperationsInput | No |
serviceName | String | StringFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
service | ServiceCreateNestedOneWithoutReactionInput | No |
react | ReactCreateNestedOneWithoutReactionInput | No |
incomingWebhook | WebhookCreateNestedOneWithoutReactionInput | No |
outgoingWebhook | String | Null | Yes |
actions | ActionReactionCreateNestedManyWithoutActionInput | No |
reactions | ActionReactionCreateNestedManyWithoutReactionInput | No |
enabled | Boolean | No |
enabledChain | Boolean | No |
Name | Type | Nullable |
---|---|---|
reactionId | Int | No |
serviceName | String | No |
reactionName | String | No |
incomingWebhook | WebhookUncheckedCreateNestedOneWithoutReactionInput | No |
outgoingWebhook | String | Null | Yes |
actions | ActionReactionUncheckedCreateNestedManyWithoutActionInput | No |
reactions | ActionReactionUncheckedCreateNestedManyWithoutReactionInput | No |
enabled | Boolean | No |
enabledChain | Boolean | No |
Name | Type | Nullable |
---|---|---|
service | ServiceUpdateOneRequiredWithoutReactionNestedInput | No |
react | ReactUpdateOneRequiredWithoutReactionNestedInput | No |
incomingWebhook | WebhookUpdateOneWithoutReactionNestedInput | No |
outgoingWebhook | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
actions | ActionReactionUpdateManyWithoutActionNestedInput | No |
reactions | ActionReactionUpdateManyWithoutReactionNestedInput | No |
enabled | Boolean | BoolFieldUpdateOperationsInput | No |
enabledChain | Boolean | BoolFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
reactionId | Int | IntFieldUpdateOperationsInput | No |
serviceName | String | StringFieldUpdateOperationsInput | No |
reactionName | String | StringFieldUpdateOperationsInput | No |
incomingWebhook | WebhookUncheckedUpdateOneWithoutReactionNestedInput | No |
outgoingWebhook | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
actions | ActionReactionUncheckedUpdateManyWithoutActionNestedInput | No |
reactions | ActionReactionUncheckedUpdateManyWithoutReactionNestedInput | No |
enabled | Boolean | BoolFieldUpdateOperationsInput | No |
enabledChain | Boolean | BoolFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
reactionId | Int | No |
serviceName | String | No |
reactionName | String | No |
outgoingWebhook | String | Null | Yes |
enabled | Boolean | No |
enabledChain | Boolean | No |
Name | Type | Nullable |
---|---|---|
outgoingWebhook | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
enabled | Boolean | BoolFieldUpdateOperationsInput | No |
enabledChain | Boolean | BoolFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
reactionId | Int | IntFieldUpdateOperationsInput | No |
serviceName | String | StringFieldUpdateOperationsInput | No |
reactionName | String | StringFieldUpdateOperationsInput | No |
outgoingWebhook | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
enabled | Boolean | BoolFieldUpdateOperationsInput | No |
enabledChain | Boolean | BoolFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
action | ReactionCreateNestedOneWithoutActionsInput | No |
reaction | ReactionCreateNestedOneWithoutReactionsInput | No |
Name | Type | Nullable |
---|---|---|
id | Int | No |
actionId | Int | No |
reactionId | Int | No |
Name | Type | Nullable |
---|---|---|
action | ReactionUpdateOneRequiredWithoutActionsNestedInput | No |
reaction | ReactionUpdateOneRequiredWithoutReactionsNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | Int | IntFieldUpdateOperationsInput | No |
actionId | Int | IntFieldUpdateOperationsInput | No |
reactionId | Int | IntFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
id | Int | No |
actionId | Int | No |
reactionId | Int | No |
Name | Type | Nullable |
---|
Name | Type | Nullable |
---|---|---|
id | Int | IntFieldUpdateOperationsInput | No |
actionId | Int | IntFieldUpdateOperationsInput | No |
reactionId | Int | IntFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
command | String | No |
serverId | String | No |
user | UserCreateNestedOneWithoutDiscordBotWebhookInput | No |
webhook | WebhookCreateNestedOneWithoutDiscordBotWebhookInput | No |
Name | Type | Nullable |
---|---|---|
command | String | No |
serverId | String | No |
userId | String | No |
webhookWebhookId | String | No |
Name | Type | Nullable |
---|---|---|
command | String | StringFieldUpdateOperationsInput | No |
serverId | String | StringFieldUpdateOperationsInput | No |
user | UserUpdateOneWithoutDiscordBotWebhookNestedInput | No |
webhook | WebhookUpdateOneRequiredWithoutDiscordBotWebhookNestedInput | No |
Name | Type | Nullable |
---|---|---|
command | String | StringFieldUpdateOperationsInput | No |
serverId | String | StringFieldUpdateOperationsInput | No |
userId | String | StringFieldUpdateOperationsInput | No |
webhookWebhookId | String | StringFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
command | String | No |
serverId | String | No |
userId | String | No |
webhookWebhookId | String | No |
Name | Type | Nullable |
---|---|---|
command | String | StringFieldUpdateOperationsInput | No |
serverId | String | StringFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
command | String | StringFieldUpdateOperationsInput | No |
serverId | String | StringFieldUpdateOperationsInput | No |
userId | String | StringFieldUpdateOperationsInput | No |
webhookWebhookId | String | StringFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
message | String | No |
channelId | String | No |
embed | Boolean | No |
Name | Type | Nullable |
---|---|---|
id | Int | No |
message | String | No |
channelId | String | No |
embed | Boolean | No |
Name | Type | Nullable |
---|---|---|
message | String | StringFieldUpdateOperationsInput | No |
channelId | String | StringFieldUpdateOperationsInput | No |
embed | Boolean | BoolFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
id | Int | IntFieldUpdateOperationsInput | No |
message | String | StringFieldUpdateOperationsInput | No |
channelId | String | StringFieldUpdateOperationsInput | No |
embed | Boolean | BoolFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
id | Int | No |
message | String | No |
channelId | String | No |
embed | Boolean | No |
Name | Type | Nullable |
---|---|---|
message | String | StringFieldUpdateOperationsInput | No |
channelId | String | StringFieldUpdateOperationsInput | No |
embed | Boolean | BoolFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
id | Int | IntFieldUpdateOperationsInput | No |
message | String | StringFieldUpdateOperationsInput | No |
channelId | String | StringFieldUpdateOperationsInput | No |
embed | Boolean | BoolFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
equals | String | No |
in | String | No |
notIn | String | No |
lt | String | No |
lte | String | No |
gt | String | No |
gte | String | No |
contains | String | No |
startsWith | String | No |
endsWith | String | No |
mode | QueryMode | No |
not | String | NestedStringFilter | No |
Name | Type | Nullable |
---|---|---|
equals | DateTime | No |
in | DateTime | No |
notIn | DateTime | No |
lt | DateTime | No |
lte | DateTime | No |
gt | DateTime | No |
gte | DateTime | No |
not | DateTime | NestedDateTimeFilter | No |
Name | Type | Nullable |
---|---|---|
equals | Boolean | No |
not | Boolean | NestedBoolFilter | No |
Name | Type | Nullable |
---|---|---|
every | TokenWhereInput | No |
some | TokenWhereInput | No |
none | TokenWhereInput | No |
Name | Type | Nullable |
---|---|---|
every | WebhookWhereInput | No |
some | WebhookWhereInput | No |
none | WebhookWhereInput | No |
Name | Type | Nullable |
---|---|---|
every | DiscordBotWebhookWhereInput | No |
some | DiscordBotWebhookWhereInput | No |
none | DiscordBotWebhookWhereInput | No |
Name | Type | Nullable |
---|---|---|
every | oAuthUserDataWhereInput | No |
some | oAuthUserDataWhereInput | No |
none | oAuthUserDataWhereInput | No |
Name | Type | Nullable |
---|---|---|
_count | SortOrder | No |
Name | Type | Nullable |
---|---|---|
_count | SortOrder | No |
Name | Type | Nullable |
---|---|---|
_count | SortOrder | No |
Name | Type | Nullable |
---|---|---|
_count | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
SortOrder | No | |
name | SortOrder | No |
password | SortOrder | No |
createdAt | SortOrder | No |
emailVerified | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
SortOrder | No | |
name | SortOrder | No |
password | SortOrder | No |
createdAt | SortOrder | No |
emailVerified | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
SortOrder | No | |
name | SortOrder | No |
password | SortOrder | No |
createdAt | SortOrder | No |
emailVerified | SortOrder | No |
Name | Type | Nullable |
---|---|---|
equals | String | No |
in | String | No |
notIn | String | No |
lt | String | No |
lte | String | No |
gt | String | No |
gte | String | No |
contains | String | No |
startsWith | String | No |
endsWith | String | No |
mode | QueryMode | No |
not | String | NestedStringWithAggregatesFilter | No |
_count | NestedIntFilter | No |
_min | NestedStringFilter | No |
_max | NestedStringFilter | No |
Name | Type | Nullable |
---|---|---|
equals | DateTime | No |
in | DateTime | No |
notIn | DateTime | No |
lt | DateTime | No |
lte | DateTime | No |
gt | DateTime | No |
gte | DateTime | No |
not | DateTime | NestedDateTimeWithAggregatesFilter | No |
_count | NestedIntFilter | No |
_min | NestedDateTimeFilter | No |
_max | NestedDateTimeFilter | No |
Name | Type | Nullable |
---|---|---|
equals | Boolean | No |
not | Boolean | NestedBoolWithAggregatesFilter | No |
_count | NestedIntFilter | No |
_min | NestedBoolFilter | No |
_max | NestedBoolFilter | No |
Name | Type | Nullable |
---|---|---|
is | UserWhereInput | No |
isNot | UserWhereInput | No |
Name | Type | Nullable |
---|---|---|
equals | Json | JsonNullValueFilter | No |
path | String | No |
string_contains | String | No |
string_starts_with | String | No |
string_ends_with | String | No |
array_contains | Json | Null | Yes |
array_starts_with | Json | Null | Yes |
array_ends_with | Json | Null | Yes |
lt | Json | No |
lte | Json | No |
gt | Json | No |
gte | Json | No |
not | Json | JsonNullValueFilter | No |
Name | Type | Nullable |
---|---|---|
is | oAuthProviderWhereInput | No |
isNot | oAuthProviderWhereInput | No |
Name | Type | Nullable |
---|---|---|
userId | String | No |
oAuthProviderName | String | No |
Name | Type | Nullable |
---|---|---|
providerUserId | String | No |
oAuthProviderName | String | No |
Name | Type | Nullable |
---|---|---|
oAuthUserDataId | SortOrder | No |
userId | SortOrder | No |
providerUserId | SortOrder | No |
data | SortOrder | No |
accessToken | SortOrder | No |
refreshToken | SortOrder | No |
oAuthProviderName | SortOrder | No |
Name | Type | Nullable |
---|---|---|
oAuthUserDataId | SortOrder | No |
userId | SortOrder | No |
providerUserId | SortOrder | No |
accessToken | SortOrder | No |
refreshToken | SortOrder | No |
oAuthProviderName | SortOrder | No |
Name | Type | Nullable |
---|---|---|
oAuthUserDataId | SortOrder | No |
userId | SortOrder | No |
providerUserId | SortOrder | No |
accessToken | SortOrder | No |
refreshToken | SortOrder | No |
oAuthProviderName | SortOrder | No |
Name | Type | Nullable |
---|---|---|
equals | Json | JsonNullValueFilter | No |
path | String | No |
string_contains | String | No |
string_starts_with | String | No |
string_ends_with | String | No |
array_contains | Json | Null | Yes |
array_starts_with | Json | Null | Yes |
array_ends_with | Json | Null | Yes |
lt | Json | No |
lte | Json | No |
gt | Json | No |
gte | Json | No |
not | Json | JsonNullValueFilter | No |
_count | NestedIntFilter | No |
_min | NestedJsonFilter | No |
_max | NestedJsonFilter | No |
Name | Type | Nullable |
---|---|---|
equals | String | Null | Yes |
in | String | Null | Yes |
notIn | String | Null | Yes |
lt | String | No |
lte | String | No |
gt | String | No |
gte | String | No |
contains | String | No |
startsWith | String | No |
endsWith | String | No |
mode | QueryMode | No |
not | String | NestedStringNullableFilter | Null | Yes |
Name | Type | Nullable |
---|---|---|
is | ServiceWhereInput | No |
isNot | ServiceWhereInput | No |
Name | Type | Nullable |
---|---|---|
oAuthProviderName | SortOrder | No |
serviceName | SortOrder | No |
data | SortOrder | No |
Name | Type | Nullable |
---|---|---|
oAuthProviderName | SortOrder | No |
serviceName | SortOrder | No |
Name | Type | Nullable |
---|---|---|
oAuthProviderName | SortOrder | No |
serviceName | SortOrder | No |
Name | Type | Nullable |
---|---|---|
equals | String | Null | Yes |
in | String | Null | Yes |
notIn | String | Null | Yes |
lt | String | No |
lte | String | No |
gt | String | No |
gte | String | No |
contains | String | No |
startsWith | String | No |
endsWith | String | No |
mode | QueryMode | No |
not | String | NestedStringNullableWithAggregatesFilter | Null | Yes |
_count | NestedIntNullableFilter | No |
_min | NestedStringNullableFilter | No |
_max | NestedStringNullableFilter | No |
Name | Type | Nullable |
---|---|---|
equals | TokenType | No |
in | TokenType[] | No |
notIn | TokenType[] | No |
not | TokenType | NestedEnumTokenTypeFilter | No |
Name | Type | Nullable |
---|---|---|
userId | String | No |
type | TokenType | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
userId | SortOrder | No |
createdAt | SortOrder | No |
updatedAt | SortOrder | No |
valid | SortOrder | No |
type | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
userId | SortOrder | No |
createdAt | SortOrder | No |
updatedAt | SortOrder | No |
valid | SortOrder | No |
type | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
userId | SortOrder | No |
createdAt | SortOrder | No |
updatedAt | SortOrder | No |
valid | SortOrder | No |
type | SortOrder | No |
Name | Type | Nullable |
---|---|---|
equals | TokenType | No |
in | TokenType[] | No |
notIn | TokenType[] | No |
not | TokenType | NestedEnumTokenTypeWithAggregatesFilter | No |
_count | NestedIntFilter | No |
_min | NestedEnumTokenTypeFilter | No |
_max | NestedEnumTokenTypeFilter | No |
Name | Type | Nullable |
---|---|---|
every | ReactWhereInput | No |
some | ReactWhereInput | No |
none | ReactWhereInput | No |
Name | Type | Nullable |
---|---|---|
every | ReactionWhereInput | No |
some | ReactionWhereInput | No |
none | ReactionWhereInput | No |
Name | Type | Nullable |
---|---|---|
every | ActionWhereInput | No |
some | ActionWhereInput | No |
none | ActionWhereInput | No |
Name | Type | Nullable |
---|---|---|
_count | SortOrder | No |
Name | Type | Nullable |
---|---|---|
_count | SortOrder | No |
Name | Type | Nullable |
---|---|---|
_count | SortOrder | No |
Name | Type | Nullable |
---|---|---|
serviceName | SortOrder | No |
oAuthProviderName | SortOrder | No |
Name | Type | Nullable |
---|---|---|
serviceName | SortOrder | No |
oAuthProviderName | SortOrder | No |
Name | Type | Nullable |
---|---|---|
serviceName | SortOrder | No |
oAuthProviderName | SortOrder | No |
Name | Type | Nullable |
---|---|---|
equals | Int | No |
in | Int | No |
notIn | Int | No |
lt | Int | No |
lte | Int | No |
gt | Int | No |
gte | Int | No |
not | Int | NestedIntFilter | No |
Name | Type | Nullable |
---|---|---|
is | ReactionWhereInput | No |
isNot | ReactionWhereInput | No |
Name | Type | Nullable |
---|---|---|
webhookId | SortOrder | No |
userId | SortOrder | No |
reactionId | SortOrder | No |
incomingServiceName | SortOrder | No |
Name | Type | Nullable |
---|---|---|
reactionId | SortOrder | No |
Name | Type | Nullable |
---|---|---|
webhookId | SortOrder | No |
userId | SortOrder | No |
reactionId | SortOrder | No |
incomingServiceName | SortOrder | No |
Name | Type | Nullable |
---|---|---|
webhookId | SortOrder | No |
userId | SortOrder | No |
reactionId | SortOrder | No |
incomingServiceName | SortOrder | No |
Name | Type | Nullable |
---|---|---|
reactionId | SortOrder | No |
Name | Type | Nullable |
---|---|---|
equals | Int | No |
in | Int | No |
notIn | Int | No |
lt | Int | No |
lte | Int | No |
gt | Int | No |
gte | Int | No |
not | Int | NestedIntWithAggregatesFilter | No |
_count | NestedIntFilter | No |
_avg | NestedFloatFilter | No |
_sum | NestedIntFilter | No |
_min | NestedIntFilter | No |
_max | NestedIntFilter | No |
Name | Type | Nullable |
---|---|---|
actionName | String | No |
serviceName | String | No |
Name | Type | Nullable |
---|---|---|
actionName | SortOrder | No |
serviceName | SortOrder | No |
description | SortOrder | No |
Name | Type | Nullable |
---|---|---|
actionName | SortOrder | No |
serviceName | SortOrder | No |
description | SortOrder | No |
Name | Type | Nullable |
---|---|---|
actionName | SortOrder | No |
serviceName | SortOrder | No |
description | SortOrder | No |
Name | Type | Nullable |
---|---|---|
serviceName | String | No |
reactionName | String | No |
Name | Type | Nullable |
---|---|---|
reactionName | SortOrder | No |
description | SortOrder | No |
serviceName | SortOrder | No |
Name | Type | Nullable |
---|---|---|
reactionName | SortOrder | No |
description | SortOrder | No |
serviceName | SortOrder | No |
Name | Type | Nullable |
---|---|---|
reactionName | SortOrder | No |
description | SortOrder | No |
serviceName | SortOrder | No |
Name | Type | Nullable |
---|---|---|
is | ReactWhereInput | No |
isNot | ReactWhereInput | No |
Name | Type | Nullable |
---|---|---|
is | WebhookWhereInput | Null | Yes |
isNot | WebhookWhereInput | Null | Yes |
Name | Type | Nullable |
---|---|---|
every | ActionReactionWhereInput | No |
some | ActionReactionWhereInput | No |
none | ActionReactionWhereInput | No |
Name | Type | Nullable |
---|---|---|
_count | SortOrder | No |
Name | Type | Nullable |
---|---|---|
reactionId | SortOrder | No |
serviceName | SortOrder | No |
reactionName | SortOrder | No |
outgoingWebhook | SortOrder | No |
enabled | SortOrder | No |
enabledChain | SortOrder | No |
Name | Type | Nullable |
---|---|---|
reactionId | SortOrder | No |
Name | Type | Nullable |
---|---|---|
reactionId | SortOrder | No |
serviceName | SortOrder | No |
reactionName | SortOrder | No |
outgoingWebhook | SortOrder | No |
enabled | SortOrder | No |
enabledChain | SortOrder | No |
Name | Type | Nullable |
---|---|---|
reactionId | SortOrder | No |
serviceName | SortOrder | No |
reactionName | SortOrder | No |
outgoingWebhook | SortOrder | No |
enabled | SortOrder | No |
enabledChain | SortOrder | No |
Name | Type | Nullable |
---|---|---|
reactionId | SortOrder | No |
Name | Type | Nullable |
---|---|---|
actionId | Int | No |
reactionId | Int | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
actionId | SortOrder | No |
reactionId | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
actionId | SortOrder | No |
reactionId | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
actionId | SortOrder | No |
reactionId | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
actionId | SortOrder | No |
reactionId | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
actionId | SortOrder | No |
reactionId | SortOrder | No |
Name | Type | Nullable |
---|---|---|
command | String | No |
userId | String | No |
serverId | String | No |
Name | Type | Nullable |
---|---|---|
command | SortOrder | No |
serverId | SortOrder | No |
userId | SortOrder | No |
webhookWebhookId | SortOrder | No |
Name | Type | Nullable |
---|---|---|
command | SortOrder | No |
serverId | SortOrder | No |
userId | SortOrder | No |
webhookWebhookId | SortOrder | No |
Name | Type | Nullable |
---|---|---|
command | SortOrder | No |
serverId | SortOrder | No |
userId | SortOrder | No |
webhookWebhookId | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
message | SortOrder | No |
channelId | SortOrder | No |
embed | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
message | SortOrder | No |
channelId | SortOrder | No |
embed | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
message | SortOrder | No |
channelId | SortOrder | No |
embed | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
Name | Type | Nullable |
---|---|---|
create | TokenCreateWithoutUserInput | TokenCreateWithoutUserInput[] | TokenUncheckedCreateWithoutUserInput | TokenUncheckedCreateWithoutUserInput[] | No |
connectOrCreate | TokenCreateOrConnectWithoutUserInput | TokenCreateOrConnectWithoutUserInput[] | No |
createMany | TokenCreateManyUserInputEnvelope | No |
connect | TokenWhereUniqueInput | TokenWhereUniqueInput[] | No |
Name | Type | Nullable |
---|---|---|
create | WebhookCreateWithoutUserInput | WebhookCreateWithoutUserInput[] | WebhookUncheckedCreateWithoutUserInput | WebhookUncheckedCreateWithoutUserInput[] | No |
connectOrCreate | WebhookCreateOrConnectWithoutUserInput | WebhookCreateOrConnectWithoutUserInput[] | No |
createMany | WebhookCreateManyUserInputEnvelope | No |
connect | WebhookWhereUniqueInput | WebhookWhereUniqueInput[] | No |
Name | Type | Nullable |
---|---|---|
create | oAuthUserDataCreateWithoutUserInput | oAuthUserDataCreateWithoutUserInput[] | oAuthUserDataUncheckedCreateWithoutUserInput | oAuthUserDataUncheckedCreateWithoutUserInput[] | No |
connectOrCreate | oAuthUserDataCreateOrConnectWithoutUserInput | oAuthUserDataCreateOrConnectWithoutUserInput[] | No |
createMany | oAuthUserDataCreateManyUserInputEnvelope | No |
connect | oAuthUserDataWhereUniqueInput | oAuthUserDataWhereUniqueInput[] | No |
Name | Type | Nullable |
---|---|---|
create | TokenCreateWithoutUserInput | TokenCreateWithoutUserInput[] | TokenUncheckedCreateWithoutUserInput | TokenUncheckedCreateWithoutUserInput[] | No |
connectOrCreate | TokenCreateOrConnectWithoutUserInput | TokenCreateOrConnectWithoutUserInput[] | No |
createMany | TokenCreateManyUserInputEnvelope | No |
connect | TokenWhereUniqueInput | TokenWhereUniqueInput[] | No |
Name | Type | Nullable |
---|---|---|
create | WebhookCreateWithoutUserInput | WebhookCreateWithoutUserInput[] | WebhookUncheckedCreateWithoutUserInput | WebhookUncheckedCreateWithoutUserInput[] | No |
connectOrCreate | WebhookCreateOrConnectWithoutUserInput | WebhookCreateOrConnectWithoutUserInput[] | No |
createMany | WebhookCreateManyUserInputEnvelope | No |
connect | WebhookWhereUniqueInput | WebhookWhereUniqueInput[] | No |
Name | Type | Nullable |
---|---|---|
create | oAuthUserDataCreateWithoutUserInput | oAuthUserDataCreateWithoutUserInput[] | oAuthUserDataUncheckedCreateWithoutUserInput | oAuthUserDataUncheckedCreateWithoutUserInput[] | No |
connectOrCreate | oAuthUserDataCreateOrConnectWithoutUserInput | oAuthUserDataCreateOrConnectWithoutUserInput[] | No |
createMany | oAuthUserDataCreateManyUserInputEnvelope | No |
connect | oAuthUserDataWhereUniqueInput | oAuthUserDataWhereUniqueInput[] | No |
Name | Type | Nullable |
---|---|---|
set | String | No |
Name | Type | Nullable |
---|---|---|
set | DateTime | No |
Name | Type | Nullable |
---|---|---|
set | Boolean | No |
Name | Type | Nullable |
---|---|---|
create | TokenCreateWithoutUserInput | TokenCreateWithoutUserInput[] | TokenUncheckedCreateWithoutUserInput | TokenUncheckedCreateWithoutUserInput[] | No |
connectOrCreate | TokenCreateOrConnectWithoutUserInput | TokenCreateOrConnectWithoutUserInput[] | No |
upsert | TokenUpsertWithWhereUniqueWithoutUserInput | TokenUpsertWithWhereUniqueWithoutUserInput[] | No |
createMany | TokenCreateManyUserInputEnvelope | No |
set | TokenWhereUniqueInput | TokenWhereUniqueInput[] | No |
disconnect | TokenWhereUniqueInput | TokenWhereUniqueInput[] | No |
delete | TokenWhereUniqueInput | TokenWhereUniqueInput[] | No |
connect | TokenWhereUniqueInput | TokenWhereUniqueInput[] | No |
update | TokenUpdateWithWhereUniqueWithoutUserInput | TokenUpdateWithWhereUniqueWithoutUserInput[] | No |
updateMany | TokenUpdateManyWithWhereWithoutUserInput | TokenUpdateManyWithWhereWithoutUserInput[] | No |
deleteMany | TokenScalarWhereInput | TokenScalarWhereInput[] | No |
Name | Type | Nullable |
---|---|---|
create | WebhookCreateWithoutUserInput | WebhookCreateWithoutUserInput[] | WebhookUncheckedCreateWithoutUserInput | WebhookUncheckedCreateWithoutUserInput[] | No |
connectOrCreate | WebhookCreateOrConnectWithoutUserInput | WebhookCreateOrConnectWithoutUserInput[] | No |
upsert | WebhookUpsertWithWhereUniqueWithoutUserInput | WebhookUpsertWithWhereUniqueWithoutUserInput[] | No |
createMany | WebhookCreateManyUserInputEnvelope | No |
set | WebhookWhereUniqueInput | WebhookWhereUniqueInput[] | No |
disconnect | WebhookWhereUniqueInput | WebhookWhereUniqueInput[] | No |
delete | WebhookWhereUniqueInput | WebhookWhereUniqueInput[] | No |
connect | WebhookWhereUniqueInput | WebhookWhereUniqueInput[] | No |
update | WebhookUpdateWithWhereUniqueWithoutUserInput | WebhookUpdateWithWhereUniqueWithoutUserInput[] | No |
updateMany | WebhookUpdateManyWithWhereWithoutUserInput | WebhookUpdateManyWithWhereWithoutUserInput[] | No |
deleteMany | WebhookScalarWhereInput | WebhookScalarWhereInput[] | No |
Name | Type | Nullable |
---|---|---|
create | TokenCreateWithoutUserInput | TokenCreateWithoutUserInput[] | TokenUncheckedCreateWithoutUserInput | TokenUncheckedCreateWithoutUserInput[] | No |
connectOrCreate | TokenCreateOrConnectWithoutUserInput | TokenCreateOrConnectWithoutUserInput[] | No |
upsert | TokenUpsertWithWhereUniqueWithoutUserInput | TokenUpsertWithWhereUniqueWithoutUserInput[] | No |
createMany | TokenCreateManyUserInputEnvelope | No |
set | TokenWhereUniqueInput | TokenWhereUniqueInput[] | No |
disconnect | TokenWhereUniqueInput | TokenWhereUniqueInput[] | No |
delete | TokenWhereUniqueInput | TokenWhereUniqueInput[] | No |
connect | TokenWhereUniqueInput | TokenWhereUniqueInput[] | No |
update | TokenUpdateWithWhereUniqueWithoutUserInput | TokenUpdateWithWhereUniqueWithoutUserInput[] | No |
updateMany | TokenUpdateManyWithWhereWithoutUserInput | TokenUpdateManyWithWhereWithoutUserInput[] | No |
deleteMany | TokenScalarWhereInput | TokenScalarWhereInput[] | No |
Name | Type | Nullable |
---|---|---|
create | WebhookCreateWithoutUserInput | WebhookCreateWithoutUserInput[] | WebhookUncheckedCreateWithoutUserInput | WebhookUncheckedCreateWithoutUserInput[] | No |
connectOrCreate | WebhookCreateOrConnectWithoutUserInput | WebhookCreateOrConnectWithoutUserInput[] | No |
upsert | WebhookUpsertWithWhereUniqueWithoutUserInput | WebhookUpsertWithWhereUniqueWithoutUserInput[] | No |
createMany | WebhookCreateManyUserInputEnvelope | No |
set | WebhookWhereUniqueInput | WebhookWhereUniqueInput[] | No |
disconnect | WebhookWhereUniqueInput | WebhookWhereUniqueInput[] | No |
delete | WebhookWhereUniqueInput | WebhookWhereUniqueInput[] | No |
connect | WebhookWhereUniqueInput | WebhookWhereUniqueInput[] | No |
update | WebhookUpdateWithWhereUniqueWithoutUserInput | WebhookUpdateWithWhereUniqueWithoutUserInput[] | No |
updateMany | WebhookUpdateManyWithWhereWithoutUserInput | WebhookUpdateManyWithWhereWithoutUserInput[] | No |
deleteMany | WebhookScalarWhereInput | WebhookScalarWhereInput[] | No |
Name | Type | Nullable |
---|---|---|
create | UserCreateWithoutOAuthUserDataInput | UserUncheckedCreateWithoutOAuthUserDataInput | No |
connectOrCreate | UserCreateOrConnectWithoutOAuthUserDataInput | No |
connect | UserWhereUniqueInput | No |
Name | Type | Nullable |
---|---|---|
create | oAuthProviderCreateWithoutOAuthUserDataInput | oAuthProviderUncheckedCreateWithoutOAuthUserDataInput | No |
connectOrCreate | oAuthProviderCreateOrConnectWithoutOAuthUserDataInput | No |
connect | oAuthProviderWhereUniqueInput | No |
Name | Type | Nullable |
---|---|---|
create | UserCreateWithoutOAuthUserDataInput | UserUncheckedCreateWithoutOAuthUserDataInput | No |
connectOrCreate | UserCreateOrConnectWithoutOAuthUserDataInput | No |
upsert | UserUpsertWithoutOAuthUserDataInput | No |
connect | UserWhereUniqueInput | No |
update | UserUpdateWithoutOAuthUserDataInput | UserUncheckedUpdateWithoutOAuthUserDataInput | No |
Name | Type | Nullable |
---|---|---|
create | oAuthProviderCreateWithoutOAuthUserDataInput | oAuthProviderUncheckedCreateWithoutOAuthUserDataInput | No |
connectOrCreate | oAuthProviderCreateOrConnectWithoutOAuthUserDataInput | No |
upsert | oAuthProviderUpsertWithoutOAuthUserDataInput | No |
connect | oAuthProviderWhereUniqueInput | No |
update | oAuthProviderUpdateWithoutOAuthUserDataInput | oAuthProviderUncheckedUpdateWithoutOAuthUserDataInput | No |
Name | Type | Nullable |
---|---|---|
create | ServiceCreateWithoutOAuthProviderInput | ServiceUncheckedCreateWithoutOAuthProviderInput | No |
connectOrCreate | ServiceCreateOrConnectWithoutOAuthProviderInput | No |
connect | ServiceWhereUniqueInput | No |
Name | Type | Nullable |
---|---|---|
create | ServiceCreateWithoutOAuthProviderInput | ServiceUncheckedCreateWithoutOAuthProviderInput | No |
connectOrCreate | ServiceCreateOrConnectWithoutOAuthProviderInput | No |
upsert | ServiceUpsertWithoutOAuthProviderInput | No |
disconnect | Boolean | No |
delete | Boolean | No |
connect | ServiceWhereUniqueInput | No |
update | ServiceUpdateWithoutOAuthProviderInput | ServiceUncheckedUpdateWithoutOAuthProviderInput | No |
Name | Type | Nullable |
---|---|---|
set | String | Null | Yes |
Name | Type | Nullable |
---|---|---|
create | UserCreateWithoutTokensInput | UserUncheckedCreateWithoutTokensInput | No |
connectOrCreate | UserCreateOrConnectWithoutTokensInput | No |
connect | UserWhereUniqueInput | No |
Name | Type | Nullable |
---|---|---|
create | UserCreateWithoutTokensInput | UserUncheckedCreateWithoutTokensInput | No |
connectOrCreate | UserCreateOrConnectWithoutTokensInput | No |
upsert | UserUpsertWithoutTokensInput | No |
connect | UserWhereUniqueInput | No |
update | UserUpdateWithoutTokensInput | UserUncheckedUpdateWithoutTokensInput | No |
Name | Type | Nullable |
---|---|---|
set | TokenType | No |
Name | Type | Nullable |
---|---|---|
create | ReactCreateWithoutServiceInput | ReactCreateWithoutServiceInput[] | ReactUncheckedCreateWithoutServiceInput | ReactUncheckedCreateWithoutServiceInput[] | No |
connectOrCreate | ReactCreateOrConnectWithoutServiceInput | ReactCreateOrConnectWithoutServiceInput[] | No |
createMany | ReactCreateManyServiceInputEnvelope | No |
connect | ReactWhereUniqueInput | ReactWhereUniqueInput[] | No |
Name | Type | Nullable |
---|---|---|
create | oAuthProviderCreateWithoutServiceInput | oAuthProviderUncheckedCreateWithoutServiceInput | No |
connectOrCreate | oAuthProviderCreateOrConnectWithoutServiceInput | No |
connect | oAuthProviderWhereUniqueInput | No |
Name | Type | Nullable |
---|---|---|
create | ReactionCreateWithoutServiceInput | ReactionCreateWithoutServiceInput[] | ReactionUncheckedCreateWithoutServiceInput | ReactionUncheckedCreateWithoutServiceInput[] | No |
connectOrCreate | ReactionCreateOrConnectWithoutServiceInput | ReactionCreateOrConnectWithoutServiceInput[] | No |
createMany | ReactionCreateManyServiceInputEnvelope | No |
connect | ReactionWhereUniqueInput | ReactionWhereUniqueInput[] | No |
Name | Type | Nullable |
---|---|---|
create | ActionCreateWithoutServiceInput | ActionCreateWithoutServiceInput[] | ActionUncheckedCreateWithoutServiceInput | ActionUncheckedCreateWithoutServiceInput[] | No |
connectOrCreate | ActionCreateOrConnectWithoutServiceInput | ActionCreateOrConnectWithoutServiceInput[] | No |
createMany | ActionCreateManyServiceInputEnvelope | No |
connect | ActionWhereUniqueInput | ActionWhereUniqueInput[] | No |
Name | Type | Nullable |
---|---|---|
create | ReactCreateWithoutServiceInput | ReactCreateWithoutServiceInput[] | ReactUncheckedCreateWithoutServiceInput | ReactUncheckedCreateWithoutServiceInput[] | No |
connectOrCreate | ReactCreateOrConnectWithoutServiceInput | ReactCreateOrConnectWithoutServiceInput[] | No |
createMany | ReactCreateManyServiceInputEnvelope | No |
connect | ReactWhereUniqueInput | ReactWhereUniqueInput[] | No |
Name | Type | Nullable |
---|---|---|
create | oAuthProviderCreateWithoutServiceInput | oAuthProviderUncheckedCreateWithoutServiceInput | No |
connectOrCreate | oAuthProviderCreateOrConnectWithoutServiceInput | No |
connect | oAuthProviderWhereUniqueInput | No |
Name | Type | Nullable |
---|---|---|
create | ReactionCreateWithoutServiceInput | ReactionCreateWithoutServiceInput[] | ReactionUncheckedCreateWithoutServiceInput | ReactionUncheckedCreateWithoutServiceInput[] | No |
connectOrCreate | ReactionCreateOrConnectWithoutServiceInput | ReactionCreateOrConnectWithoutServiceInput[] | No |
createMany | ReactionCreateManyServiceInputEnvelope | No |
connect | ReactionWhereUniqueInput | ReactionWhereUniqueInput[] | No |
Name | Type | Nullable |
---|---|---|
create | ActionCreateWithoutServiceInput | ActionCreateWithoutServiceInput[] | ActionUncheckedCreateWithoutServiceInput | ActionUncheckedCreateWithoutServiceInput[] | No |
connectOrCreate | ActionCreateOrConnectWithoutServiceInput | ActionCreateOrConnectWithoutServiceInput[] | No |
createMany | ActionCreateManyServiceInputEnvelope | No |
connect | ActionWhereUniqueInput | ActionWhereUniqueInput[] | No |
Name | Type | Nullable |
---|---|---|
create | ReactCreateWithoutServiceInput | ReactCreateWithoutServiceInput[] | ReactUncheckedCreateWithoutServiceInput | ReactUncheckedCreateWithoutServiceInput[] | No |
connectOrCreate | ReactCreateOrConnectWithoutServiceInput | ReactCreateOrConnectWithoutServiceInput[] | No |
upsert | ReactUpsertWithWhereUniqueWithoutServiceInput | ReactUpsertWithWhereUniqueWithoutServiceInput[] | No |
createMany | ReactCreateManyServiceInputEnvelope | No |
set | ReactWhereUniqueInput | ReactWhereUniqueInput[] | No |
disconnect | ReactWhereUniqueInput | ReactWhereUniqueInput[] | No |
delete | ReactWhereUniqueInput | ReactWhereUniqueInput[] | No |
connect | ReactWhereUniqueInput | ReactWhereUniqueInput[] | No |
update | ReactUpdateWithWhereUniqueWithoutServiceInput | ReactUpdateWithWhereUniqueWithoutServiceInput[] | No |
updateMany | ReactUpdateManyWithWhereWithoutServiceInput | ReactUpdateManyWithWhereWithoutServiceInput[] | No |
deleteMany | ReactScalarWhereInput | ReactScalarWhereInput[] | No |
Name | Type | Nullable |
---|---|---|
create | oAuthProviderCreateWithoutServiceInput | oAuthProviderUncheckedCreateWithoutServiceInput | No |
connectOrCreate | oAuthProviderCreateOrConnectWithoutServiceInput | No |
upsert | oAuthProviderUpsertWithoutServiceInput | No |
disconnect | Boolean | No |
delete | Boolean | No |
connect | oAuthProviderWhereUniqueInput | No |
update | oAuthProviderUpdateWithoutServiceInput | oAuthProviderUncheckedUpdateWithoutServiceInput | No |
Name | Type | Nullable |
---|---|---|
create | ActionCreateWithoutServiceInput | ActionCreateWithoutServiceInput[] | ActionUncheckedCreateWithoutServiceInput | ActionUncheckedCreateWithoutServiceInput[] | No |
connectOrCreate | ActionCreateOrConnectWithoutServiceInput | ActionCreateOrConnectWithoutServiceInput[] | No |
upsert | ActionUpsertWithWhereUniqueWithoutServiceInput | ActionUpsertWithWhereUniqueWithoutServiceInput[] | No |
createMany | ActionCreateManyServiceInputEnvelope | No |
set | ActionWhereUniqueInput | ActionWhereUniqueInput[] | No |
disconnect | ActionWhereUniqueInput | ActionWhereUniqueInput[] | No |
delete | ActionWhereUniqueInput | ActionWhereUniqueInput[] | No |
connect | ActionWhereUniqueInput | ActionWhereUniqueInput[] | No |
update | ActionUpdateWithWhereUniqueWithoutServiceInput | ActionUpdateWithWhereUniqueWithoutServiceInput[] | No |
updateMany | ActionUpdateManyWithWhereWithoutServiceInput | ActionUpdateManyWithWhereWithoutServiceInput[] | No |
deleteMany | ActionScalarWhereInput | ActionScalarWhereInput[] | No |
Name | Type | Nullable |
---|---|---|
create | ReactCreateWithoutServiceInput | ReactCreateWithoutServiceInput[] | ReactUncheckedCreateWithoutServiceInput | ReactUncheckedCreateWithoutServiceInput[] | No |
connectOrCreate | ReactCreateOrConnectWithoutServiceInput | ReactCreateOrConnectWithoutServiceInput[] | No |
upsert | ReactUpsertWithWhereUniqueWithoutServiceInput | ReactUpsertWithWhereUniqueWithoutServiceInput[] | No |
createMany | ReactCreateManyServiceInputEnvelope | No |
set | ReactWhereUniqueInput | ReactWhereUniqueInput[] | No |
disconnect | ReactWhereUniqueInput | ReactWhereUniqueInput[] | No |
delete | ReactWhereUniqueInput | ReactWhereUniqueInput[] | No |
connect | ReactWhereUniqueInput | ReactWhereUniqueInput[] | No |
update | ReactUpdateWithWhereUniqueWithoutServiceInput | ReactUpdateWithWhereUniqueWithoutServiceInput[] | No |
updateMany | ReactUpdateManyWithWhereWithoutServiceInput | ReactUpdateManyWithWhereWithoutServiceInput[] | No |
deleteMany | ReactScalarWhereInput | ReactScalarWhereInput[] | No |
Name | Type | Nullable |
---|---|---|
create | oAuthProviderCreateWithoutServiceInput | oAuthProviderUncheckedCreateWithoutServiceInput | No |
connectOrCreate | oAuthProviderCreateOrConnectWithoutServiceInput | No |
upsert | oAuthProviderUpsertWithoutServiceInput | No |
disconnect | Boolean | No |
delete | Boolean | No |
connect | oAuthProviderWhereUniqueInput | No |
update | oAuthProviderUpdateWithoutServiceInput | oAuthProviderUncheckedUpdateWithoutServiceInput | No |
Name | Type | Nullable |
---|---|---|
create | ActionCreateWithoutServiceInput | ActionCreateWithoutServiceInput[] | ActionUncheckedCreateWithoutServiceInput | ActionUncheckedCreateWithoutServiceInput[] | No |
connectOrCreate | ActionCreateOrConnectWithoutServiceInput | ActionCreateOrConnectWithoutServiceInput[] | No |
upsert | ActionUpsertWithWhereUniqueWithoutServiceInput | ActionUpsertWithWhereUniqueWithoutServiceInput[] | No |
createMany | ActionCreateManyServiceInputEnvelope | No |
set | ActionWhereUniqueInput | ActionWhereUniqueInput[] | No |
disconnect | ActionWhereUniqueInput | ActionWhereUniqueInput[] | No |
delete | ActionWhereUniqueInput | ActionWhereUniqueInput[] | No |
connect | ActionWhereUniqueInput | ActionWhereUniqueInput[] | No |
update | ActionUpdateWithWhereUniqueWithoutServiceInput | ActionUpdateWithWhereUniqueWithoutServiceInput[] | No |
updateMany | ActionUpdateManyWithWhereWithoutServiceInput | ActionUpdateManyWithWhereWithoutServiceInput[] | No |
deleteMany | ActionScalarWhereInput | ActionScalarWhereInput[] | No |
Name | Type | Nullable |
---|---|---|
create | UserCreateWithoutWebhookInput | UserUncheckedCreateWithoutWebhookInput | No |
connectOrCreate | UserCreateOrConnectWithoutWebhookInput | No |
connect | UserWhereUniqueInput | No |
Name | Type | Nullable |
---|---|---|
create | ReactionCreateWithoutIncomingWebhookInput | ReactionUncheckedCreateWithoutIncomingWebhookInput | No |
connectOrCreate | ReactionCreateOrConnectWithoutIncomingWebhookInput | No |
connect | ReactionWhereUniqueInput | No |
Name | Type | Nullable |
---|---|---|
create | ServiceCreateWithoutWebhookInput | ServiceUncheckedCreateWithoutWebhookInput | No |
connectOrCreate | ServiceCreateOrConnectWithoutWebhookInput | No |
connect | ServiceWhereUniqueInput | No |
Name | Type | Nullable |
---|---|---|
create | UserCreateWithoutWebhookInput | UserUncheckedCreateWithoutWebhookInput | No |
connectOrCreate | UserCreateOrConnectWithoutWebhookInput | No |
upsert | UserUpsertWithoutWebhookInput | No |
connect | UserWhereUniqueInput | No |
update | UserUpdateWithoutWebhookInput | UserUncheckedUpdateWithoutWebhookInput | No |
Name | Type | Nullable |
---|---|---|
create | ReactionCreateWithoutIncomingWebhookInput | ReactionUncheckedCreateWithoutIncomingWebhookInput | No |
connectOrCreate | ReactionCreateOrConnectWithoutIncomingWebhookInput | No |
upsert | ReactionUpsertWithoutIncomingWebhookInput | No |
connect | ReactionWhereUniqueInput | No |
update | ReactionUpdateWithoutIncomingWebhookInput | ReactionUncheckedUpdateWithoutIncomingWebhookInput | No |
Name | Type | Nullable |
---|---|---|
create | ServiceCreateWithoutWebhookInput | ServiceUncheckedCreateWithoutWebhookInput | No |
connectOrCreate | ServiceCreateOrConnectWithoutWebhookInput | No |
upsert | ServiceUpsertWithoutWebhookInput | No |
connect | ServiceWhereUniqueInput | No |
update | ServiceUpdateWithoutWebhookInput | ServiceUncheckedUpdateWithoutWebhookInput | No |
Name | Type | Nullable |
---|---|---|
set | Int | No |
increment | Int | No |
decrement | Int | No |
multiply | Int | No |
divide | Int | No |
Name | Type | Nullable |
---|---|---|
create | ServiceCreateWithoutActionInput | ServiceUncheckedCreateWithoutActionInput | No |
connectOrCreate | ServiceCreateOrConnectWithoutActionInput | No |
connect | ServiceWhereUniqueInput | No |
Name | Type | Nullable |
---|---|---|
create | ServiceCreateWithoutActionInput | ServiceUncheckedCreateWithoutActionInput | No |
connectOrCreate | ServiceCreateOrConnectWithoutActionInput | No |
upsert | ServiceUpsertWithoutActionInput | No |
connect | ServiceWhereUniqueInput | No |
update | ServiceUpdateWithoutActionInput | ServiceUncheckedUpdateWithoutActionInput | No |
Name | Type | Nullable |
---|---|---|
create | ServiceCreateWithoutReactInput | ServiceUncheckedCreateWithoutReactInput | No |
connectOrCreate | ServiceCreateOrConnectWithoutReactInput | No |
connect | ServiceWhereUniqueInput | No |
Name | Type | Nullable |
---|---|---|
create | ReactionCreateWithoutReactInput | ReactionCreateWithoutReactInput[] | ReactionUncheckedCreateWithoutReactInput | ReactionUncheckedCreateWithoutReactInput[] | No |
connectOrCreate | ReactionCreateOrConnectWithoutReactInput | ReactionCreateOrConnectWithoutReactInput[] | No |
createMany | ReactionCreateManyReactInputEnvelope | No |
connect | ReactionWhereUniqueInput | ReactionWhereUniqueInput[] | No |
Name | Type | Nullable |
---|---|---|
create | ReactionCreateWithoutReactInput | ReactionCreateWithoutReactInput[] | ReactionUncheckedCreateWithoutReactInput | ReactionUncheckedCreateWithoutReactInput[] | No |
connectOrCreate | ReactionCreateOrConnectWithoutReactInput | ReactionCreateOrConnectWithoutReactInput[] | No |
createMany | ReactionCreateManyReactInputEnvelope | No |
connect | ReactionWhereUniqueInput | ReactionWhereUniqueInput[] | No |
Name | Type | Nullable |
---|---|---|
create | ServiceCreateWithoutReactInput | ServiceUncheckedCreateWithoutReactInput | No |
connectOrCreate | ServiceCreateOrConnectWithoutReactInput | No |
upsert | ServiceUpsertWithoutReactInput | No |
connect | ServiceWhereUniqueInput | No |
update | ServiceUpdateWithoutReactInput | ServiceUncheckedUpdateWithoutReactInput | No |
Name | Type | Nullable |
---|---|---|
create | ReactionCreateWithoutReactInput | ReactionCreateWithoutReactInput[] | ReactionUncheckedCreateWithoutReactInput | ReactionUncheckedCreateWithoutReactInput[] | No |
connectOrCreate | ReactionCreateOrConnectWithoutReactInput | ReactionCreateOrConnectWithoutReactInput[] | No |
upsert | ReactionUpsertWithWhereUniqueWithoutReactInput | ReactionUpsertWithWhereUniqueWithoutReactInput[] | No |
createMany | ReactionCreateManyReactInputEnvelope | No |
set | ReactionWhereUniqueInput | ReactionWhereUniqueInput[] | No |
disconnect | ReactionWhereUniqueInput | ReactionWhereUniqueInput[] | No |
delete | ReactionWhereUniqueInput | ReactionWhereUniqueInput[] | No |
connect | ReactionWhereUniqueInput | ReactionWhereUniqueInput[] | No |
update | ReactionUpdateWithWhereUniqueWithoutReactInput | ReactionUpdateWithWhereUniqueWithoutReactInput[] | No |
updateMany | ReactionUpdateManyWithWhereWithoutReactInput | ReactionUpdateManyWithWhereWithoutReactInput[] | No |
deleteMany | ReactionScalarWhereInput | ReactionScalarWhereInput[] | No |
Name | Type | Nullable |
---|---|---|
create | ReactionCreateWithoutReactInput | ReactionCreateWithoutReactInput[] | ReactionUncheckedCreateWithoutReactInput | ReactionUncheckedCreateWithoutReactInput[] | No |
connectOrCreate | ReactionCreateOrConnectWithoutReactInput | ReactionCreateOrConnectWithoutReactInput[] | No |
upsert | ReactionUpsertWithWhereUniqueWithoutReactInput | ReactionUpsertWithWhereUniqueWithoutReactInput[] | No |
createMany | ReactionCreateManyReactInputEnvelope | No |
set | ReactionWhereUniqueInput | ReactionWhereUniqueInput[] | No |
disconnect | ReactionWhereUniqueInput | ReactionWhereUniqueInput[] | No |
delete | ReactionWhereUniqueInput | ReactionWhereUniqueInput[] | No |
connect | ReactionWhereUniqueInput | ReactionWhereUniqueInput[] | No |
update | ReactionUpdateWithWhereUniqueWithoutReactInput | ReactionUpdateWithWhereUniqueWithoutReactInput[] | No |
updateMany | ReactionUpdateManyWithWhereWithoutReactInput | ReactionUpdateManyWithWhereWithoutReactInput[] | No |
deleteMany | ReactionScalarWhereInput | ReactionScalarWhereInput[] | No |
Name | Type | Nullable |
---|---|---|
create | ServiceCreateWithoutReactionInput | ServiceUncheckedCreateWithoutReactionInput | No |
connectOrCreate | ServiceCreateOrConnectWithoutReactionInput | No |
connect | ServiceWhereUniqueInput | No |
Name | Type | Nullable |
---|---|---|
create | ReactCreateWithoutReactionInput | ReactUncheckedCreateWithoutReactionInput | No |
connectOrCreate | ReactCreateOrConnectWithoutReactionInput | No |
connect | ReactWhereUniqueInput | No |
Name | Type | Nullable |
---|---|---|
create | WebhookCreateWithoutReactionInput | WebhookUncheckedCreateWithoutReactionInput | No |
connectOrCreate | WebhookCreateOrConnectWithoutReactionInput | No |
connect | WebhookWhereUniqueInput | No |
Name | Type | Nullable |
---|---|---|
create | WebhookCreateWithoutReactionInput | WebhookUncheckedCreateWithoutReactionInput | No |
connectOrCreate | WebhookCreateOrConnectWithoutReactionInput | No |
connect | WebhookWhereUniqueInput | No |
Name | Type | Nullable |
---|---|---|
create | ServiceCreateWithoutReactionInput | ServiceUncheckedCreateWithoutReactionInput | No |
connectOrCreate | ServiceCreateOrConnectWithoutReactionInput | No |
upsert | ServiceUpsertWithoutReactionInput | No |
connect | ServiceWhereUniqueInput | No |
update | ServiceUpdateWithoutReactionInput | ServiceUncheckedUpdateWithoutReactionInput | No |
Name | Type | Nullable |
---|---|---|
create | ReactCreateWithoutReactionInput | ReactUncheckedCreateWithoutReactionInput | No |
connectOrCreate | ReactCreateOrConnectWithoutReactionInput | No |
upsert | ReactUpsertWithoutReactionInput | No |
connect | ReactWhereUniqueInput | No |
update | ReactUpdateWithoutReactionInput | ReactUncheckedUpdateWithoutReactionInput | No |
Name | Type | Nullable |
---|---|---|
create | WebhookCreateWithoutReactionInput | WebhookUncheckedCreateWithoutReactionInput | No |
connectOrCreate | WebhookCreateOrConnectWithoutReactionInput | No |
upsert | WebhookUpsertWithoutReactionInput | No |
disconnect | Boolean | No |
delete | Boolean | No |
connect | WebhookWhereUniqueInput | No |
update | WebhookUpdateWithoutReactionInput | WebhookUncheckedUpdateWithoutReactionInput | No |
Name | Type | Nullable |
---|---|---|
create | WebhookCreateWithoutReactionInput | WebhookUncheckedCreateWithoutReactionInput | No |
connectOrCreate | WebhookCreateOrConnectWithoutReactionInput | No |
upsert | WebhookUpsertWithoutReactionInput | No |
disconnect | Boolean | No |
delete | Boolean | No |
connect | WebhookWhereUniqueInput | No |
update | WebhookUpdateWithoutReactionInput | WebhookUncheckedUpdateWithoutReactionInput | No |
Name | Type | Nullable |
---|---|---|
create | ReactionCreateWithoutActionsInput | ReactionUncheckedCreateWithoutActionsInput | No |
connectOrCreate | ReactionCreateOrConnectWithoutActionsInput | No |
connect | ReactionWhereUniqueInput | No |
Name | Type | Nullable |
---|---|---|
create | ReactionCreateWithoutReactionsInput | ReactionUncheckedCreateWithoutReactionsInput | No |
connectOrCreate | ReactionCreateOrConnectWithoutReactionsInput | No |
connect | ReactionWhereUniqueInput | No |
Name | Type | Nullable |
---|---|---|
create | ReactionCreateWithoutActionsInput | ReactionUncheckedCreateWithoutActionsInput | No |
connectOrCreate | ReactionCreateOrConnectWithoutActionsInput | No |
upsert | ReactionUpsertWithoutActionsInput | No |
connect | ReactionWhereUniqueInput | No |
update | ReactionUpdateWithoutActionsInput | ReactionUncheckedUpdateWithoutActionsInput | No |
Name | Type | Nullable |
---|---|---|
create | ReactionCreateWithoutReactionsInput | ReactionUncheckedCreateWithoutReactionsInput | No |
connectOrCreate | ReactionCreateOrConnectWithoutReactionsInput | No |
upsert | ReactionUpsertWithoutReactionsInput | No |
connect | ReactionWhereUniqueInput | No |
update | ReactionUpdateWithoutReactionsInput | ReactionUncheckedUpdateWithoutReactionsInput | No |
Name | Type | Nullable |
---|---|---|
create | UserCreateWithoutDiscordBotWebhookInput | UserUncheckedCreateWithoutDiscordBotWebhookInput | No |
connectOrCreate | UserCreateOrConnectWithoutDiscordBotWebhookInput | No |
connect | UserWhereUniqueInput | No |
Name | Type | Nullable |
---|---|---|
create | WebhookCreateWithoutDiscordBotWebhookInput | WebhookUncheckedCreateWithoutDiscordBotWebhookInput | No |
connectOrCreate | WebhookCreateOrConnectWithoutDiscordBotWebhookInput | No |
connect | WebhookWhereUniqueInput | No |
Name | Type | Nullable |
---|---|---|
create | UserCreateWithoutDiscordBotWebhookInput | UserUncheckedCreateWithoutDiscordBotWebhookInput | No |
connectOrCreate | UserCreateOrConnectWithoutDiscordBotWebhookInput | No |
upsert | UserUpsertWithoutDiscordBotWebhookInput | No |
disconnect | Boolean | No |
delete | Boolean | No |
connect | UserWhereUniqueInput | No |
update | UserUpdateWithoutDiscordBotWebhookInput | UserUncheckedUpdateWithoutDiscordBotWebhookInput | No |
Name | Type | Nullable |
---|---|---|
create | WebhookCreateWithoutDiscordBotWebhookInput | WebhookUncheckedCreateWithoutDiscordBotWebhookInput | No |
connectOrCreate | WebhookCreateOrConnectWithoutDiscordBotWebhookInput | No |
upsert | WebhookUpsertWithoutDiscordBotWebhookInput | No |
connect | WebhookWhereUniqueInput | No |
update | WebhookUpdateWithoutDiscordBotWebhookInput | WebhookUncheckedUpdateWithoutDiscordBotWebhookInput | No |
Name | Type | Nullable |
---|---|---|
equals | String | No |
in | String | No |
notIn | String | No |
lt | String | No |
lte | String | No |
gt | String | No |
gte | String | No |
contains | String | No |
startsWith | String | No |
endsWith | String | No |
not | String | NestedStringFilter | No |
Name | Type | Nullable |
---|---|---|
equals | DateTime | No |
in | DateTime | No |
notIn | DateTime | No |
lt | DateTime | No |
lte | DateTime | No |
gt | DateTime | No |
gte | DateTime | No |
not | DateTime | NestedDateTimeFilter | No |
Name | Type | Nullable |
---|---|---|
equals | Boolean | No |
not | Boolean | NestedBoolFilter | No |
Name | Type | Nullable |
---|---|---|
equals | String | No |
in | String | No |
notIn | String | No |
lt | String | No |
lte | String | No |
gt | String | No |
gte | String | No |
contains | String | No |
startsWith | String | No |
endsWith | String | No |
not | String | NestedStringWithAggregatesFilter | No |
_count | NestedIntFilter | No |
_min | NestedStringFilter | No |
_max | NestedStringFilter | No |
Name | Type | Nullable |
---|---|---|
equals | Int | No |
in | Int | No |
notIn | Int | No |
lt | Int | No |
lte | Int | No |
gt | Int | No |
gte | Int | No |
not | Int | NestedIntFilter | No |
Name | Type | Nullable |
---|---|---|
equals | DateTime | No |
in | DateTime | No |
notIn | DateTime | No |
lt | DateTime | No |
lte | DateTime | No |
gt | DateTime | No |
gte | DateTime | No |
not | DateTime | NestedDateTimeWithAggregatesFilter | No |
_count | NestedIntFilter | No |
_min | NestedDateTimeFilter | No |
_max | NestedDateTimeFilter | No |
Name | Type | Nullable |
---|---|---|
equals | Boolean | No |
not | Boolean | NestedBoolWithAggregatesFilter | No |
_count | NestedIntFilter | No |
_min | NestedBoolFilter | No |
_max | NestedBoolFilter | No |
Name | Type | Nullable |
---|---|---|
equals | Json | JsonNullValueFilter | No |
path | String | No |
string_contains | String | No |
string_starts_with | String | No |
string_ends_with | String | No |
array_contains | Json | Null | Yes |
array_starts_with | Json | Null | Yes |
array_ends_with | Json | Null | Yes |
lt | Json | No |
lte | Json | No |
gt | Json | No |
gte | Json | No |
not | Json | JsonNullValueFilter | No |
Name | Type | Nullable |
---|---|---|
equals | String | Null | Yes |
in | String | Null | Yes |
notIn | String | Null | Yes |
lt | String | No |
lte | String | No |
gt | String | No |
gte | String | No |
contains | String | No |
startsWith | String | No |
endsWith | String | No |
not | String | NestedStringNullableFilter | Null | Yes |
Name | Type | Nullable |
---|---|---|
equals | String | Null | Yes |
in | String | Null | Yes |
notIn | String | Null | Yes |
lt | String | No |
lte | String | No |
gt | String | No |
gte | String | No |
contains | String | No |
startsWith | String | No |
endsWith | String | No |
not | String | NestedStringNullableWithAggregatesFilter | Null | Yes |
_count | NestedIntNullableFilter | No |
_min | NestedStringNullableFilter | No |
_max | NestedStringNullableFilter | No |
Name | Type | Nullable |
---|---|---|
equals | Int | Null | Yes |
in | Int | Null | Yes |
notIn | Int | Null | Yes |
lt | Int | No |
lte | Int | No |
gt | Int | No |
gte | Int | No |
not | Int | NestedIntNullableFilter | Null | Yes |
Name | Type | Nullable |
---|---|---|
equals | TokenType | No |
in | TokenType[] | No |
notIn | TokenType[] | No |
not | TokenType | NestedEnumTokenTypeFilter | No |
Name | Type | Nullable |
---|---|---|
equals | TokenType | No |
in | TokenType[] | No |
notIn | TokenType[] | No |
not | TokenType | NestedEnumTokenTypeWithAggregatesFilter | No |
_count | NestedIntFilter | No |
_min | NestedEnumTokenTypeFilter | No |
_max | NestedEnumTokenTypeFilter | No |
Name | Type | Nullable |
---|---|---|
equals | Int | No |
in | Int | No |
notIn | Int | No |
lt | Int | No |
lte | Int | No |
gt | Int | No |
gte | Int | No |
not | Int | NestedIntWithAggregatesFilter | No |
_count | NestedIntFilter | No |
_avg | NestedFloatFilter | No |
_sum | NestedIntFilter | No |
_min | NestedIntFilter | No |
_max | NestedIntFilter | No |
Name | Type | Nullable |
---|---|---|
equals | Float | No |
in | Float | No |
notIn | Float | No |
lt | Float | No |
lte | Float | No |
gt | Float | No |
gte | Float | No |
not | Float | NestedFloatFilter | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
createdAt | DateTime | No |
updatedAt | DateTime | No |
valid | Boolean | No |
type | TokenType | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
createdAt | DateTime | No |
updatedAt | DateTime | No |
valid | Boolean | No |
type | TokenType | No |
Name | Type | Nullable |
---|---|---|
where | TokenWhereUniqueInput | No |
create | TokenCreateWithoutUserInput | TokenUncheckedCreateWithoutUserInput | No |
Name | Type | Nullable |
---|---|---|
data | TokenCreateManyUserInput[] | No |
skipDuplicates | Boolean | No |
Name | Type | Nullable |
---|---|---|
webhookId | String | No |
reaction | ReactionCreateNestedOneWithoutIncomingWebhookInput | No |
incomingService | ServiceCreateNestedOneWithoutWebhookInput | No |
DiscordBotWebhook | DiscordBotWebhookCreateNestedManyWithoutWebhookInput | No |
Name | Type | Nullable |
---|---|---|
webhookId | String | No |
reactionId | Int | No |
incomingServiceName | String | No |
DiscordBotWebhook | DiscordBotWebhookUncheckedCreateNestedManyWithoutWebhookInput | No |
Name | Type | Nullable |
---|---|---|
where | WebhookWhereUniqueInput | No |
create | WebhookCreateWithoutUserInput | WebhookUncheckedCreateWithoutUserInput | No |
Name | Type | Nullable |
---|---|---|
data | WebhookCreateManyUserInput[] | No |
skipDuplicates | Boolean | No |
Name | Type | Nullable |
---|---|---|
command | String | No |
serverId | String | No |
webhook | WebhookCreateNestedOneWithoutDiscordBotWebhookInput | No |
Name | Type | Nullable |
---|---|---|
command | String | No |
serverId | String | No |
webhookWebhookId | String | No |
Name | Type | Nullable |
---|---|---|
where | DiscordBotWebhookWhereUniqueInput | No |
create | DiscordBotWebhookCreateWithoutUserInput | DiscordBotWebhookUncheckedCreateWithoutUserInput | No |
Name | Type | Nullable |
---|---|---|
data | DiscordBotWebhookCreateManyUserInput[] | No |
skipDuplicates | Boolean | No |
Name | Type | Nullable |
---|---|---|
oAuthUserDataId | String | No |
providerUserId | String | No |
data | JsonNullValueInput | Json | No |
accessToken | String | No |
refreshToken | String | No |
oAuthProvider | oAuthProviderCreateNestedOneWithoutOAuthUserDataInput | No |
Name | Type | Nullable |
---|---|---|
oAuthUserDataId | String | No |
providerUserId | String | No |
data | JsonNullValueInput | Json | No |
accessToken | String | No |
refreshToken | String | No |
oAuthProviderName | String | No |
Name | Type | Nullable |
---|---|---|
where | oAuthUserDataWhereUniqueInput | No |
create | oAuthUserDataCreateWithoutUserInput | oAuthUserDataUncheckedCreateWithoutUserInput | No |
Name | Type | Nullable |
---|---|---|
data | oAuthUserDataCreateManyUserInput[] | No |
skipDuplicates | Boolean | No |
Name | Type | Nullable |
---|---|---|
where | TokenWhereUniqueInput | No |
update | TokenUpdateWithoutUserInput | TokenUncheckedUpdateWithoutUserInput | No |
create | TokenCreateWithoutUserInput | TokenUncheckedCreateWithoutUserInput | No |
Name | Type | Nullable |
---|---|---|
where | TokenWhereUniqueInput | No |
data | TokenUpdateWithoutUserInput | TokenUncheckedUpdateWithoutUserInput | No |
Name | Type | Nullable |
---|---|---|
where | TokenScalarWhereInput | No |
data | TokenUpdateManyMutationInput | TokenUncheckedUpdateManyWithoutTokensInput | No |
Name | Type | Nullable |
---|---|---|
AND | TokenScalarWhereInput | TokenScalarWhereInput[] | No |
OR | TokenScalarWhereInput[] | No |
NOT | TokenScalarWhereInput | TokenScalarWhereInput[] | No |
id | StringFilter | String | No |
userId | StringFilter | String | No |
createdAt | DateTimeFilter | DateTime | No |
updatedAt | DateTimeFilter | DateTime | No |
valid | BoolFilter | Boolean | No |
type | EnumTokenTypeFilter | TokenType | No |
Name | Type | Nullable |
---|---|---|
where | WebhookWhereUniqueInput | No |
update | WebhookUpdateWithoutUserInput | WebhookUncheckedUpdateWithoutUserInput | No |
create | WebhookCreateWithoutUserInput | WebhookUncheckedCreateWithoutUserInput | No |
Name | Type | Nullable |
---|---|---|
where | WebhookWhereUniqueInput | No |
data | WebhookUpdateWithoutUserInput | WebhookUncheckedUpdateWithoutUserInput | No |
Name | Type | Nullable |
---|---|---|
where | WebhookScalarWhereInput | No |
data | WebhookUpdateManyMutationInput | WebhookUncheckedUpdateManyWithoutWebhookInput | No |
Name | Type | Nullable |
---|---|---|
AND | WebhookScalarWhereInput | WebhookScalarWhereInput[] | No |
OR | WebhookScalarWhereInput[] | No |
NOT | WebhookScalarWhereInput | WebhookScalarWhereInput[] | No |
webhookId | StringFilter | String | No |
userId | StringFilter | String | No |
reactionId | IntFilter | Int | No |
incomingServiceName | StringFilter | String | No |
Name | Type | Nullable |
---|---|---|
where | DiscordBotWebhookWhereUniqueInput | No |
update | DiscordBotWebhookUpdateWithoutUserInput | DiscordBotWebhookUncheckedUpdateWithoutUserInput | No |
create | DiscordBotWebhookCreateWithoutUserInput | DiscordBotWebhookUncheckedCreateWithoutUserInput | No |
Name | Type | Nullable |
---|---|---|
where | DiscordBotWebhookWhereUniqueInput | No |
data | DiscordBotWebhookUpdateWithoutUserInput | DiscordBotWebhookUncheckedUpdateWithoutUserInput | No |
Name | Type | Nullable |
---|---|---|
where | DiscordBotWebhookScalarWhereInput | No |
data | DiscordBotWebhookUpdateManyMutationInput | DiscordBotWebhookUncheckedUpdateManyWithoutDiscordBotWebhookInput | No |
Name | Type | Nullable |
---|---|---|
AND | DiscordBotWebhookScalarWhereInput | DiscordBotWebhookScalarWhereInput[] | No |
OR | DiscordBotWebhookScalarWhereInput[] | No |
NOT | DiscordBotWebhookScalarWhereInput | DiscordBotWebhookScalarWhereInput[] | No |
command | StringFilter | String | No |
serverId | StringFilter | String | No |
userId | StringFilter | String | No |
webhookWebhookId | StringFilter | String | No |
Name | Type | Nullable |
---|---|---|
where | oAuthUserDataWhereUniqueInput | No |
update | oAuthUserDataUpdateWithoutUserInput | oAuthUserDataUncheckedUpdateWithoutUserInput | No |
create | oAuthUserDataCreateWithoutUserInput | oAuthUserDataUncheckedCreateWithoutUserInput | No |
Name | Type | Nullable |
---|---|---|
where | oAuthUserDataWhereUniqueInput | No |
data | oAuthUserDataUpdateWithoutUserInput | oAuthUserDataUncheckedUpdateWithoutUserInput | No |
Name | Type | Nullable |
---|---|---|
where | oAuthUserDataScalarWhereInput | No |
data | oAuthUserDataUpdateManyMutationInput | oAuthUserDataUncheckedUpdateManyWithoutOAuthUserDataInput | No |
Name | Type | Nullable |
---|---|---|
AND | oAuthUserDataScalarWhereInput | oAuthUserDataScalarWhereInput[] | No |
OR | oAuthUserDataScalarWhereInput[] | No |
NOT | oAuthUserDataScalarWhereInput | oAuthUserDataScalarWhereInput[] | No |
oAuthUserDataId | StringFilter | String | No |
userId | StringFilter | String | No |
providerUserId | StringFilter | String | No |
data | JsonFilter | No |
accessToken | StringFilter | String | No |
refreshToken | StringFilter | String | No |
oAuthProviderName | StringFilter | String | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
String | No | |
name | String | No |
password | String | No |
createdAt | DateTime | No |
emailVerified | Boolean | No |
tokens | TokenCreateNestedManyWithoutUserInput | No |
Webhook | WebhookCreateNestedManyWithoutUserInput | No |
DiscordBotWebhook | DiscordBotWebhookCreateNestedManyWithoutUserInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
String | No | |
name | String | No |
password | String | No |
createdAt | DateTime | No |
emailVerified | Boolean | No |
tokens | TokenUncheckedCreateNestedManyWithoutUserInput | No |
Webhook | WebhookUncheckedCreateNestedManyWithoutUserInput | No |
DiscordBotWebhook | DiscordBotWebhookUncheckedCreateNestedManyWithoutUserInput | No |
Name | Type | Nullable |
---|---|---|
where | UserWhereUniqueInput | No |
create | UserCreateWithoutOAuthUserDataInput | UserUncheckedCreateWithoutOAuthUserDataInput | No |
Name | Type | Nullable |
---|---|---|
oAuthProviderName | String | No |
service | ServiceCreateNestedOneWithoutOAuthProviderInput | No |
data | JsonNullValueInput | Json | No |
Name | Type | Nullable |
---|---|---|
oAuthProviderName | String | No |
serviceName | String | Null | Yes |
data | JsonNullValueInput | Json | No |
Name | Type | Nullable |
---|---|---|
where | oAuthProviderWhereUniqueInput | No |
create | oAuthProviderCreateWithoutOAuthUserDataInput | oAuthProviderUncheckedCreateWithoutOAuthUserDataInput | No |
Name | Type | Nullable |
---|---|---|
update | UserUpdateWithoutOAuthUserDataInput | UserUncheckedUpdateWithoutOAuthUserDataInput | No |
create | UserCreateWithoutOAuthUserDataInput | UserUncheckedCreateWithoutOAuthUserDataInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
String | StringFieldUpdateOperationsInput | No | |
name | String | StringFieldUpdateOperationsInput | No |
password | String | StringFieldUpdateOperationsInput | No |
createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
emailVerified | Boolean | BoolFieldUpdateOperationsInput | No |
tokens | TokenUpdateManyWithoutUserNestedInput | No |
Webhook | WebhookUpdateManyWithoutUserNestedInput | No |
DiscordBotWebhook | DiscordBotWebhookUpdateManyWithoutUserNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
String | StringFieldUpdateOperationsInput | No | |
name | String | StringFieldUpdateOperationsInput | No |
password | String | StringFieldUpdateOperationsInput | No |
createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
emailVerified | Boolean | BoolFieldUpdateOperationsInput | No |
tokens | TokenUncheckedUpdateManyWithoutUserNestedInput | No |
Webhook | WebhookUncheckedUpdateManyWithoutUserNestedInput | No |
DiscordBotWebhook | DiscordBotWebhookUncheckedUpdateManyWithoutUserNestedInput | No |
Name | Type | Nullable |
---|---|---|
oAuthProviderName | String | StringFieldUpdateOperationsInput | No |
service | ServiceUpdateOneWithoutOAuthProviderNestedInput | No |
data | JsonNullValueInput | Json | No |
Name | Type | Nullable |
---|---|---|
oAuthProviderName | String | StringFieldUpdateOperationsInput | No |
serviceName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
data | JsonNullValueInput | Json | No |
Name | Type | Nullable |
---|---|---|
serviceName | String | No |
React | ReactCreateNestedManyWithoutServiceInput | No |
Webhook | WebhookCreateNestedManyWithoutIncomingServiceInput | No |
oAuthProviderName | String | Null | Yes |
Reaction | ReactionCreateNestedManyWithoutServiceInput | No |
Action | ActionCreateNestedManyWithoutServiceInput | No |
Name | Type | Nullable |
---|---|---|
serviceName | String | No |
React | ReactUncheckedCreateNestedManyWithoutServiceInput | No |
Webhook | WebhookUncheckedCreateNestedManyWithoutIncomingServiceInput | No |
oAuthProviderName | String | Null | Yes |
Reaction | ReactionUncheckedCreateNestedManyWithoutServiceInput | No |
Action | ActionUncheckedCreateNestedManyWithoutServiceInput | No |
Name | Type | Nullable |
---|---|---|
where | ServiceWhereUniqueInput | No |
create | ServiceCreateWithoutOAuthProviderInput | ServiceUncheckedCreateWithoutOAuthProviderInput | No |
Name | Type | Nullable |
---|---|---|
oAuthUserDataId | String | No |
user | UserCreateNestedOneWithoutOAuthUserDataInput | No |
providerUserId | String | No |
data | JsonNullValueInput | Json | No |
accessToken | String | No |
refreshToken | String | No |
Name | Type | Nullable |
---|---|---|
oAuthUserDataId | String | No |
userId | String | No |
providerUserId | String | No |
data | JsonNullValueInput | Json | No |
accessToken | String | No |
refreshToken | String | No |
Name | Type | Nullable |
---|---|---|
where | oAuthUserDataWhereUniqueInput | No |
create | oAuthUserDataCreateWithoutOAuthProviderInput | oAuthUserDataUncheckedCreateWithoutOAuthProviderInput | No |
Name | Type | Nullable |
---|---|---|
data | oAuthUserDataCreateManyOAuthProviderInput[] | No |
skipDuplicates | Boolean | No |
Name | Type | Nullable |
---|---|---|
update | ServiceUpdateWithoutOAuthProviderInput | ServiceUncheckedUpdateWithoutOAuthProviderInput | No |
create | ServiceCreateWithoutOAuthProviderInput | ServiceUncheckedCreateWithoutOAuthProviderInput | No |
Name | Type | Nullable |
---|---|---|
serviceName | String | StringFieldUpdateOperationsInput | No |
React | ReactUpdateManyWithoutServiceNestedInput | No |
Webhook | WebhookUpdateManyWithoutIncomingServiceNestedInput | No |
oAuthProviderName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
Reaction | ReactionUpdateManyWithoutServiceNestedInput | No |
Action | ActionUpdateManyWithoutServiceNestedInput | No |
Name | Type | Nullable |
---|---|---|
serviceName | String | StringFieldUpdateOperationsInput | No |
React | ReactUncheckedUpdateManyWithoutServiceNestedInput | No |
Webhook | WebhookUncheckedUpdateManyWithoutIncomingServiceNestedInput | No |
oAuthProviderName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
Reaction | ReactionUncheckedUpdateManyWithoutServiceNestedInput | No |
Action | ActionUncheckedUpdateManyWithoutServiceNestedInput | No |
Name | Type | Nullable |
---|---|---|
where | oAuthUserDataWhereUniqueInput | No |
update | oAuthUserDataUpdateWithoutOAuthProviderInput | oAuthUserDataUncheckedUpdateWithoutOAuthProviderInput | No |
create | oAuthUserDataCreateWithoutOAuthProviderInput | oAuthUserDataUncheckedCreateWithoutOAuthProviderInput | No |
Name | Type | Nullable |
---|---|---|
where | oAuthUserDataWhereUniqueInput | No |
data | oAuthUserDataUpdateWithoutOAuthProviderInput | oAuthUserDataUncheckedUpdateWithoutOAuthProviderInput | No |
Name | Type | Nullable |
---|---|---|
where | oAuthUserDataScalarWhereInput | No |
data | oAuthUserDataUpdateManyMutationInput | oAuthUserDataUncheckedUpdateManyWithoutOAuthUserDataInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
String | No | |
name | String | No |
password | String | No |
createdAt | DateTime | No |
emailVerified | Boolean | No |
Webhook | WebhookCreateNestedManyWithoutUserInput | No |
DiscordBotWebhook | DiscordBotWebhookCreateNestedManyWithoutUserInput | No |
oAuthUserData | oAuthUserDataCreateNestedManyWithoutUserInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
String | No | |
name | String | No |
password | String | No |
createdAt | DateTime | No |
emailVerified | Boolean | No |
Webhook | WebhookUncheckedCreateNestedManyWithoutUserInput | No |
DiscordBotWebhook | DiscordBotWebhookUncheckedCreateNestedManyWithoutUserInput | No |
oAuthUserData | oAuthUserDataUncheckedCreateNestedManyWithoutUserInput | No |
Name | Type | Nullable |
---|---|---|
where | UserWhereUniqueInput | No |
create | UserCreateWithoutTokensInput | UserUncheckedCreateWithoutTokensInput | No |
Name | Type | Nullable |
---|---|---|
update | UserUpdateWithoutTokensInput | UserUncheckedUpdateWithoutTokensInput | No |
create | UserCreateWithoutTokensInput | UserUncheckedCreateWithoutTokensInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
String | StringFieldUpdateOperationsInput | No | |
name | String | StringFieldUpdateOperationsInput | No |
password | String | StringFieldUpdateOperationsInput | No |
createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
emailVerified | Boolean | BoolFieldUpdateOperationsInput | No |
Webhook | WebhookUpdateManyWithoutUserNestedInput | No |
DiscordBotWebhook | DiscordBotWebhookUpdateManyWithoutUserNestedInput | No |
oAuthUserData | oAuthUserDataUpdateManyWithoutUserNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
String | StringFieldUpdateOperationsInput | No | |
name | String | StringFieldUpdateOperationsInput | No |
password | String | StringFieldUpdateOperationsInput | No |
createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
emailVerified | Boolean | BoolFieldUpdateOperationsInput | No |
Webhook | WebhookUncheckedUpdateManyWithoutUserNestedInput | No |
DiscordBotWebhook | DiscordBotWebhookUncheckedUpdateManyWithoutUserNestedInput | No |
oAuthUserData | oAuthUserDataUncheckedUpdateManyWithoutUserNestedInput | No |
Name | Type | Nullable |
---|---|---|
reactionName | String | No |
description | String | No |
Reaction | ReactionCreateNestedManyWithoutReactInput | No |
Name | Type | Nullable |
---|---|---|
reactionName | String | No |
description | String | No |
Reaction | ReactionUncheckedCreateNestedManyWithoutReactInput | No |
Name | Type | Nullable |
---|---|---|
where | ReactWhereUniqueInput | No |
create | ReactCreateWithoutServiceInput | ReactUncheckedCreateWithoutServiceInput | No |
Name | Type | Nullable |
---|---|---|
data | ReactCreateManyServiceInput[] | No |
skipDuplicates | Boolean | No |
Name | Type | Nullable |
---|---|---|
webhookId | String | No |
user | UserCreateNestedOneWithoutWebhookInput | No |
reaction | ReactionCreateNestedOneWithoutIncomingWebhookInput | No |
DiscordBotWebhook | DiscordBotWebhookCreateNestedManyWithoutWebhookInput | No |
Name | Type | Nullable |
---|---|---|
webhookId | String | No |
userId | String | No |
reactionId | Int | No |
DiscordBotWebhook | DiscordBotWebhookUncheckedCreateNestedManyWithoutWebhookInput | No |
Name | Type | Nullable |
---|---|---|
where | WebhookWhereUniqueInput | No |
create | WebhookCreateWithoutIncomingServiceInput | WebhookUncheckedCreateWithoutIncomingServiceInput | No |
Name | Type | Nullable |
---|---|---|
data | WebhookCreateManyIncomingServiceInput[] | No |
skipDuplicates | Boolean | No |
Name | Type | Nullable |
---|---|---|
oAuthProviderName | String | No |
data | JsonNullValueInput | Json | No |
oAuthUserData | oAuthUserDataCreateNestedManyWithoutOAuthProviderInput | No |
Name | Type | Nullable |
---|---|---|
oAuthProviderName | String | No |
data | JsonNullValueInput | Json | No |
oAuthUserData | oAuthUserDataUncheckedCreateNestedManyWithoutOAuthProviderInput | No |
Name | Type | Nullable |
---|---|---|
where | oAuthProviderWhereUniqueInput | No |
create | oAuthProviderCreateWithoutServiceInput | oAuthProviderUncheckedCreateWithoutServiceInput | No |
Name | Type | Nullable |
---|---|---|
react | ReactCreateNestedOneWithoutReactionInput | No |
incomingWebhook | WebhookCreateNestedOneWithoutReactionInput | No |
outgoingWebhook | String | Null | Yes |
actions | ActionReactionCreateNestedManyWithoutActionInput | No |
reactions | ActionReactionCreateNestedManyWithoutReactionInput | No |
enabled | Boolean | No |
enabledChain | Boolean | No |
Name | Type | Nullable |
---|---|---|
reactionId | Int | No |
reactionName | String | No |
incomingWebhook | WebhookUncheckedCreateNestedOneWithoutReactionInput | No |
outgoingWebhook | String | Null | Yes |
actions | ActionReactionUncheckedCreateNestedManyWithoutActionInput | No |
reactions | ActionReactionUncheckedCreateNestedManyWithoutReactionInput | No |
enabled | Boolean | No |
enabledChain | Boolean | No |
Name | Type | Nullable |
---|---|---|
where | ReactionWhereUniqueInput | No |
create | ReactionCreateWithoutServiceInput | ReactionUncheckedCreateWithoutServiceInput | No |
Name | Type | Nullable |
---|---|---|
data | ReactionCreateManyServiceInput[] | No |
skipDuplicates | Boolean | No |
Name | Type | Nullable |
---|---|---|
actionName | String | No |
description | String | No |
Name | Type | Nullable |
---|---|---|
actionName | String | No |
description | String | No |
Name | Type | Nullable |
---|---|---|
where | ActionWhereUniqueInput | No |
create | ActionCreateWithoutServiceInput | ActionUncheckedCreateWithoutServiceInput | No |
Name | Type | Nullable |
---|---|---|
data | ActionCreateManyServiceInput[] | No |
skipDuplicates | Boolean | No |
Name | Type | Nullable |
---|---|---|
where | ReactWhereUniqueInput | No |
update | ReactUpdateWithoutServiceInput | ReactUncheckedUpdateWithoutServiceInput | No |
create | ReactCreateWithoutServiceInput | ReactUncheckedCreateWithoutServiceInput | No |
Name | Type | Nullable |
---|---|---|
where | ReactWhereUniqueInput | No |
data | ReactUpdateWithoutServiceInput | ReactUncheckedUpdateWithoutServiceInput | No |
Name | Type | Nullable |
---|---|---|
where | ReactScalarWhereInput | No |
data | ReactUpdateManyMutationInput | ReactUncheckedUpdateManyWithoutReactInput | No |
Name | Type | Nullable |
---|---|---|
AND | ReactScalarWhereInput | ReactScalarWhereInput[] | No |
OR | ReactScalarWhereInput[] | No |
NOT | ReactScalarWhereInput | ReactScalarWhereInput[] | No |
reactionName | StringFilter | String | No |
description | StringFilter | String | No |
serviceName | StringFilter | String | No |
Name | Type | Nullable |
---|---|---|
where | WebhookWhereUniqueInput | No |
update | WebhookUpdateWithoutIncomingServiceInput | WebhookUncheckedUpdateWithoutIncomingServiceInput | No |
create | WebhookCreateWithoutIncomingServiceInput | WebhookUncheckedCreateWithoutIncomingServiceInput | No |
Name | Type | Nullable |
---|---|---|
where | WebhookWhereUniqueInput | No |
data | WebhookUpdateWithoutIncomingServiceInput | WebhookUncheckedUpdateWithoutIncomingServiceInput | No |
Name | Type | Nullable |
---|---|---|
where | WebhookScalarWhereInput | No |
data | WebhookUpdateManyMutationInput | WebhookUncheckedUpdateManyWithoutWebhookInput | No |
Name | Type | Nullable |
---|---|---|
update | oAuthProviderUpdateWithoutServiceInput | oAuthProviderUncheckedUpdateWithoutServiceInput | No |
create | oAuthProviderCreateWithoutServiceInput | oAuthProviderUncheckedCreateWithoutServiceInput | No |
Name | Type | Nullable |
---|---|---|
oAuthProviderName | String | StringFieldUpdateOperationsInput | No |
data | JsonNullValueInput | Json | No |
oAuthUserData | oAuthUserDataUpdateManyWithoutOAuthProviderNestedInput | No |
Name | Type | Nullable |
---|---|---|
oAuthProviderName | String | StringFieldUpdateOperationsInput | No |
data | JsonNullValueInput | Json | No |
oAuthUserData | oAuthUserDataUncheckedUpdateManyWithoutOAuthProviderNestedInput | No |
Name | Type | Nullable |
---|---|---|
where | ReactionWhereUniqueInput | No |
update | ReactionUpdateWithoutServiceInput | ReactionUncheckedUpdateWithoutServiceInput | No |
create | ReactionCreateWithoutServiceInput | ReactionUncheckedCreateWithoutServiceInput | No |
Name | Type | Nullable |
---|---|---|
where | ReactionWhereUniqueInput | No |
data | ReactionUpdateWithoutServiceInput | ReactionUncheckedUpdateWithoutServiceInput | No |
Name | Type | Nullable |
---|---|---|
where | ReactionScalarWhereInput | No |
data | ReactionUpdateManyMutationInput | ReactionUncheckedUpdateManyWithoutReactionInput | No |
Name | Type | Nullable |
---|---|---|
AND | ReactionScalarWhereInput | ReactionScalarWhereInput[] | No |
OR | ReactionScalarWhereInput[] | No |
NOT | ReactionScalarWhereInput | ReactionScalarWhereInput[] | No |
reactionId | IntFilter | Int | No |
serviceName | StringFilter | String | No |
reactionName | StringFilter | String | No |
outgoingWebhook | StringNullableFilter | String | Null | Yes |
enabled | BoolFilter | Boolean | No |
enabledChain | BoolFilter | Boolean | No |
Name | Type | Nullable |
---|---|---|
where | ActionWhereUniqueInput | No |
update | ActionUpdateWithoutServiceInput | ActionUncheckedUpdateWithoutServiceInput | No |
create | ActionCreateWithoutServiceInput | ActionUncheckedCreateWithoutServiceInput | No |
Name | Type | Nullable |
---|---|---|
where | ActionWhereUniqueInput | No |
data | ActionUpdateWithoutServiceInput | ActionUncheckedUpdateWithoutServiceInput | No |
Name | Type | Nullable |
---|---|---|
where | ActionScalarWhereInput | No |
data | ActionUpdateManyMutationInput | ActionUncheckedUpdateManyWithoutActionInput | No |
Name | Type | Nullable |
---|---|---|
AND | ActionScalarWhereInput | ActionScalarWhereInput[] | No |
OR | ActionScalarWhereInput[] | No |
NOT | ActionScalarWhereInput | ActionScalarWhereInput[] | No |
actionName | StringFilter | String | No |
serviceName | StringFilter | String | No |
description | StringFilter | String | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
String | No | |
name | String | No |
password | String | No |
createdAt | DateTime | No |
emailVerified | Boolean | No |
tokens | TokenCreateNestedManyWithoutUserInput | No |
DiscordBotWebhook | DiscordBotWebhookCreateNestedManyWithoutUserInput | No |
oAuthUserData | oAuthUserDataCreateNestedManyWithoutUserInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
String | No | |
name | String | No |
password | String | No |
createdAt | DateTime | No |
emailVerified | Boolean | No |
tokens | TokenUncheckedCreateNestedManyWithoutUserInput | No |
DiscordBotWebhook | DiscordBotWebhookUncheckedCreateNestedManyWithoutUserInput | No |
oAuthUserData | oAuthUserDataUncheckedCreateNestedManyWithoutUserInput | No |
Name | Type | Nullable |
---|---|---|
where | UserWhereUniqueInput | No |
create | UserCreateWithoutWebhookInput | UserUncheckedCreateWithoutWebhookInput | No |
Name | Type | Nullable |
---|---|---|
service | ServiceCreateNestedOneWithoutReactionInput | No |
react | ReactCreateNestedOneWithoutReactionInput | No |
outgoingWebhook | String | Null | Yes |
actions | ActionReactionCreateNestedManyWithoutActionInput | No |
reactions | ActionReactionCreateNestedManyWithoutReactionInput | No |
enabled | Boolean | No |
enabledChain | Boolean | No |
Name | Type | Nullable |
---|---|---|
reactionId | Int | No |
serviceName | String | No |
reactionName | String | No |
outgoingWebhook | String | Null | Yes |
actions | ActionReactionUncheckedCreateNestedManyWithoutActionInput | No |
reactions | ActionReactionUncheckedCreateNestedManyWithoutReactionInput | No |
enabled | Boolean | No |
enabledChain | Boolean | No |
Name | Type | Nullable |
---|---|---|
where | ReactionWhereUniqueInput | No |
create | ReactionCreateWithoutIncomingWebhookInput | ReactionUncheckedCreateWithoutIncomingWebhookInput | No |
Name | Type | Nullable |
---|---|---|
serviceName | String | No |
React | ReactCreateNestedManyWithoutServiceInput | No |
oAuthProviderName | String | Null | Yes |
oAuthProvider | oAuthProviderCreateNestedOneWithoutServiceInput | No |
Reaction | ReactionCreateNestedManyWithoutServiceInput | No |
Action | ActionCreateNestedManyWithoutServiceInput | No |
Name | Type | Nullable |
---|---|---|
serviceName | String | No |
React | ReactUncheckedCreateNestedManyWithoutServiceInput | No |
oAuthProviderName | String | Null | Yes |
oAuthProvider | oAuthProviderUncheckedCreateNestedOneWithoutServiceInput | No |
Reaction | ReactionUncheckedCreateNestedManyWithoutServiceInput | No |
Action | ActionUncheckedCreateNestedManyWithoutServiceInput | No |
Name | Type | Nullable |
---|---|---|
where | ServiceWhereUniqueInput | No |
create | ServiceCreateWithoutWebhookInput | ServiceUncheckedCreateWithoutWebhookInput | No |
Name | Type | Nullable |
---|---|---|
command | String | No |
serverId | String | No |
user | UserCreateNestedOneWithoutDiscordBotWebhookInput | No |
Name | Type | Nullable |
---|---|---|
command | String | No |
serverId | String | No |
userId | String | No |
Name | Type | Nullable |
---|---|---|
where | DiscordBotWebhookWhereUniqueInput | No |
create | DiscordBotWebhookCreateWithoutWebhookInput | DiscordBotWebhookUncheckedCreateWithoutWebhookInput | No |
Name | Type | Nullable |
---|---|---|
data | DiscordBotWebhookCreateManyWebhookInput[] | No |
skipDuplicates | Boolean | No |
Name | Type | Nullable |
---|---|---|
update | UserUpdateWithoutWebhookInput | UserUncheckedUpdateWithoutWebhookInput | No |
create | UserCreateWithoutWebhookInput | UserUncheckedCreateWithoutWebhookInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
String | StringFieldUpdateOperationsInput | No | |
name | String | StringFieldUpdateOperationsInput | No |
password | String | StringFieldUpdateOperationsInput | No |
createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
emailVerified | Boolean | BoolFieldUpdateOperationsInput | No |
tokens | TokenUpdateManyWithoutUserNestedInput | No |
DiscordBotWebhook | DiscordBotWebhookUpdateManyWithoutUserNestedInput | No |
oAuthUserData | oAuthUserDataUpdateManyWithoutUserNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
String | StringFieldUpdateOperationsInput | No | |
name | String | StringFieldUpdateOperationsInput | No |
password | String | StringFieldUpdateOperationsInput | No |
createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
emailVerified | Boolean | BoolFieldUpdateOperationsInput | No |
tokens | TokenUncheckedUpdateManyWithoutUserNestedInput | No |
DiscordBotWebhook | DiscordBotWebhookUncheckedUpdateManyWithoutUserNestedInput | No |
oAuthUserData | oAuthUserDataUncheckedUpdateManyWithoutUserNestedInput | No |
Name | Type | Nullable |
---|---|---|
update | ReactionUpdateWithoutIncomingWebhookInput | ReactionUncheckedUpdateWithoutIncomingWebhookInput | No |
create | ReactionCreateWithoutIncomingWebhookInput | ReactionUncheckedCreateWithoutIncomingWebhookInput | No |
Name | Type | Nullable |
---|---|---|
service | ServiceUpdateOneRequiredWithoutReactionNestedInput | No |
react | ReactUpdateOneRequiredWithoutReactionNestedInput | No |
outgoingWebhook | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
actions | ActionReactionUpdateManyWithoutActionNestedInput | No |
reactions | ActionReactionUpdateManyWithoutReactionNestedInput | No |
enabled | Boolean | BoolFieldUpdateOperationsInput | No |
enabledChain | Boolean | BoolFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
reactionId | Int | IntFieldUpdateOperationsInput | No |
serviceName | String | StringFieldUpdateOperationsInput | No |
reactionName | String | StringFieldUpdateOperationsInput | No |
outgoingWebhook | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
actions | ActionReactionUncheckedUpdateManyWithoutActionNestedInput | No |
reactions | ActionReactionUncheckedUpdateManyWithoutReactionNestedInput | No |
enabled | Boolean | BoolFieldUpdateOperationsInput | No |
enabledChain | Boolean | BoolFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
update | ServiceUpdateWithoutWebhookInput | ServiceUncheckedUpdateWithoutWebhookInput | No |
create | ServiceCreateWithoutWebhookInput | ServiceUncheckedCreateWithoutWebhookInput | No |
Name | Type | Nullable |
---|---|---|
serviceName | String | StringFieldUpdateOperationsInput | No |
React | ReactUpdateManyWithoutServiceNestedInput | No |
oAuthProviderName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
oAuthProvider | oAuthProviderUpdateOneWithoutServiceNestedInput | No |
Reaction | ReactionUpdateManyWithoutServiceNestedInput | No |
Action | ActionUpdateManyWithoutServiceNestedInput | No |
Name | Type | Nullable |
---|---|---|
serviceName | String | StringFieldUpdateOperationsInput | No |
React | ReactUncheckedUpdateManyWithoutServiceNestedInput | No |
oAuthProviderName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
oAuthProvider | oAuthProviderUncheckedUpdateOneWithoutServiceNestedInput | No |
Reaction | ReactionUncheckedUpdateManyWithoutServiceNestedInput | No |
Action | ActionUncheckedUpdateManyWithoutServiceNestedInput | No |
Name | Type | Nullable |
---|---|---|
where | DiscordBotWebhookWhereUniqueInput | No |
update | DiscordBotWebhookUpdateWithoutWebhookInput | DiscordBotWebhookUncheckedUpdateWithoutWebhookInput | No |
create | DiscordBotWebhookCreateWithoutWebhookInput | DiscordBotWebhookUncheckedCreateWithoutWebhookInput | No |
Name | Type | Nullable |
---|---|---|
where | DiscordBotWebhookWhereUniqueInput | No |
data | DiscordBotWebhookUpdateWithoutWebhookInput | DiscordBotWebhookUncheckedUpdateWithoutWebhookInput | No |
Name | Type | Nullable |
---|---|---|
where | DiscordBotWebhookScalarWhereInput | No |
data | DiscordBotWebhookUpdateManyMutationInput | DiscordBotWebhookUncheckedUpdateManyWithoutDiscordBotWebhookInput | No |
Name | Type | Nullable |
---|---|---|
serviceName | String | No |
React | ReactCreateNestedManyWithoutServiceInput | No |
Webhook | WebhookCreateNestedManyWithoutIncomingServiceInput | No |
oAuthProviderName | String | Null | Yes |
oAuthProvider | oAuthProviderCreateNestedOneWithoutServiceInput | No |
Reaction | ReactionCreateNestedManyWithoutServiceInput | No |
Name | Type | Nullable |
---|---|---|
serviceName | String | No |
React | ReactUncheckedCreateNestedManyWithoutServiceInput | No |
Webhook | WebhookUncheckedCreateNestedManyWithoutIncomingServiceInput | No |
oAuthProviderName | String | Null | Yes |
oAuthProvider | oAuthProviderUncheckedCreateNestedOneWithoutServiceInput | No |
Reaction | ReactionUncheckedCreateNestedManyWithoutServiceInput | No |
Name | Type | Nullable |
---|---|---|
where | ServiceWhereUniqueInput | No |
create | ServiceCreateWithoutActionInput | ServiceUncheckedCreateWithoutActionInput | No |
Name | Type | Nullable |
---|---|---|
update | ServiceUpdateWithoutActionInput | ServiceUncheckedUpdateWithoutActionInput | No |
create | ServiceCreateWithoutActionInput | ServiceUncheckedCreateWithoutActionInput | No |
Name | Type | Nullable |
---|---|---|
serviceName | String | StringFieldUpdateOperationsInput | No |
React | ReactUpdateManyWithoutServiceNestedInput | No |
Webhook | WebhookUpdateManyWithoutIncomingServiceNestedInput | No |
oAuthProviderName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
oAuthProvider | oAuthProviderUpdateOneWithoutServiceNestedInput | No |
Reaction | ReactionUpdateManyWithoutServiceNestedInput | No |
Name | Type | Nullable |
---|---|---|
serviceName | String | StringFieldUpdateOperationsInput | No |
React | ReactUncheckedUpdateManyWithoutServiceNestedInput | No |
Webhook | WebhookUncheckedUpdateManyWithoutIncomingServiceNestedInput | No |
oAuthProviderName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
oAuthProvider | oAuthProviderUncheckedUpdateOneWithoutServiceNestedInput | No |
Reaction | ReactionUncheckedUpdateManyWithoutServiceNestedInput | No |
Name | Type | Nullable |
---|---|---|
serviceName | String | No |
Webhook | WebhookCreateNestedManyWithoutIncomingServiceInput | No |
oAuthProviderName | String | Null | Yes |
oAuthProvider | oAuthProviderCreateNestedOneWithoutServiceInput | No |
Reaction | ReactionCreateNestedManyWithoutServiceInput | No |
Action | ActionCreateNestedManyWithoutServiceInput | No |
Name | Type | Nullable |
---|---|---|
serviceName | String | No |
Webhook | WebhookUncheckedCreateNestedManyWithoutIncomingServiceInput | No |
oAuthProviderName | String | Null | Yes |
oAuthProvider | oAuthProviderUncheckedCreateNestedOneWithoutServiceInput | No |
Reaction | ReactionUncheckedCreateNestedManyWithoutServiceInput | No |
Action | ActionUncheckedCreateNestedManyWithoutServiceInput | No |
Name | Type | Nullable |
---|---|---|
where | ServiceWhereUniqueInput | No |
create | ServiceCreateWithoutReactInput | ServiceUncheckedCreateWithoutReactInput | No |
Name | Type | Nullable |
---|---|---|
service | ServiceCreateNestedOneWithoutReactionInput | No |
incomingWebhook | WebhookCreateNestedOneWithoutReactionInput | No |
outgoingWebhook | String | Null | Yes |
actions | ActionReactionCreateNestedManyWithoutActionInput | No |
reactions | ActionReactionCreateNestedManyWithoutReactionInput | No |
enabled | Boolean | No |
enabledChain | Boolean | No |
Name | Type | Nullable |
---|---|---|
reactionId | Int | No |
incomingWebhook | WebhookUncheckedCreateNestedOneWithoutReactionInput | No |
outgoingWebhook | String | Null | Yes |
actions | ActionReactionUncheckedCreateNestedManyWithoutActionInput | No |
reactions | ActionReactionUncheckedCreateNestedManyWithoutReactionInput | No |
enabled | Boolean | No |
enabledChain | Boolean | No |
Name | Type | Nullable |
---|---|---|
where | ReactionWhereUniqueInput | No |
create | ReactionCreateWithoutReactInput | ReactionUncheckedCreateWithoutReactInput | No |
Name | Type | Nullable |
---|---|---|
data | ReactionCreateManyReactInput[] | No |
skipDuplicates | Boolean | No |
Name | Type | Nullable |
---|---|---|
update | ServiceUpdateWithoutReactInput | ServiceUncheckedUpdateWithoutReactInput | No |
create | ServiceCreateWithoutReactInput | ServiceUncheckedCreateWithoutReactInput | No |
Name | Type | Nullable |
---|---|---|
serviceName | String | StringFieldUpdateOperationsInput | No |
Webhook | WebhookUpdateManyWithoutIncomingServiceNestedInput | No |
oAuthProviderName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
oAuthProvider | oAuthProviderUpdateOneWithoutServiceNestedInput | No |
Reaction | ReactionUpdateManyWithoutServiceNestedInput | No |
Action | ActionUpdateManyWithoutServiceNestedInput | No |
Name | Type | Nullable |
---|---|---|
serviceName | String | StringFieldUpdateOperationsInput | No |
Webhook | WebhookUncheckedUpdateManyWithoutIncomingServiceNestedInput | No |
oAuthProviderName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
oAuthProvider | oAuthProviderUncheckedUpdateOneWithoutServiceNestedInput | No |
Reaction | ReactionUncheckedUpdateManyWithoutServiceNestedInput | No |
Action | ActionUncheckedUpdateManyWithoutServiceNestedInput | No |
Name | Type | Nullable |
---|---|---|
where | ReactionWhereUniqueInput | No |
update | ReactionUpdateWithoutReactInput | ReactionUncheckedUpdateWithoutReactInput | No |
create | ReactionCreateWithoutReactInput | ReactionUncheckedCreateWithoutReactInput | No |
Name | Type | Nullable |
---|---|---|
where | ReactionWhereUniqueInput | No |
data | ReactionUpdateWithoutReactInput | ReactionUncheckedUpdateWithoutReactInput | No |
Name | Type | Nullable |
---|---|---|
where | ReactionScalarWhereInput | No |
data | ReactionUpdateManyMutationInput | ReactionUncheckedUpdateManyWithoutReactionInput | No |
Name | Type | Nullable |
---|---|---|
serviceName | String | No |
React | ReactCreateNestedManyWithoutServiceInput | No |
Webhook | WebhookCreateNestedManyWithoutIncomingServiceInput | No |
oAuthProviderName | String | Null | Yes |
oAuthProvider | oAuthProviderCreateNestedOneWithoutServiceInput | No |
Action | ActionCreateNestedManyWithoutServiceInput | No |
Name | Type | Nullable |
---|---|---|
serviceName | String | No |
React | ReactUncheckedCreateNestedManyWithoutServiceInput | No |
Webhook | WebhookUncheckedCreateNestedManyWithoutIncomingServiceInput | No |
oAuthProviderName | String | Null | Yes |
oAuthProvider | oAuthProviderUncheckedCreateNestedOneWithoutServiceInput | No |
Action | ActionUncheckedCreateNestedManyWithoutServiceInput | No |
Name | Type | Nullable |
---|---|---|
where | ServiceWhereUniqueInput | No |
create | ServiceCreateWithoutReactionInput | ServiceUncheckedCreateWithoutReactionInput | No |
Name | Type | Nullable |
---|---|---|
reactionName | String | No |
description | String | No |
service | ServiceCreateNestedOneWithoutReactInput | No |
Name | Type | Nullable |
---|---|---|
reactionName | String | No |
description | String | No |
serviceName | String | No |
Name | Type | Nullable |
---|---|---|
where | ReactWhereUniqueInput | No |
create | ReactCreateWithoutReactionInput | ReactUncheckedCreateWithoutReactionInput | No |
Name | Type | Nullable |
---|---|---|
webhookId | String | No |
user | UserCreateNestedOneWithoutWebhookInput | No |
incomingService | ServiceCreateNestedOneWithoutWebhookInput | No |
DiscordBotWebhook | DiscordBotWebhookCreateNestedManyWithoutWebhookInput | No |
Name | Type | Nullable |
---|---|---|
webhookId | String | No |
userId | String | No |
incomingServiceName | String | No |
DiscordBotWebhook | DiscordBotWebhookUncheckedCreateNestedManyWithoutWebhookInput | No |
Name | Type | Nullable |
---|---|---|
where | WebhookWhereUniqueInput | No |
create | WebhookCreateWithoutReactionInput | WebhookUncheckedCreateWithoutReactionInput | No |
Name | Type | Nullable |
---|---|---|
reaction | ReactionCreateNestedOneWithoutReactionsInput | No |
Name | Type | Nullable |
---|---|---|
id | Int | No |
reactionId | Int | No |
Name | Type | Nullable |
---|---|---|
where | ActionReactionWhereUniqueInput | No |
create | ActionReactionCreateWithoutActionInput | ActionReactionUncheckedCreateWithoutActionInput | No |
Name | Type | Nullable |
---|---|---|
data | ActionReactionCreateManyActionInput[] | No |
skipDuplicates | Boolean | No |
Name | Type | Nullable |
---|---|---|
action | ReactionCreateNestedOneWithoutActionsInput | No |
Name | Type | Nullable |
---|---|---|
id | Int | No |
actionId | Int | No |
Name | Type | Nullable |
---|---|---|
where | ActionReactionWhereUniqueInput | No |
create | ActionReactionCreateWithoutReactionInput | ActionReactionUncheckedCreateWithoutReactionInput | No |
Name | Type | Nullable |
---|---|---|
data | ActionReactionCreateManyReactionInput[] | No |
skipDuplicates | Boolean | No |
Name | Type | Nullable |
---|---|---|
update | ServiceUpdateWithoutReactionInput | ServiceUncheckedUpdateWithoutReactionInput | No |
create | ServiceCreateWithoutReactionInput | ServiceUncheckedCreateWithoutReactionInput | No |
Name | Type | Nullable |
---|---|---|
serviceName | String | StringFieldUpdateOperationsInput | No |
React | ReactUpdateManyWithoutServiceNestedInput | No |
Webhook | WebhookUpdateManyWithoutIncomingServiceNestedInput | No |
oAuthProviderName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
oAuthProvider | oAuthProviderUpdateOneWithoutServiceNestedInput | No |
Action | ActionUpdateManyWithoutServiceNestedInput | No |
Name | Type | Nullable |
---|---|---|
serviceName | String | StringFieldUpdateOperationsInput | No |
React | ReactUncheckedUpdateManyWithoutServiceNestedInput | No |
Webhook | WebhookUncheckedUpdateManyWithoutIncomingServiceNestedInput | No |
oAuthProviderName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
oAuthProvider | oAuthProviderUncheckedUpdateOneWithoutServiceNestedInput | No |
Action | ActionUncheckedUpdateManyWithoutServiceNestedInput | No |
Name | Type | Nullable |
---|---|---|
update | ReactUpdateWithoutReactionInput | ReactUncheckedUpdateWithoutReactionInput | No |
create | ReactCreateWithoutReactionInput | ReactUncheckedCreateWithoutReactionInput | No |
Name | Type | Nullable |
---|---|---|
reactionName | String | StringFieldUpdateOperationsInput | No |
description | String | StringFieldUpdateOperationsInput | No |
service | ServiceUpdateOneRequiredWithoutReactNestedInput | No |
Name | Type | Nullable |
---|---|---|
reactionName | String | StringFieldUpdateOperationsInput | No |
description | String | StringFieldUpdateOperationsInput | No |
serviceName | String | StringFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
update | WebhookUpdateWithoutReactionInput | WebhookUncheckedUpdateWithoutReactionInput | No |
create | WebhookCreateWithoutReactionInput | WebhookUncheckedCreateWithoutReactionInput | No |
Name | Type | Nullable |
---|---|---|
webhookId | String | StringFieldUpdateOperationsInput | No |
user | UserUpdateOneRequiredWithoutWebhookNestedInput | No |
incomingService | ServiceUpdateOneRequiredWithoutWebhookNestedInput | No |
DiscordBotWebhook | DiscordBotWebhookUpdateManyWithoutWebhookNestedInput | No |
Name | Type | Nullable |
---|---|---|
webhookId | String | StringFieldUpdateOperationsInput | No |
userId | String | StringFieldUpdateOperationsInput | No |
incomingServiceName | String | StringFieldUpdateOperationsInput | No |
DiscordBotWebhook | DiscordBotWebhookUncheckedUpdateManyWithoutWebhookNestedInput | No |
Name | Type | Nullable |
---|---|---|
where | ActionReactionWhereUniqueInput | No |
update | ActionReactionUpdateWithoutActionInput | ActionReactionUncheckedUpdateWithoutActionInput | No |
create | ActionReactionCreateWithoutActionInput | ActionReactionUncheckedCreateWithoutActionInput | No |
Name | Type | Nullable |
---|---|---|
where | ActionReactionWhereUniqueInput | No |
data | ActionReactionUpdateWithoutActionInput | ActionReactionUncheckedUpdateWithoutActionInput | No |
Name | Type | Nullable |
---|---|---|
where | ActionReactionScalarWhereInput | No |
data | ActionReactionUpdateManyMutationInput | ActionReactionUncheckedUpdateManyWithoutActionsInput | No |
Name | Type | Nullable |
---|---|---|
AND | ActionReactionScalarWhereInput | ActionReactionScalarWhereInput[] | No |
OR | ActionReactionScalarWhereInput[] | No |
NOT | ActionReactionScalarWhereInput | ActionReactionScalarWhereInput[] | No |
id | IntFilter | Int | No |
actionId | IntFilter | Int | No |
reactionId | IntFilter | Int | No |
Name | Type | Nullable |
---|---|---|
where | ActionReactionWhereUniqueInput | No |
update | ActionReactionUpdateWithoutReactionInput | ActionReactionUncheckedUpdateWithoutReactionInput | No |
create | ActionReactionCreateWithoutReactionInput | ActionReactionUncheckedCreateWithoutReactionInput | No |
Name | Type | Nullable |
---|---|---|
where | ActionReactionWhereUniqueInput | No |
data | ActionReactionUpdateWithoutReactionInput | ActionReactionUncheckedUpdateWithoutReactionInput | No |
Name | Type | Nullable |
---|---|---|
where | ActionReactionScalarWhereInput | No |
data | ActionReactionUpdateManyMutationInput | ActionReactionUncheckedUpdateManyWithoutReactionsInput | No |
Name | Type | Nullable |
---|---|---|
service | ServiceCreateNestedOneWithoutReactionInput | No |
react | ReactCreateNestedOneWithoutReactionInput | No |
incomingWebhook | WebhookCreateNestedOneWithoutReactionInput | No |
outgoingWebhook | String | Null | Yes |
reactions | ActionReactionCreateNestedManyWithoutReactionInput | No |
enabled | Boolean | No |
enabledChain | Boolean | No |
Name | Type | Nullable |
---|---|---|
reactionId | Int | No |
serviceName | String | No |
reactionName | String | No |
incomingWebhook | WebhookUncheckedCreateNestedOneWithoutReactionInput | No |
outgoingWebhook | String | Null | Yes |
reactions | ActionReactionUncheckedCreateNestedManyWithoutReactionInput | No |
enabled | Boolean | No |
enabledChain | Boolean | No |
Name | Type | Nullable |
---|---|---|
where | ReactionWhereUniqueInput | No |
create | ReactionCreateWithoutActionsInput | ReactionUncheckedCreateWithoutActionsInput | No |
Name | Type | Nullable |
---|---|---|
service | ServiceCreateNestedOneWithoutReactionInput | No |
react | ReactCreateNestedOneWithoutReactionInput | No |
incomingWebhook | WebhookCreateNestedOneWithoutReactionInput | No |
outgoingWebhook | String | Null | Yes |
actions | ActionReactionCreateNestedManyWithoutActionInput | No |
enabled | Boolean | No |
enabledChain | Boolean | No |
Name | Type | Nullable |
---|---|---|
reactionId | Int | No |
serviceName | String | No |
reactionName | String | No |
incomingWebhook | WebhookUncheckedCreateNestedOneWithoutReactionInput | No |
outgoingWebhook | String | Null | Yes |
actions | ActionReactionUncheckedCreateNestedManyWithoutActionInput | No |
enabled | Boolean | No |
enabledChain | Boolean | No |
Name | Type | Nullable |
---|---|---|
where | ReactionWhereUniqueInput | No |
create | ReactionCreateWithoutReactionsInput | ReactionUncheckedCreateWithoutReactionsInput | No |
Name | Type | Nullable |
---|---|---|
update | ReactionUpdateWithoutActionsInput | ReactionUncheckedUpdateWithoutActionsInput | No |
create | ReactionCreateWithoutActionsInput | ReactionUncheckedCreateWithoutActionsInput | No |
Name | Type | Nullable |
---|---|---|
service | ServiceUpdateOneRequiredWithoutReactionNestedInput | No |
react | ReactUpdateOneRequiredWithoutReactionNestedInput | No |
incomingWebhook | WebhookUpdateOneWithoutReactionNestedInput | No |
outgoingWebhook | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
reactions | ActionReactionUpdateManyWithoutReactionNestedInput | No |
enabled | Boolean | BoolFieldUpdateOperationsInput | No |
enabledChain | Boolean | BoolFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
reactionId | Int | IntFieldUpdateOperationsInput | No |
serviceName | String | StringFieldUpdateOperationsInput | No |
reactionName | String | StringFieldUpdateOperationsInput | No |
incomingWebhook | WebhookUncheckedUpdateOneWithoutReactionNestedInput | No |
outgoingWebhook | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
reactions | ActionReactionUncheckedUpdateManyWithoutReactionNestedInput | No |
enabled | Boolean | BoolFieldUpdateOperationsInput | No |
enabledChain | Boolean | BoolFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
update | ReactionUpdateWithoutReactionsInput | ReactionUncheckedUpdateWithoutReactionsInput | No |
create | ReactionCreateWithoutReactionsInput | ReactionUncheckedCreateWithoutReactionsInput | No |
Name | Type | Nullable |
---|---|---|
service | ServiceUpdateOneRequiredWithoutReactionNestedInput | No |
react | ReactUpdateOneRequiredWithoutReactionNestedInput | No |
incomingWebhook | WebhookUpdateOneWithoutReactionNestedInput | No |
outgoingWebhook | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
actions | ActionReactionUpdateManyWithoutActionNestedInput | No |
enabled | Boolean | BoolFieldUpdateOperationsInput | No |
enabledChain | Boolean | BoolFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
reactionId | Int | IntFieldUpdateOperationsInput | No |
serviceName | String | StringFieldUpdateOperationsInput | No |
reactionName | String | StringFieldUpdateOperationsInput | No |
incomingWebhook | WebhookUncheckedUpdateOneWithoutReactionNestedInput | No |
outgoingWebhook | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
actions | ActionReactionUncheckedUpdateManyWithoutActionNestedInput | No |
enabled | Boolean | BoolFieldUpdateOperationsInput | No |
enabledChain | Boolean | BoolFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
String | No | |
name | String | No |
password | String | No |
createdAt | DateTime | No |
emailVerified | Boolean | No |
tokens | TokenCreateNestedManyWithoutUserInput | No |
Webhook | WebhookCreateNestedManyWithoutUserInput | No |
oAuthUserData | oAuthUserDataCreateNestedManyWithoutUserInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
String | No | |
name | String | No |
password | String | No |
createdAt | DateTime | No |
emailVerified | Boolean | No |
tokens | TokenUncheckedCreateNestedManyWithoutUserInput | No |
Webhook | WebhookUncheckedCreateNestedManyWithoutUserInput | No |
oAuthUserData | oAuthUserDataUncheckedCreateNestedManyWithoutUserInput | No |
Name | Type | Nullable |
---|---|---|
where | UserWhereUniqueInput | No |
create | UserCreateWithoutDiscordBotWebhookInput | UserUncheckedCreateWithoutDiscordBotWebhookInput | No |
Name | Type | Nullable |
---|---|---|
webhookId | String | No |
user | UserCreateNestedOneWithoutWebhookInput | No |
reaction | ReactionCreateNestedOneWithoutIncomingWebhookInput | No |
incomingService | ServiceCreateNestedOneWithoutWebhookInput | No |
Name | Type | Nullable |
---|---|---|
webhookId | String | No |
userId | String | No |
reactionId | Int | No |
incomingServiceName | String | No |
Name | Type | Nullable |
---|---|---|
where | WebhookWhereUniqueInput | No |
create | WebhookCreateWithoutDiscordBotWebhookInput | WebhookUncheckedCreateWithoutDiscordBotWebhookInput | No |
Name | Type | Nullable |
---|---|---|
update | UserUpdateWithoutDiscordBotWebhookInput | UserUncheckedUpdateWithoutDiscordBotWebhookInput | No |
create | UserCreateWithoutDiscordBotWebhookInput | UserUncheckedCreateWithoutDiscordBotWebhookInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
String | StringFieldUpdateOperationsInput | No | |
name | String | StringFieldUpdateOperationsInput | No |
password | String | StringFieldUpdateOperationsInput | No |
createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
emailVerified | Boolean | BoolFieldUpdateOperationsInput | No |
tokens | TokenUpdateManyWithoutUserNestedInput | No |
Webhook | WebhookUpdateManyWithoutUserNestedInput | No |
oAuthUserData | oAuthUserDataUpdateManyWithoutUserNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
String | StringFieldUpdateOperationsInput | No | |
name | String | StringFieldUpdateOperationsInput | No |
password | String | StringFieldUpdateOperationsInput | No |
createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
emailVerified | Boolean | BoolFieldUpdateOperationsInput | No |
tokens | TokenUncheckedUpdateManyWithoutUserNestedInput | No |
Webhook | WebhookUncheckedUpdateManyWithoutUserNestedInput | No |
oAuthUserData | oAuthUserDataUncheckedUpdateManyWithoutUserNestedInput | No |
Name | Type | Nullable |
---|---|---|
webhookId | String | StringFieldUpdateOperationsInput | No |
user | UserUpdateOneRequiredWithoutWebhookNestedInput | No |
reaction | ReactionUpdateOneRequiredWithoutIncomingWebhookNestedInput | No |
incomingService | ServiceUpdateOneRequiredWithoutWebhookNestedInput | No |
Name | Type | Nullable |
---|---|---|
webhookId | String | StringFieldUpdateOperationsInput | No |
userId | String | StringFieldUpdateOperationsInput | No |
reactionId | Int | IntFieldUpdateOperationsInput | No |
incomingServiceName | String | StringFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
createdAt | DateTime | No |
updatedAt | DateTime | No |
valid | Boolean | No |
type | TokenType | No |
Name | Type | Nullable |
---|---|---|
webhookId | String | No |
reactionId | Int | No |
incomingServiceName | String | No |
Name | Type | Nullable |
---|---|---|
command | String | No |
serverId | String | No |
webhookWebhookId | String | No |
Name | Type | Nullable |
---|---|---|
oAuthUserDataId | String | No |
providerUserId | String | No |
data | JsonNullValueInput | Json | No |
accessToken | String | No |
refreshToken | String | No |
oAuthProviderName | String | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
valid | Boolean | BoolFieldUpdateOperationsInput | No |
type | TokenType | EnumTokenTypeFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
valid | Boolean | BoolFieldUpdateOperationsInput | No |
type | TokenType | EnumTokenTypeFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
valid | Boolean | BoolFieldUpdateOperationsInput | No |
type | TokenType | EnumTokenTypeFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
webhookId | String | StringFieldUpdateOperationsInput | No |
reaction | ReactionUpdateOneRequiredWithoutIncomingWebhookNestedInput | No |
incomingService | ServiceUpdateOneRequiredWithoutWebhookNestedInput | No |
DiscordBotWebhook | DiscordBotWebhookUpdateManyWithoutWebhookNestedInput | No |
Name | Type | Nullable |
---|---|---|
webhookId | String | StringFieldUpdateOperationsInput | No |
reactionId | Int | IntFieldUpdateOperationsInput | No |
incomingServiceName | String | StringFieldUpdateOperationsInput | No |
DiscordBotWebhook | DiscordBotWebhookUncheckedUpdateManyWithoutWebhookNestedInput | No |
Name | Type | Nullable |
---|---|---|
webhookId | String | StringFieldUpdateOperationsInput | No |
reactionId | Int | IntFieldUpdateOperationsInput | No |
incomingServiceName | String | StringFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
command | String | StringFieldUpdateOperationsInput | No |
serverId | String | StringFieldUpdateOperationsInput | No |
webhook | WebhookUpdateOneRequiredWithoutDiscordBotWebhookNestedInput | No |
Name | Type | Nullable |
---|---|---|
command | String | StringFieldUpdateOperationsInput | No |
serverId | String | StringFieldUpdateOperationsInput | No |
webhookWebhookId | String | StringFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
command | String | StringFieldUpdateOperationsInput | No |
serverId | String | StringFieldUpdateOperationsInput | No |
webhookWebhookId | String | StringFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
oAuthUserDataId | String | StringFieldUpdateOperationsInput | No |
providerUserId | String | StringFieldUpdateOperationsInput | No |
data | JsonNullValueInput | Json | No |
accessToken | String | StringFieldUpdateOperationsInput | No |
refreshToken | String | StringFieldUpdateOperationsInput | No |
oAuthProvider | oAuthProviderUpdateOneRequiredWithoutOAuthUserDataNestedInput | No |
Name | Type | Nullable |
---|---|---|
oAuthUserDataId | String | StringFieldUpdateOperationsInput | No |
providerUserId | String | StringFieldUpdateOperationsInput | No |
data | JsonNullValueInput | Json | No |
accessToken | String | StringFieldUpdateOperationsInput | No |
refreshToken | String | StringFieldUpdateOperationsInput | No |
oAuthProviderName | String | StringFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
oAuthUserDataId | String | StringFieldUpdateOperationsInput | No |
providerUserId | String | StringFieldUpdateOperationsInput | No |
data | JsonNullValueInput | Json | No |
accessToken | String | StringFieldUpdateOperationsInput | No |
refreshToken | String | StringFieldUpdateOperationsInput | No |
oAuthProviderName | String | StringFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
oAuthUserDataId | String | No |
userId | String | No |
providerUserId | String | No |
data | JsonNullValueInput | Json | No |
accessToken | String | No |
refreshToken | String | No |
Name | Type | Nullable |
---|---|---|
oAuthUserDataId | String | StringFieldUpdateOperationsInput | No |
user | UserUpdateOneRequiredWithoutOAuthUserDataNestedInput | No |
providerUserId | String | StringFieldUpdateOperationsInput | No |
data | JsonNullValueInput | Json | No |
accessToken | String | StringFieldUpdateOperationsInput | No |
refreshToken | String | StringFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
oAuthUserDataId | String | StringFieldUpdateOperationsInput | No |
userId | String | StringFieldUpdateOperationsInput | No |
providerUserId | String | StringFieldUpdateOperationsInput | No |
data | JsonNullValueInput | Json | No |
accessToken | String | StringFieldUpdateOperationsInput | No |
refreshToken | String | StringFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
reactionName | String | No |
description | String | No |
Name | Type | Nullable |
---|---|---|
webhookId | String | No |
userId | String | No |
reactionId | Int | No |
Name | Type | Nullable |
---|---|---|
reactionId | Int | No |
reactionName | String | No |
outgoingWebhook | String | Null | Yes |
enabled | Boolean | No |
enabledChain | Boolean | No |
Name | Type | Nullable |
---|---|---|
actionName | String | No |
description | String | No |
Name | Type | Nullable |
---|---|---|
reactionName | String | StringFieldUpdateOperationsInput | No |
description | String | StringFieldUpdateOperationsInput | No |
Reaction | ReactionUpdateManyWithoutReactNestedInput | No |
Name | Type | Nullable |
---|---|---|
reactionName | String | StringFieldUpdateOperationsInput | No |
description | String | StringFieldUpdateOperationsInput | No |
Reaction | ReactionUncheckedUpdateManyWithoutReactNestedInput | No |
Name | Type | Nullable |
---|---|---|
reactionName | String | StringFieldUpdateOperationsInput | No |
description | String | StringFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
webhookId | String | StringFieldUpdateOperationsInput | No |
user | UserUpdateOneRequiredWithoutWebhookNestedInput | No |
reaction | ReactionUpdateOneRequiredWithoutIncomingWebhookNestedInput | No |
DiscordBotWebhook | DiscordBotWebhookUpdateManyWithoutWebhookNestedInput | No |
Name | Type | Nullable |
---|---|---|
webhookId | String | StringFieldUpdateOperationsInput | No |
userId | String | StringFieldUpdateOperationsInput | No |
reactionId | Int | IntFieldUpdateOperationsInput | No |
DiscordBotWebhook | DiscordBotWebhookUncheckedUpdateManyWithoutWebhookNestedInput | No |
Name | Type | Nullable |
---|---|---|
react | ReactUpdateOneRequiredWithoutReactionNestedInput | No |
incomingWebhook | WebhookUpdateOneWithoutReactionNestedInput | No |
outgoingWebhook | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
actions | ActionReactionUpdateManyWithoutActionNestedInput | No |
reactions | ActionReactionUpdateManyWithoutReactionNestedInput | No |
enabled | Boolean | BoolFieldUpdateOperationsInput | No |
enabledChain | Boolean | BoolFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
reactionId | Int | IntFieldUpdateOperationsInput | No |
reactionName | String | StringFieldUpdateOperationsInput | No |
incomingWebhook | WebhookUncheckedUpdateOneWithoutReactionNestedInput | No |
outgoingWebhook | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
actions | ActionReactionUncheckedUpdateManyWithoutActionNestedInput | No |
reactions | ActionReactionUncheckedUpdateManyWithoutReactionNestedInput | No |
enabled | Boolean | BoolFieldUpdateOperationsInput | No |
enabledChain | Boolean | BoolFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
reactionId | Int | IntFieldUpdateOperationsInput | No |
reactionName | String | StringFieldUpdateOperationsInput | No |
outgoingWebhook | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
enabled | Boolean | BoolFieldUpdateOperationsInput | No |
enabledChain | Boolean | BoolFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
actionName | String | StringFieldUpdateOperationsInput | No |
description | String | StringFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
actionName | String | StringFieldUpdateOperationsInput | No |
description | String | StringFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
actionName | String | StringFieldUpdateOperationsInput | No |
description | String | StringFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
command | String | No |
serverId | String | No |
userId | String | No |
Name | Type | Nullable |
---|---|---|
command | String | StringFieldUpdateOperationsInput | No |
serverId | String | StringFieldUpdateOperationsInput | No |
user | UserUpdateOneWithoutDiscordBotWebhookNestedInput | No |
Name | Type | Nullable |
---|---|---|
command | String | StringFieldUpdateOperationsInput | No |
serverId | String | StringFieldUpdateOperationsInput | No |
userId | String | StringFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
reactionId | Int | No |
outgoingWebhook | String | Null | Yes |
enabled | Boolean | No |
enabledChain | Boolean | No |
Name | Type | Nullable |
---|---|---|
service | ServiceUpdateOneRequiredWithoutReactionNestedInput | No |
incomingWebhook | WebhookUpdateOneWithoutReactionNestedInput | No |
outgoingWebhook | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
actions | ActionReactionUpdateManyWithoutActionNestedInput | No |
reactions | ActionReactionUpdateManyWithoutReactionNestedInput | No |
enabled | Boolean | BoolFieldUpdateOperationsInput | No |
enabledChain | Boolean | BoolFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
reactionId | Int | IntFieldUpdateOperationsInput | No |
incomingWebhook | WebhookUncheckedUpdateOneWithoutReactionNestedInput | No |
outgoingWebhook | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
actions | ActionReactionUncheckedUpdateManyWithoutActionNestedInput | No |
reactions | ActionReactionUncheckedUpdateManyWithoutReactionNestedInput | No |
enabled | Boolean | BoolFieldUpdateOperationsInput | No |
enabledChain | Boolean | BoolFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
id | Int | No |
reactionId | Int | No |
Name | Type | Nullable |
---|---|---|
id | Int | No |
actionId | Int | No |
Name | Type | Nullable |
---|---|---|
reaction | ReactionUpdateOneRequiredWithoutReactionsNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | Int | IntFieldUpdateOperationsInput | No |
reactionId | Int | IntFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
id | Int | IntFieldUpdateOperationsInput | No |
reactionId | Int | IntFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
action | ReactionUpdateOneRequiredWithoutActionsNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | Int | IntFieldUpdateOperationsInput | No |
actionId | Int | IntFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
id | Int | IntFieldUpdateOperationsInput | No |
actionId | Int | IntFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
String | Yes | |
name | String | Yes |
password | String | Yes |
createdAt | DateTime | Yes |
emailVerified | Boolean | Yes |
tokens | Token[] | No |
Webhook | Webhook[] | No |
DiscordBotWebhook | DiscordBotWebhook[] | No |
oAuthUserData | oAuthUserData[] | No |
_count | UserCountOutputType | Yes |
Name | Type | Nullable |
---|---|---|
oAuthUserDataId | String | Yes |
userId | String | Yes |
user | User | Yes |
providerUserId | String | Yes |
data | Json | Yes |
accessToken | String | Yes |
refreshToken | String | Yes |
oAuthProviderName | String | Yes |
oAuthProvider | oAuthProvider | Yes |
Name | Type | Nullable |
---|---|---|
oAuthProviderName | String | Yes |
serviceName | String | No |
service | Service | No |
data | Json | Yes |
oAuthUserData | oAuthUserData[] | No |
_count | OAuthProviderCountOutputType | Yes |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
userId | String | Yes |
createdAt | DateTime | Yes |
updatedAt | DateTime | Yes |
valid | Boolean | Yes |
user | User | Yes |
type | TokenType | Yes |
Name | Type | Nullable |
---|---|---|
serviceName | String | Yes |
React | React[] | No |
Webhook | Webhook[] | No |
oAuthProviderName | String | No |
oAuthProvider | oAuthProvider | No |
Reaction | Reaction[] | No |
Action | Action[] | No |
_count | ServiceCountOutputType | Yes |
Name | Type | Nullable |
---|---|---|
webhookId | String | Yes |
userId | String | Yes |
user | User | Yes |
reactionId | Int | Yes |
reaction | Reaction | Yes |
incomingServiceName | String | Yes |
incomingService | Service | Yes |
DiscordBotWebhook | DiscordBotWebhook[] | No |
_count | WebhookCountOutputType | Yes |
Name | Type | Nullable |
---|---|---|
actionName | String | Yes |
serviceName | String | Yes |
service | Service | Yes |
description | String | Yes |
Name | Type | Nullable |
---|---|---|
reactionName | String | Yes |
description | String | Yes |
serviceName | String | Yes |
service | Service | Yes |
Reaction | Reaction[] | No |
_count | ReactCountOutputType | Yes |
Name | Type | Nullable |
---|---|---|
reactionId | Int | Yes |
serviceName | String | Yes |
service | Service | Yes |
reactionName | String | Yes |
react | React | Yes |
incomingWebhook | Webhook | No |
outgoingWebhook | String | No |
actions | ActionReaction[] | No |
reactions | ActionReaction[] | No |
enabled | Boolean | Yes |
enabledChain | Boolean | Yes |
_count | ReactionCountOutputType | Yes |
Name | Type | Nullable |
---|---|---|
id | Int | Yes |
actionId | Int | Yes |
reactionId | Int | Yes |
action | Reaction | Yes |
reaction | Reaction | Yes |
Name | Type | Nullable |
---|---|---|
command | String | Yes |
serverId | String | Yes |
userId | String | Yes |
user | User | No |
webhookWebhookId | String | Yes |
webhook | Webhook | Yes |
Name | Type | Nullable |
---|---|---|
id | Int | Yes |
message | String | Yes |
channelId | String | Yes |
embed | Boolean | Yes |
Name | Type | Nullable |
---|---|---|
_count | UserCountAggregateOutputType | No |
_min | UserMinAggregateOutputType | No |
_max | UserMaxAggregateOutputType | No |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
String | Yes | |
name | String | Yes |
password | String | Yes |
createdAt | DateTime | Yes |
emailVerified | Boolean | Yes |
_count | UserCountAggregateOutputType | No |
_min | UserMinAggregateOutputType | No |
_max | UserMaxAggregateOutputType | No |
Name | Type | Nullable |
---|---|---|
_count | OAuthUserDataCountAggregateOutputType | No |
_min | OAuthUserDataMinAggregateOutputType | No |
_max | OAuthUserDataMaxAggregateOutputType | No |
Name | Type | Nullable |
---|---|---|
oAuthUserDataId | String | Yes |
userId | String | Yes |
providerUserId | String | Yes |
data | Json | Yes |
accessToken | String | Yes |
refreshToken | String | Yes |
oAuthProviderName | String | Yes |
_count | OAuthUserDataCountAggregateOutputType | No |
_min | OAuthUserDataMinAggregateOutputType | No |
_max | OAuthUserDataMaxAggregateOutputType | No |
Name | Type | Nullable |
---|---|---|
_count | OAuthProviderCountAggregateOutputType | No |
_min | OAuthProviderMinAggregateOutputType | No |
_max | OAuthProviderMaxAggregateOutputType | No |
Name | Type | Nullable |
---|---|---|
oAuthProviderName | String | Yes |
serviceName | String | No |
data | Json | Yes |
_count | OAuthProviderCountAggregateOutputType | No |
_min | OAuthProviderMinAggregateOutputType | No |
_max | OAuthProviderMaxAggregateOutputType | No |
Name | Type | Nullable |
---|---|---|
_count | TokenCountAggregateOutputType | No |
_min | TokenMinAggregateOutputType | No |
_max | TokenMaxAggregateOutputType | No |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
userId | String | Yes |
createdAt | DateTime | Yes |
updatedAt | DateTime | Yes |
valid | Boolean | Yes |
type | TokenType | Yes |
_count | TokenCountAggregateOutputType | No |
_min | TokenMinAggregateOutputType | No |
_max | TokenMaxAggregateOutputType | No |
Name | Type | Nullable |
---|---|---|
_count | ServiceCountAggregateOutputType | No |
_min | ServiceMinAggregateOutputType | No |
_max | ServiceMaxAggregateOutputType | No |
Name | Type | Nullable |
---|---|---|
serviceName | String | Yes |
oAuthProviderName | String | No |
_count | ServiceCountAggregateOutputType | No |
_min | ServiceMinAggregateOutputType | No |
_max | ServiceMaxAggregateOutputType | No |
Name | Type | Nullable |
---|---|---|
_count | WebhookCountAggregateOutputType | No |
_avg | WebhookAvgAggregateOutputType | No |
_sum | WebhookSumAggregateOutputType | No |
_min | WebhookMinAggregateOutputType | No |
_max | WebhookMaxAggregateOutputType | No |
Name | Type | Nullable |
---|---|---|
webhookId | String | Yes |
userId | String | Yes |
reactionId | Int | Yes |
incomingServiceName | String | Yes |
_count | WebhookCountAggregateOutputType | No |
_avg | WebhookAvgAggregateOutputType | No |
_sum | WebhookSumAggregateOutputType | No |
_min | WebhookMinAggregateOutputType | No |
_max | WebhookMaxAggregateOutputType | No |
Name | Type | Nullable |
---|---|---|
_count | ActionCountAggregateOutputType | No |
_min | ActionMinAggregateOutputType | No |
_max | ActionMaxAggregateOutputType | No |
Name | Type | Nullable |
---|---|---|
actionName | String | Yes |
serviceName | String | Yes |
description | String | Yes |
_count | ActionCountAggregateOutputType | No |
_min | ActionMinAggregateOutputType | No |
_max | ActionMaxAggregateOutputType | No |
Name | Type | Nullable |
---|---|---|
_count | ReactCountAggregateOutputType | No |
_min | ReactMinAggregateOutputType | No |
_max | ReactMaxAggregateOutputType | No |
Name | Type | Nullable |
---|---|---|
reactionName | String | Yes |
description | String | Yes |
serviceName | String | Yes |
_count | ReactCountAggregateOutputType | No |
_min | ReactMinAggregateOutputType | No |
_max | ReactMaxAggregateOutputType | No |
Name | Type | Nullable |
---|---|---|
_count | ReactionCountAggregateOutputType | No |
_avg | ReactionAvgAggregateOutputType | No |
_sum | ReactionSumAggregateOutputType | No |
_min | ReactionMinAggregateOutputType | No |
_max | ReactionMaxAggregateOutputType | No |
Name | Type | Nullable |
---|---|---|
reactionId | Int | Yes |
serviceName | String | Yes |
reactionName | String | Yes |
outgoingWebhook | String | No |
enabled | Boolean | Yes |
enabledChain | Boolean | Yes |
_count | ReactionCountAggregateOutputType | No |
_avg | ReactionAvgAggregateOutputType | No |
_sum | ReactionSumAggregateOutputType | No |
_min | ReactionMinAggregateOutputType | No |
_max | ReactionMaxAggregateOutputType | No |
Name | Type | Nullable |
---|---|---|
_count | ActionReactionCountAggregateOutputType | No |
_avg | ActionReactionAvgAggregateOutputType | No |
_sum | ActionReactionSumAggregateOutputType | No |
_min | ActionReactionMinAggregateOutputType | No |
_max | ActionReactionMaxAggregateOutputType | No |
Name | Type | Nullable |
---|---|---|
id | Int | Yes |
actionId | Int | Yes |
reactionId | Int | Yes |
_count | ActionReactionCountAggregateOutputType | No |
_avg | ActionReactionAvgAggregateOutputType | No |
_sum | ActionReactionSumAggregateOutputType | No |
_min | ActionReactionMinAggregateOutputType | No |
_max | ActionReactionMaxAggregateOutputType | No |
Name | Type | Nullable |
---|---|---|
_count | DiscordBotWebhookCountAggregateOutputType | No |
_min | DiscordBotWebhookMinAggregateOutputType | No |
_max | DiscordBotWebhookMaxAggregateOutputType | No |
Name | Type | Nullable |
---|---|---|
command | String | Yes |
serverId | String | Yes |
userId | String | Yes |
webhookWebhookId | String | Yes |
_count | DiscordBotWebhookCountAggregateOutputType | No |
_min | DiscordBotWebhookMinAggregateOutputType | No |
_max | DiscordBotWebhookMaxAggregateOutputType | No |
Name | Type | Nullable |
---|---|---|
_count | DiscordMessageQueueCountAggregateOutputType | No |
_avg | DiscordMessageQueueAvgAggregateOutputType | No |
_sum | DiscordMessageQueueSumAggregateOutputType | No |
_min | DiscordMessageQueueMinAggregateOutputType | No |
_max | DiscordMessageQueueMaxAggregateOutputType | No |
Name | Type | Nullable |
---|---|---|
id | Int | Yes |
message | String | Yes |
channelId | String | Yes |
embed | Boolean | Yes |
_count | DiscordMessageQueueCountAggregateOutputType | No |
_avg | DiscordMessageQueueAvgAggregateOutputType | No |
_sum | DiscordMessageQueueSumAggregateOutputType | No |
_min | DiscordMessageQueueMinAggregateOutputType | No |
_max | DiscordMessageQueueMaxAggregateOutputType | No |
Name | Type | Nullable |
---|---|---|
count | Int | Yes |
Name | Type | Nullable |
---|---|---|
tokens | Int | Yes |
Webhook | Int | Yes |
DiscordBotWebhook | Int | Yes |
oAuthUserData | Int | Yes |
Name | Type | Nullable |
---|---|---|
id | Int | Yes |
Int | Yes | |
name | Int | Yes |
password | Int | Yes |
createdAt | Int | Yes |
emailVerified | Int | Yes |
_all | Int | Yes |
Name | Type | Nullable |
---|---|---|
id | String | No |
String | No | |
name | String | No |
password | String | No |
createdAt | DateTime | No |
emailVerified | Boolean | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
String | No | |
name | String | No |
password | String | No |
createdAt | DateTime | No |
emailVerified | Boolean | No |
Name | Type | Nullable |
---|---|---|
oAuthUserDataId | Int | Yes |
userId | Int | Yes |
providerUserId | Int | Yes |
data | Int | Yes |
accessToken | Int | Yes |
refreshToken | Int | Yes |
oAuthProviderName | Int | Yes |
_all | Int | Yes |
Name | Type | Nullable |
---|---|---|
oAuthUserDataId | String | No |
userId | String | No |
providerUserId | String | No |
accessToken | String | No |
refreshToken | String | No |
oAuthProviderName | String | No |
Name | Type | Nullable |
---|---|---|
oAuthUserDataId | String | No |
userId | String | No |
providerUserId | String | No |
accessToken | String | No |
refreshToken | String | No |
oAuthProviderName | String | No |
Name | Type | Nullable |
---|---|---|
oAuthUserData | Int | Yes |
Name | Type | Nullable |
---|---|---|
oAuthProviderName | Int | Yes |
serviceName | Int | Yes |
data | Int | Yes |
_all | Int | Yes |
Name | Type | Nullable |
---|---|---|
oAuthProviderName | String | No |
serviceName | String | No |
Name | Type | Nullable |
---|---|---|
oAuthProviderName | String | No |
serviceName | String | No |
Name | Type | Nullable |
---|---|---|
id | Int | Yes |
userId | Int | Yes |
createdAt | Int | Yes |
updatedAt | Int | Yes |
valid | Int | Yes |
type | Int | Yes |
_all | Int | Yes |
Name | Type | Nullable |
---|---|---|
id | String | No |
userId | String | No |
createdAt | DateTime | No |
updatedAt | DateTime | No |
valid | Boolean | No |
type | TokenType | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
userId | String | No |
createdAt | DateTime | No |
updatedAt | DateTime | No |
valid | Boolean | No |
type | TokenType | No |
Name | Type | Nullable |
---|---|---|
React | Int | Yes |
Webhook | Int | Yes |
Reaction | Int | Yes |
Action | Int | Yes |
Name | Type | Nullable |
---|---|---|
serviceName | Int | Yes |
oAuthProviderName | Int | Yes |
_all | Int | Yes |
Name | Type | Nullable |
---|---|---|
serviceName | String | No |
oAuthProviderName | String | No |
Name | Type | Nullable |
---|---|---|
serviceName | String | No |
oAuthProviderName | String | No |
Name | Type | Nullable |
---|---|---|
DiscordBotWebhook | Int | Yes |
Name | Type | Nullable |
---|---|---|
webhookId | Int | Yes |
userId | Int | Yes |
reactionId | Int | Yes |
incomingServiceName | Int | Yes |
_all | Int | Yes |
Name | Type | Nullable |
---|---|---|
reactionId | Float | No |
Name | Type | Nullable |
---|---|---|
reactionId | Int | No |
Name | Type | Nullable |
---|---|---|
webhookId | String | No |
userId | String | No |
reactionId | Int | No |
incomingServiceName | String | No |
Name | Type | Nullable |
---|---|---|
webhookId | String | No |
userId | String | No |
reactionId | Int | No |
incomingServiceName | String | No |
Name | Type | Nullable |
---|---|---|
actionName | Int | Yes |
serviceName | Int | Yes |
description | Int | Yes |
_all | Int | Yes |
Name | Type | Nullable |
---|---|---|
actionName | String | No |
serviceName | String | No |
description | String | No |
Name | Type | Nullable |
---|---|---|
actionName | String | No |
serviceName | String | No |
description | String | No |
Name | Type | Nullable |
---|---|---|
Reaction | Int | Yes |
Name | Type | Nullable |
---|---|---|
reactionName | Int | Yes |
description | Int | Yes |
serviceName | Int | Yes |
_all | Int | Yes |
Name | Type | Nullable |
---|---|---|
reactionName | String | No |
description | String | No |
serviceName | String | No |
Name | Type | Nullable |
---|---|---|
reactionName | String | No |
description | String | No |
serviceName | String | No |
Name | Type | Nullable |
---|---|---|
actions | Int | Yes |
reactions | Int | Yes |
Name | Type | Nullable |
---|---|---|
reactionId | Int | Yes |
serviceName | Int | Yes |
reactionName | Int | Yes |
outgoingWebhook | Int | Yes |
enabled | Int | Yes |
enabledChain | Int | Yes |
_all | Int | Yes |
Name | Type | Nullable |
---|---|---|
reactionId | Float | No |
Name | Type | Nullable |
---|---|---|
reactionId | Int | No |
Name | Type | Nullable |
---|---|---|
reactionId | Int | No |
serviceName | String | No |
reactionName | String | No |
outgoingWebhook | String | No |
enabled | Boolean | No |
enabledChain | Boolean | No |
Name | Type | Nullable |
---|---|---|
reactionId | Int | No |
serviceName | String | No |
reactionName | String | No |
outgoingWebhook | String | No |
enabled | Boolean | No |
enabledChain | Boolean | No |
Name | Type | Nullable |
---|---|---|
id | Int | Yes |
actionId | Int | Yes |
reactionId | Int | Yes |
_all | Int | Yes |
Name | Type | Nullable |
---|---|---|
id | Float | No |
actionId | Float | No |
reactionId | Float | No |
Name | Type | Nullable |
---|---|---|
id | Int | No |
actionId | Int | No |
reactionId | Int | No |
Name | Type | Nullable |
---|---|---|
id | Int | No |
actionId | Int | No |
reactionId | Int | No |
Name | Type | Nullable |
---|---|---|
id | Int | No |
actionId | Int | No |
reactionId | Int | No |
Name | Type | Nullable |
---|---|---|
command | Int | Yes |
serverId | Int | Yes |
userId | Int | Yes |
webhookWebhookId | Int | Yes |
_all | Int | Yes |
Name | Type | Nullable |
---|---|---|
command | String | No |
serverId | String | No |
userId | String | No |
webhookWebhookId | String | No |
Name | Type | Nullable |
---|---|---|
command | String | No |
serverId | String | No |
userId | String | No |
webhookWebhookId | String | No |
Name | Type | Nullable |
---|---|---|
id | Int | Yes |
message | Int | Yes |
channelId | Int | Yes |
embed | Int | Yes |
_all | Int | Yes |
Name | Type | Nullable |
---|---|---|
id | Float | No |
Name | Type | Nullable |
---|---|---|
id | Int | No |
Name | Type | Nullable |
---|---|---|
id | Int | No |
message | String | No |
channelId | String | No |
embed | Boolean | No |
Name | Type | Nullable |
---|---|---|
id | Int | No |
message | String | No |
channelId | String | No |
embed | Boolean | No |