Name | Type | Attributes | Required | Comment |
---|---|---|---|---|
id | Int |
|
Yes | - |
type | alertType |
|
Yes | - |
message | String? |
|
No | - |
actionplan | actionPlan? |
|
No | - |
actionplanId | Int? |
|
No | - |
date | DateTime |
|
Yes | - |
state | alertState |
|
Yes | - |
acknowledged_by | alertContacts[] |
|
Yes | - |
acknowledged_at | DateTime? |
|
No | - |
Find zero or one Alerts
// Get one Alerts
const alerts = await prisma.alerts.findUnique({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | alertsWhereUniqueInput | Yes |
Find first Alerts
// Get one Alerts
const alerts = await prisma.alerts.findFirst({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | alertsWhereInput | No |
orderBy | alertsOrderByWithRelationInput[] | alertsOrderByWithRelationInput | No |
cursor | alertsWhereUniqueInput | No |
take | Int | No |
skip | Int | No |
distinct | AlertsScalarFieldEnum | AlertsScalarFieldEnum[] | No |
Find zero or more Alerts
// Get all Alerts
const Alerts = await prisma.alerts.findMany()
// Get first 10 Alerts
const Alerts = await prisma.alerts.findMany({ take: 10 })
Name | Type | Required |
---|---|---|
where | alertsWhereInput | No |
orderBy | alertsOrderByWithRelationInput[] | alertsOrderByWithRelationInput | No |
cursor | alertsWhereUniqueInput | No |
take | Int | No |
skip | Int | No |
distinct | AlertsScalarFieldEnum | AlertsScalarFieldEnum[] | No |
Create one Alerts
// Create one Alerts
const Alerts = await prisma.alerts.create({
data: {
// ... data to create a Alerts
}
})
Name | Type | Required |
---|---|---|
data | alertsCreateInput | alertsUncheckedCreateInput | Yes |
Delete one Alerts
// Delete one Alerts
const Alerts = await prisma.alerts.delete({
where: {
// ... filter to delete one Alerts
}
})
Name | Type | Required |
---|---|---|
where | alertsWhereUniqueInput | Yes |
Update one Alerts
// Update one Alerts
const alerts = await prisma.alerts.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
Name | Type | Required |
---|---|---|
data | alertsUpdateInput | alertsUncheckedUpdateInput | Yes |
where | alertsWhereUniqueInput | Yes |
Delete zero or more Alerts
// Delete a few Alerts
const { count } = await prisma.alerts.deleteMany({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | alertsWhereInput | No |
Update zero or one Alerts
const { count } = await prisma.alerts.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
Name | Type | Required |
---|---|---|
data | alertsUpdateManyMutationInput | alertsUncheckedUpdateManyInput | Yes |
where | alertsWhereInput | No |
Create or update one Alerts
// Update or create a Alerts
const alerts = await prisma.alerts.upsert({
create: {
// ... data to create a Alerts
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Alerts we want to update
}
})
Name | Type | Required |
---|---|---|
where | alertsWhereUniqueInput | Yes |
create | alertsCreateInput | alertsUncheckedCreateInput | Yes |
update | alertsUpdateInput | alertsUncheckedUpdateInput | Yes |
Name | Type | Attributes | Required | Comment |
---|---|---|---|---|
id | Int |
|
Yes | - |
name | String |
|
Yes | - |
phone | String |
|
Yes | - |
comment | String? |
|
No | - |
prios | priorities[] |
|
Yes | - |
alerts | alerts[] |
|
Yes | - |
Find zero or one AlertContacts
// Get one AlertContacts
const alertContacts = await prisma.alertContacts.findUnique({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | alertContactsWhereUniqueInput | Yes |
Find first AlertContacts
// Get one AlertContacts
const alertContacts = await prisma.alertContacts.findFirst({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | alertContactsWhereInput | No |
orderBy | alertContactsOrderByWithRelationInput[] | alertContactsOrderByWithRelationInput | No |
cursor | alertContactsWhereUniqueInput | No |
take | Int | No |
skip | Int | No |
distinct | AlertContactsScalarFieldEnum | AlertContactsScalarFieldEnum[] | No |
Find zero or more AlertContacts
// Get all AlertContacts
const AlertContacts = await prisma.alertContacts.findMany()
// Get first 10 AlertContacts
const AlertContacts = await prisma.alertContacts.findMany({ take: 10 })
Name | Type | Required |
---|---|---|
where | alertContactsWhereInput | No |
orderBy | alertContactsOrderByWithRelationInput[] | alertContactsOrderByWithRelationInput | No |
cursor | alertContactsWhereUniqueInput | No |
take | Int | No |
skip | Int | No |
distinct | AlertContactsScalarFieldEnum | AlertContactsScalarFieldEnum[] | No |
Create one AlertContacts
// Create one AlertContacts
const AlertContacts = await prisma.alertContacts.create({
data: {
// ... data to create a AlertContacts
}
})
Name | Type | Required |
---|---|---|
data | alertContactsCreateInput | alertContactsUncheckedCreateInput | Yes |
Delete one AlertContacts
// Delete one AlertContacts
const AlertContacts = await prisma.alertContacts.delete({
where: {
// ... filter to delete one AlertContacts
}
})
Name | Type | Required |
---|---|---|
where | alertContactsWhereUniqueInput | Yes |
Update one AlertContacts
// Update one AlertContacts
const alertContacts = await prisma.alertContacts.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
Name | Type | Required |
---|---|---|
data | alertContactsUpdateInput | alertContactsUncheckedUpdateInput | Yes |
where | alertContactsWhereUniqueInput | Yes |
Delete zero or more AlertContacts
// Delete a few AlertContacts
const { count } = await prisma.alertContacts.deleteMany({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | alertContactsWhereInput | No |
Update zero or one AlertContacts
const { count } = await prisma.alertContacts.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
Name | Type | Required |
---|---|---|
data | alertContactsUpdateManyMutationInput | alertContactsUncheckedUpdateManyInput | Yes |
where | alertContactsWhereInput | No |
Create or update one AlertContacts
// Update or create a AlertContacts
const alertContacts = await prisma.alertContacts.upsert({
create: {
// ... data to create a AlertContacts
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the AlertContacts we want to update
}
})
Name | Type | Required |
---|---|---|
where | alertContactsWhereUniqueInput | Yes |
create | alertContactsCreateInput | alertContactsUncheckedCreateInput | Yes |
update | alertContactsUpdateInput | alertContactsUncheckedUpdateInput | Yes |
Name | Type | Attributes | Required | Comment |
---|---|---|---|---|
id | Int |
|
Yes | - |
name | String |
|
Yes | - |
comment | String? |
|
No | - |
alert_hook | String |
|
Yes | - |
prio | priorities[] |
|
Yes | - |
content | content[] |
|
Yes | - |
alerts | alerts[] |
|
Yes | - |
Find zero or one ActionPlan
// Get one ActionPlan
const actionPlan = await prisma.actionPlan.findUnique({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | actionPlanWhereUniqueInput | Yes |
Find first ActionPlan
// Get one ActionPlan
const actionPlan = await prisma.actionPlan.findFirst({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | actionPlanWhereInput | No |
orderBy | actionPlanOrderByWithRelationInput[] | actionPlanOrderByWithRelationInput | No |
cursor | actionPlanWhereUniqueInput | No |
take | Int | No |
skip | Int | No |
distinct | ActionPlanScalarFieldEnum | ActionPlanScalarFieldEnum[] | No |
Find zero or more ActionPlan
// Get all ActionPlan
const ActionPlan = await prisma.actionPlan.findMany()
// Get first 10 ActionPlan
const ActionPlan = await prisma.actionPlan.findMany({ take: 10 })
Name | Type | Required |
---|---|---|
where | actionPlanWhereInput | No |
orderBy | actionPlanOrderByWithRelationInput[] | actionPlanOrderByWithRelationInput | No |
cursor | actionPlanWhereUniqueInput | No |
take | Int | No |
skip | Int | No |
distinct | ActionPlanScalarFieldEnum | ActionPlanScalarFieldEnum[] | No |
Create one ActionPlan
// Create one ActionPlan
const ActionPlan = await prisma.actionPlan.create({
data: {
// ... data to create a ActionPlan
}
})
Name | Type | Required |
---|---|---|
data | actionPlanCreateInput | actionPlanUncheckedCreateInput | Yes |
Delete one ActionPlan
// Delete one ActionPlan
const ActionPlan = await prisma.actionPlan.delete({
where: {
// ... filter to delete one ActionPlan
}
})
Name | Type | Required |
---|---|---|
where | actionPlanWhereUniqueInput | Yes |
Update one ActionPlan
// Update one ActionPlan
const actionPlan = await prisma.actionPlan.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
Name | Type | Required |
---|---|---|
data | actionPlanUpdateInput | actionPlanUncheckedUpdateInput | Yes |
where | actionPlanWhereUniqueInput | Yes |
Delete zero or more ActionPlan
// Delete a few ActionPlan
const { count } = await prisma.actionPlan.deleteMany({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | actionPlanWhereInput | No |
Update zero or one ActionPlan
const { count } = await prisma.actionPlan.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
Name | Type | Required |
---|---|---|
data | actionPlanUpdateManyMutationInput | actionPlanUncheckedUpdateManyInput | Yes |
where | actionPlanWhereInput | No |
Create or update one ActionPlan
// Update or create a ActionPlan
const actionPlan = await prisma.actionPlan.upsert({
create: {
// ... data to create a ActionPlan
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the ActionPlan we want to update
}
})
Name | Type | Required |
---|---|---|
where | actionPlanWhereUniqueInput | Yes |
create | actionPlanCreateInput | actionPlanUncheckedCreateInput | Yes |
update | actionPlanUpdateInput | actionPlanUncheckedUpdateInput | Yes |
Name | Value |
---|---|
@@unique |
|
@@index |
|
Name | Type | Attributes | Required | Comment |
---|---|---|---|---|
id | Int |
|
Yes | - |
Contact | alertContacts |
|
Yes | - |
contactId | Int |
|
Yes | - |
priority | Int |
|
Yes | - |
actionplan | actionPlan |
|
Yes | - |
actionplanId | Int |
|
Yes | - |
Find zero or one Priorities
// Get one Priorities
const priorities = await prisma.priorities.findUnique({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | prioritiesWhereUniqueInput | Yes |
Find first Priorities
// Get one Priorities
const priorities = await prisma.priorities.findFirst({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | prioritiesWhereInput | No |
orderBy | prioritiesOrderByWithRelationInput[] | prioritiesOrderByWithRelationInput | No |
cursor | prioritiesWhereUniqueInput | No |
take | Int | No |
skip | Int | No |
distinct | PrioritiesScalarFieldEnum | PrioritiesScalarFieldEnum[] | No |
Find zero or more Priorities
// Get all Priorities
const Priorities = await prisma.priorities.findMany()
// Get first 10 Priorities
const Priorities = await prisma.priorities.findMany({ take: 10 })
Name | Type | Required |
---|---|---|
where | prioritiesWhereInput | No |
orderBy | prioritiesOrderByWithRelationInput[] | prioritiesOrderByWithRelationInput | No |
cursor | prioritiesWhereUniqueInput | No |
take | Int | No |
skip | Int | No |
distinct | PrioritiesScalarFieldEnum | PrioritiesScalarFieldEnum[] | No |
Create one Priorities
// Create one Priorities
const Priorities = await prisma.priorities.create({
data: {
// ... data to create a Priorities
}
})
Name | Type | Required |
---|---|---|
data | prioritiesCreateInput | prioritiesUncheckedCreateInput | Yes |
Delete one Priorities
// Delete one Priorities
const Priorities = await prisma.priorities.delete({
where: {
// ... filter to delete one Priorities
}
})
Name | Type | Required |
---|---|---|
where | prioritiesWhereUniqueInput | Yes |
Update one Priorities
// Update one Priorities
const priorities = await prisma.priorities.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
Name | Type | Required |
---|---|---|
data | prioritiesUpdateInput | prioritiesUncheckedUpdateInput | Yes |
where | prioritiesWhereUniqueInput | Yes |
Delete zero or more Priorities
// Delete a few Priorities
const { count } = await prisma.priorities.deleteMany({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | prioritiesWhereInput | No |
Update zero or one Priorities
const { count } = await prisma.priorities.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
Name | Type | Required |
---|---|---|
data | prioritiesUpdateManyMutationInput | prioritiesUncheckedUpdateManyInput | Yes |
where | prioritiesWhereInput | No |
Create or update one Priorities
// Update or create a Priorities
const priorities = await prisma.priorities.upsert({
create: {
// ... data to create a Priorities
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Priorities we want to update
}
})
Name | Type | Required |
---|---|---|
where | prioritiesWhereUniqueInput | Yes |
create | prioritiesCreateInput | prioritiesUncheckedCreateInput | Yes |
update | prioritiesUpdateInput | prioritiesUncheckedUpdateInput | Yes |
Name | Type | Attributes | Required | Comment |
---|---|---|---|---|
id | Int |
|
Yes | - |
type | contentType |
|
Yes | - |
name | String |
|
Yes | - |
filename | String |
|
Yes | - |
actionplan | actionPlan[] |
|
Yes | - |
Find zero or one Content
// Get one Content
const content = await prisma.content.findUnique({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | contentWhereUniqueInput | Yes |
Find first Content
// Get one Content
const content = await prisma.content.findFirst({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | contentWhereInput | No |
orderBy | contentOrderByWithRelationInput[] | contentOrderByWithRelationInput | No |
cursor | contentWhereUniqueInput | No |
take | Int | No |
skip | Int | No |
distinct | ContentScalarFieldEnum | ContentScalarFieldEnum[] | No |
Find zero or more Content
// Get all Content
const Content = await prisma.content.findMany()
// Get first 10 Content
const Content = await prisma.content.findMany({ take: 10 })
Name | Type | Required |
---|---|---|
where | contentWhereInput | No |
orderBy | contentOrderByWithRelationInput[] | contentOrderByWithRelationInput | No |
cursor | contentWhereUniqueInput | No |
take | Int | No |
skip | Int | No |
distinct | ContentScalarFieldEnum | ContentScalarFieldEnum[] | No |
Create one Content
// Create one Content
const Content = await prisma.content.create({
data: {
// ... data to create a Content
}
})
Name | Type | Required |
---|---|---|
data | contentCreateInput | contentUncheckedCreateInput | Yes |
Delete one Content
// Delete one Content
const Content = await prisma.content.delete({
where: {
// ... filter to delete one Content
}
})
Name | Type | Required |
---|---|---|
where | contentWhereUniqueInput | Yes |
Update one Content
// Update one Content
const content = await prisma.content.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
Name | Type | Required |
---|---|---|
data | contentUpdateInput | contentUncheckedUpdateInput | Yes |
where | contentWhereUniqueInput | Yes |
Delete zero or more Content
// Delete a few Content
const { count } = await prisma.content.deleteMany({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | contentWhereInput | No |
Update zero or one Content
const { count } = await prisma.content.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
Name | Type | Required |
---|---|---|
data | contentUpdateManyMutationInput | contentUncheckedUpdateManyInput | Yes |
where | contentWhereInput | No |
Create or update one Content
// Update or create a Content
const content = await prisma.content.upsert({
create: {
// ... data to create a Content
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Content we want to update
}
})
Name | Type | Required |
---|---|---|
where | contentWhereUniqueInput | Yes |
create | contentCreateInput | contentUncheckedCreateInput | Yes |
update | contentUpdateInput | contentUncheckedUpdateInput | Yes |
Name | Type | Nullable |
---|---|---|
AND | alertsWhereInput | alertsWhereInput[] | No |
OR | alertsWhereInput[] | No |
NOT | alertsWhereInput | alertsWhereInput[] | No |
id | IntFilter | Int | No |
type | EnumalertTypeFilter | alertType | No |
message | StringNullableFilter | String | Null | Yes |
actionplanId | IntNullableFilter | Int | Null | Yes |
date | DateTimeFilter | DateTime | No |
state | EnumalertStateFilter | alertState | No |
acknowledged_at | DateTimeNullableFilter | DateTime | Null | Yes |
actionplan | ActionPlanNullableScalarRelationFilter | actionPlanWhereInput | Null | Yes |
acknowledged_by | AlertContactsListRelationFilter | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
type | SortOrder | No |
message | SortOrder | SortOrderInput | No |
actionplanId | SortOrder | SortOrderInput | No |
date | SortOrder | No |
state | SortOrder | No |
acknowledged_at | SortOrder | SortOrderInput | No |
actionplan | actionPlanOrderByWithRelationInput | No |
acknowledged_by | alertContactsOrderByRelationAggregateInput | No |
_relevance | alertsOrderByRelevanceInput | No |
Name | Type | Nullable |
---|---|---|
id | Int | No |
AND | alertsWhereInput | alertsWhereInput[] | No |
OR | alertsWhereInput[] | No |
NOT | alertsWhereInput | alertsWhereInput[] | No |
type | EnumalertTypeFilter | alertType | No |
message | StringNullableFilter | String | Null | Yes |
actionplanId | IntNullableFilter | Int | Null | Yes |
date | DateTimeFilter | DateTime | No |
state | EnumalertStateFilter | alertState | No |
acknowledged_at | DateTimeNullableFilter | DateTime | Null | Yes |
actionplan | ActionPlanNullableScalarRelationFilter | actionPlanWhereInput | Null | Yes |
acknowledged_by | AlertContactsListRelationFilter | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
type | SortOrder | No |
message | SortOrder | SortOrderInput | No |
actionplanId | SortOrder | SortOrderInput | No |
date | SortOrder | No |
state | SortOrder | No |
acknowledged_at | SortOrder | SortOrderInput | No |
_count | alertsCountOrderByAggregateInput | No |
_avg | alertsAvgOrderByAggregateInput | No |
_max | alertsMaxOrderByAggregateInput | No |
_min | alertsMinOrderByAggregateInput | No |
_sum | alertsSumOrderByAggregateInput | No |
Name | Type | Nullable |
---|---|---|
AND | alertsScalarWhereWithAggregatesInput | alertsScalarWhereWithAggregatesInput[] | No |
OR | alertsScalarWhereWithAggregatesInput[] | No |
NOT | alertsScalarWhereWithAggregatesInput | alertsScalarWhereWithAggregatesInput[] | No |
id | IntWithAggregatesFilter | Int | No |
type | EnumalertTypeWithAggregatesFilter | alertType | No |
message | StringNullableWithAggregatesFilter | String | Null | Yes |
actionplanId | IntNullableWithAggregatesFilter | Int | Null | Yes |
date | DateTimeWithAggregatesFilter | DateTime | No |
state | EnumalertStateWithAggregatesFilter | alertState | No |
acknowledged_at | DateTimeNullableWithAggregatesFilter | DateTime | Null | Yes |
Name | Type | Nullable |
---|---|---|
AND | alertContactsWhereInput | alertContactsWhereInput[] | No |
OR | alertContactsWhereInput[] | No |
NOT | alertContactsWhereInput | alertContactsWhereInput[] | No |
id | IntFilter | Int | No |
name | StringFilter | String | No |
phone | StringFilter | String | No |
comment | StringNullableFilter | String | Null | Yes |
prios | PrioritiesListRelationFilter | No |
alerts | AlertsListRelationFilter | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
name | SortOrder | No |
phone | SortOrder | No |
comment | SortOrder | SortOrderInput | No |
prios | prioritiesOrderByRelationAggregateInput | No |
alerts | alertsOrderByRelationAggregateInput | No |
_relevance | alertContactsOrderByRelevanceInput | No |
Name | Type | Nullable |
---|---|---|
id | Int | No |
phone | String | No |
AND | alertContactsWhereInput | alertContactsWhereInput[] | No |
OR | alertContactsWhereInput[] | No |
NOT | alertContactsWhereInput | alertContactsWhereInput[] | No |
name | StringFilter | String | No |
comment | StringNullableFilter | String | Null | Yes |
prios | PrioritiesListRelationFilter | No |
alerts | AlertsListRelationFilter | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
name | SortOrder | No |
phone | SortOrder | No |
comment | SortOrder | SortOrderInput | No |
_count | alertContactsCountOrderByAggregateInput | No |
_avg | alertContactsAvgOrderByAggregateInput | No |
_max | alertContactsMaxOrderByAggregateInput | No |
_min | alertContactsMinOrderByAggregateInput | No |
_sum | alertContactsSumOrderByAggregateInput | No |
Name | Type | Nullable |
---|---|---|
AND | alertContactsScalarWhereWithAggregatesInput | alertContactsScalarWhereWithAggregatesInput[] | No |
OR | alertContactsScalarWhereWithAggregatesInput[] | No |
NOT | alertContactsScalarWhereWithAggregatesInput | alertContactsScalarWhereWithAggregatesInput[] | No |
id | IntWithAggregatesFilter | Int | No |
name | StringWithAggregatesFilter | String | No |
phone | StringWithAggregatesFilter | String | No |
comment | StringNullableWithAggregatesFilter | String | Null | Yes |
Name | Type | Nullable |
---|---|---|
AND | actionPlanWhereInput | actionPlanWhereInput[] | No |
OR | actionPlanWhereInput[] | No |
NOT | actionPlanWhereInput | actionPlanWhereInput[] | No |
id | IntFilter | Int | No |
name | StringFilter | String | No |
comment | StringNullableFilter | String | Null | Yes |
alert_hook | StringFilter | String | No |
prio | PrioritiesListRelationFilter | No |
content | ContentListRelationFilter | No |
alerts | AlertsListRelationFilter | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
name | SortOrder | No |
comment | SortOrder | SortOrderInput | No |
alert_hook | SortOrder | No |
prio | prioritiesOrderByRelationAggregateInput | No |
content | contentOrderByRelationAggregateInput | No |
alerts | alertsOrderByRelationAggregateInput | No |
_relevance | actionPlanOrderByRelevanceInput | No |
Name | Type | Nullable |
---|---|---|
id | Int | No |
alert_hook | String | No |
AND | actionPlanWhereInput | actionPlanWhereInput[] | No |
OR | actionPlanWhereInput[] | No |
NOT | actionPlanWhereInput | actionPlanWhereInput[] | No |
name | StringFilter | String | No |
comment | StringNullableFilter | String | Null | Yes |
prio | PrioritiesListRelationFilter | No |
content | ContentListRelationFilter | No |
alerts | AlertsListRelationFilter | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
name | SortOrder | No |
comment | SortOrder | SortOrderInput | No |
alert_hook | SortOrder | No |
_count | actionPlanCountOrderByAggregateInput | No |
_avg | actionPlanAvgOrderByAggregateInput | No |
_max | actionPlanMaxOrderByAggregateInput | No |
_min | actionPlanMinOrderByAggregateInput | No |
_sum | actionPlanSumOrderByAggregateInput | No |
Name | Type | Nullable |
---|---|---|
AND | actionPlanScalarWhereWithAggregatesInput | actionPlanScalarWhereWithAggregatesInput[] | No |
OR | actionPlanScalarWhereWithAggregatesInput[] | No |
NOT | actionPlanScalarWhereWithAggregatesInput | actionPlanScalarWhereWithAggregatesInput[] | No |
id | IntWithAggregatesFilter | Int | No |
name | StringWithAggregatesFilter | String | No |
comment | StringNullableWithAggregatesFilter | String | Null | Yes |
alert_hook | StringWithAggregatesFilter | String | No |
Name | Type | Nullable |
---|---|---|
AND | prioritiesWhereInput | prioritiesWhereInput[] | No |
OR | prioritiesWhereInput[] | No |
NOT | prioritiesWhereInput | prioritiesWhereInput[] | No |
id | IntFilter | Int | No |
contactId | IntFilter | Int | No |
priority | IntFilter | Int | No |
actionplanId | IntFilter | Int | No |
Contact | AlertContactsScalarRelationFilter | alertContactsWhereInput | No |
actionplan | ActionPlanScalarRelationFilter | actionPlanWhereInput | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
contactId | SortOrder | No |
priority | SortOrder | No |
actionplanId | SortOrder | No |
Contact | alertContactsOrderByWithRelationInput | No |
actionplan | actionPlanOrderByWithRelationInput | No |
Name | Type | Nullable |
---|---|---|
id | Int | No |
priority_actionplanId | prioritiesPriorityActionplanIdCompoundUniqueInput | No |
AND | prioritiesWhereInput | prioritiesWhereInput[] | No |
OR | prioritiesWhereInput[] | No |
NOT | prioritiesWhereInput | prioritiesWhereInput[] | No |
contactId | IntFilter | Int | No |
priority | IntFilter | Int | No |
actionplanId | IntFilter | Int | No |
Contact | AlertContactsScalarRelationFilter | alertContactsWhereInput | No |
actionplan | ActionPlanScalarRelationFilter | actionPlanWhereInput | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
contactId | SortOrder | No |
priority | SortOrder | No |
actionplanId | SortOrder | No |
_count | prioritiesCountOrderByAggregateInput | No |
_avg | prioritiesAvgOrderByAggregateInput | No |
_max | prioritiesMaxOrderByAggregateInput | No |
_min | prioritiesMinOrderByAggregateInput | No |
_sum | prioritiesSumOrderByAggregateInput | No |
Name | Type | Nullable |
---|---|---|
AND | prioritiesScalarWhereWithAggregatesInput | prioritiesScalarWhereWithAggregatesInput[] | No |
OR | prioritiesScalarWhereWithAggregatesInput[] | No |
NOT | prioritiesScalarWhereWithAggregatesInput | prioritiesScalarWhereWithAggregatesInput[] | No |
id | IntWithAggregatesFilter | Int | No |
contactId | IntWithAggregatesFilter | Int | No |
priority | IntWithAggregatesFilter | Int | No |
actionplanId | IntWithAggregatesFilter | Int | No |
Name | Type | Nullable |
---|---|---|
AND | contentWhereInput | contentWhereInput[] | No |
OR | contentWhereInput[] | No |
NOT | contentWhereInput | contentWhereInput[] | No |
id | IntFilter | Int | No |
type | EnumcontentTypeFilter | contentType | No |
name | StringFilter | String | No |
filename | StringFilter | String | No |
actionplan | ActionPlanListRelationFilter | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
type | SortOrder | No |
name | SortOrder | No |
filename | SortOrder | No |
actionplan | actionPlanOrderByRelationAggregateInput | No |
_relevance | contentOrderByRelevanceInput | No |
Name | Type | Nullable |
---|---|---|
id | Int | No |
AND | contentWhereInput | contentWhereInput[] | No |
OR | contentWhereInput[] | No |
NOT | contentWhereInput | contentWhereInput[] | No |
type | EnumcontentTypeFilter | contentType | No |
name | StringFilter | String | No |
filename | StringFilter | String | No |
actionplan | ActionPlanListRelationFilter | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
type | SortOrder | No |
name | SortOrder | No |
filename | SortOrder | No |
_count | contentCountOrderByAggregateInput | No |
_avg | contentAvgOrderByAggregateInput | No |
_max | contentMaxOrderByAggregateInput | No |
_min | contentMinOrderByAggregateInput | No |
_sum | contentSumOrderByAggregateInput | No |
Name | Type | Nullable |
---|---|---|
AND | contentScalarWhereWithAggregatesInput | contentScalarWhereWithAggregatesInput[] | No |
OR | contentScalarWhereWithAggregatesInput[] | No |
NOT | contentScalarWhereWithAggregatesInput | contentScalarWhereWithAggregatesInput[] | No |
id | IntWithAggregatesFilter | Int | No |
type | EnumcontentTypeWithAggregatesFilter | contentType | No |
name | StringWithAggregatesFilter | String | No |
filename | StringWithAggregatesFilter | String | No |
Name | Type | Nullable |
---|---|---|
type | alertType | No |
message | String | Null | Yes |
date | DateTime | No |
state | alertState | No |
acknowledged_at | DateTime | Null | Yes |
actionplan | actionPlanCreateNestedOneWithoutAlertsInput | No |
acknowledged_by | alertContactsCreateNestedManyWithoutAlertsInput | No |
Name | Type | Nullable |
---|---|---|
id | Int | No |
type | alertType | No |
message | String | Null | Yes |
actionplanId | Int | Null | Yes |
date | DateTime | No |
state | alertState | No |
acknowledged_at | DateTime | Null | Yes |
acknowledged_by | alertContactsUncheckedCreateNestedManyWithoutAlertsInput | No |
Name | Type | Nullable |
---|---|---|
type | alertType | EnumalertTypeFieldUpdateOperationsInput | No |
message | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
date | DateTime | DateTimeFieldUpdateOperationsInput | No |
state | alertState | EnumalertStateFieldUpdateOperationsInput | No |
acknowledged_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
actionplan | actionPlanUpdateOneWithoutAlertsNestedInput | No |
acknowledged_by | alertContactsUpdateManyWithoutAlertsNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | Int | IntFieldUpdateOperationsInput | No |
type | alertType | EnumalertTypeFieldUpdateOperationsInput | No |
message | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
actionplanId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
date | DateTime | DateTimeFieldUpdateOperationsInput | No |
state | alertState | EnumalertStateFieldUpdateOperationsInput | No |
acknowledged_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
acknowledged_by | alertContactsUncheckedUpdateManyWithoutAlertsNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | Int | No |
type | alertType | No |
message | String | Null | Yes |
actionplanId | Int | Null | Yes |
date | DateTime | No |
state | alertState | No |
acknowledged_at | DateTime | Null | Yes |
Name | Type | Nullable |
---|---|---|
type | alertType | EnumalertTypeFieldUpdateOperationsInput | No |
message | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
date | DateTime | DateTimeFieldUpdateOperationsInput | No |
state | alertState | EnumalertStateFieldUpdateOperationsInput | No |
acknowledged_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
Name | Type | Nullable |
---|---|---|
id | Int | IntFieldUpdateOperationsInput | No |
type | alertType | EnumalertTypeFieldUpdateOperationsInput | No |
message | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
actionplanId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
date | DateTime | DateTimeFieldUpdateOperationsInput | No |
state | alertState | EnumalertStateFieldUpdateOperationsInput | No |
acknowledged_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
Name | Type | Nullable |
---|---|---|
name | String | No |
phone | String | No |
comment | String | Null | Yes |
prios | prioritiesCreateNestedManyWithoutContactInput | No |
alerts | alertsCreateNestedManyWithoutAcknowledged_byInput | No |
Name | Type | Nullable |
---|---|---|
id | Int | No |
name | String | No |
phone | String | No |
comment | String | Null | Yes |
prios | prioritiesUncheckedCreateNestedManyWithoutContactInput | No |
alerts | alertsUncheckedCreateNestedManyWithoutAcknowledged_byInput | No |
Name | Type | Nullable |
---|---|---|
name | String | StringFieldUpdateOperationsInput | No |
phone | String | StringFieldUpdateOperationsInput | No |
comment | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
prios | prioritiesUpdateManyWithoutContactNestedInput | No |
alerts | alertsUpdateManyWithoutAcknowledged_byNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | Int | IntFieldUpdateOperationsInput | No |
name | String | StringFieldUpdateOperationsInput | No |
phone | String | StringFieldUpdateOperationsInput | No |
comment | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
prios | prioritiesUncheckedUpdateManyWithoutContactNestedInput | No |
alerts | alertsUncheckedUpdateManyWithoutAcknowledged_byNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | Int | No |
name | String | No |
phone | String | No |
comment | String | Null | Yes |
Name | Type | Nullable |
---|---|---|
name | String | StringFieldUpdateOperationsInput | No |
phone | String | StringFieldUpdateOperationsInput | No |
comment | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
Name | Type | Nullable |
---|---|---|
id | Int | IntFieldUpdateOperationsInput | No |
name | String | StringFieldUpdateOperationsInput | No |
phone | String | StringFieldUpdateOperationsInput | No |
comment | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
Name | Type | Nullable |
---|---|---|
name | String | No |
comment | String | Null | Yes |
alert_hook | String | No |
prio | prioritiesCreateNestedManyWithoutActionplanInput | No |
content | contentCreateNestedManyWithoutActionplanInput | No |
alerts | alertsCreateNestedManyWithoutActionplanInput | No |
Name | Type | Nullable |
---|---|---|
id | Int | No |
name | String | No |
comment | String | Null | Yes |
alert_hook | String | No |
prio | prioritiesUncheckedCreateNestedManyWithoutActionplanInput | No |
content | contentUncheckedCreateNestedManyWithoutActionplanInput | No |
alerts | alertsUncheckedCreateNestedManyWithoutActionplanInput | No |
Name | Type | Nullable |
---|---|---|
name | String | StringFieldUpdateOperationsInput | No |
comment | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
alert_hook | String | StringFieldUpdateOperationsInput | No |
prio | prioritiesUpdateManyWithoutActionplanNestedInput | No |
content | contentUpdateManyWithoutActionplanNestedInput | No |
alerts | alertsUpdateManyWithoutActionplanNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | Int | IntFieldUpdateOperationsInput | No |
name | String | StringFieldUpdateOperationsInput | No |
comment | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
alert_hook | String | StringFieldUpdateOperationsInput | No |
prio | prioritiesUncheckedUpdateManyWithoutActionplanNestedInput | No |
content | contentUncheckedUpdateManyWithoutActionplanNestedInput | No |
alerts | alertsUncheckedUpdateManyWithoutActionplanNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | Int | No |
name | String | No |
comment | String | Null | Yes |
alert_hook | String | No |
Name | Type | Nullable |
---|---|---|
name | String | StringFieldUpdateOperationsInput | No |
comment | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
alert_hook | String | StringFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
id | Int | IntFieldUpdateOperationsInput | No |
name | String | StringFieldUpdateOperationsInput | No |
comment | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
alert_hook | String | StringFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
priority | Int | No |
Contact | alertContactsCreateNestedOneWithoutPriosInput | No |
actionplan | actionPlanCreateNestedOneWithoutPrioInput | No |
Name | Type | Nullable |
---|---|---|
id | Int | No |
contactId | Int | No |
priority | Int | No |
actionplanId | Int | No |
Name | Type | Nullable |
---|---|---|
priority | Int | IntFieldUpdateOperationsInput | No |
Contact | alertContactsUpdateOneRequiredWithoutPriosNestedInput | No |
actionplan | actionPlanUpdateOneRequiredWithoutPrioNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | Int | IntFieldUpdateOperationsInput | No |
contactId | Int | IntFieldUpdateOperationsInput | No |
priority | Int | IntFieldUpdateOperationsInput | No |
actionplanId | Int | IntFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
id | Int | No |
contactId | Int | No |
priority | Int | No |
actionplanId | Int | No |
Name | Type | Nullable |
---|---|---|
priority | Int | IntFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
id | Int | IntFieldUpdateOperationsInput | No |
contactId | Int | IntFieldUpdateOperationsInput | No |
priority | Int | IntFieldUpdateOperationsInput | No |
actionplanId | Int | IntFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
type | contentType | No |
name | String | No |
filename | String | No |
actionplan | actionPlanCreateNestedManyWithoutContentInput | No |
Name | Type | Nullable |
---|---|---|
id | Int | No |
type | contentType | No |
name | String | No |
filename | String | No |
actionplan | actionPlanUncheckedCreateNestedManyWithoutContentInput | No |
Name | Type | Nullable |
---|---|---|
type | contentType | EnumcontentTypeFieldUpdateOperationsInput | No |
name | String | StringFieldUpdateOperationsInput | No |
filename | String | StringFieldUpdateOperationsInput | No |
actionplan | actionPlanUpdateManyWithoutContentNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | Int | IntFieldUpdateOperationsInput | No |
type | contentType | EnumcontentTypeFieldUpdateOperationsInput | No |
name | String | StringFieldUpdateOperationsInput | No |
filename | String | StringFieldUpdateOperationsInput | No |
actionplan | actionPlanUncheckedUpdateManyWithoutContentNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | Int | No |
type | contentType | No |
name | String | No |
filename | String | No |
Name | Type | Nullable |
---|---|---|
type | contentType | EnumcontentTypeFieldUpdateOperationsInput | No |
name | String | StringFieldUpdateOperationsInput | No |
filename | String | StringFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
id | Int | IntFieldUpdateOperationsInput | No |
type | contentType | EnumcontentTypeFieldUpdateOperationsInput | No |
name | String | StringFieldUpdateOperationsInput | No |
filename | String | StringFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
equals | Int | IntFieldRefInput | No |
in | Int | No |
notIn | Int | No |
lt | Int | IntFieldRefInput | No |
lte | Int | IntFieldRefInput | No |
gt | Int | IntFieldRefInput | No |
gte | Int | IntFieldRefInput | No |
not | Int | NestedIntFilter | No |
Name | Type | Nullable |
---|---|---|
equals | alertType | EnumalertTypeFieldRefInput | No |
in | alertType[] | No |
notIn | alertType[] | No |
not | alertType | NestedEnumalertTypeFilter | No |
Name | Type | Nullable |
---|---|---|
equals | String | StringFieldRefInput | Null | Yes |
in | String | Null | Yes |
notIn | String | Null | Yes |
lt | String | StringFieldRefInput | No |
lte | String | StringFieldRefInput | No |
gt | String | StringFieldRefInput | No |
gte | String | StringFieldRefInput | No |
contains | String | StringFieldRefInput | No |
startsWith | String | StringFieldRefInput | No |
endsWith | String | StringFieldRefInput | No |
search | String | No |
not | String | NestedStringNullableFilter | Null | Yes |
Name | Type | Nullable |
---|---|---|
equals | Int | IntFieldRefInput | Null | Yes |
in | Int | Null | Yes |
notIn | Int | Null | Yes |
lt | Int | IntFieldRefInput | No |
lte | Int | IntFieldRefInput | No |
gt | Int | IntFieldRefInput | No |
gte | Int | IntFieldRefInput | No |
not | Int | NestedIntNullableFilter | Null | Yes |
Name | Type | Nullable |
---|---|---|
equals | DateTime | DateTimeFieldRefInput | No |
in | DateTime | No |
notIn | DateTime | No |
lt | DateTime | DateTimeFieldRefInput | No |
lte | DateTime | DateTimeFieldRefInput | No |
gt | DateTime | DateTimeFieldRefInput | No |
gte | DateTime | DateTimeFieldRefInput | No |
not | DateTime | NestedDateTimeFilter | No |
Name | Type | Nullable |
---|---|---|
equals | alertState | EnumalertStateFieldRefInput | No |
in | alertState[] | No |
notIn | alertState[] | No |
not | alertState | NestedEnumalertStateFilter | No |
Name | Type | Nullable |
---|---|---|
equals | DateTime | DateTimeFieldRefInput | Null | Yes |
in | DateTime | Null | Yes |
notIn | DateTime | Null | Yes |
lt | DateTime | DateTimeFieldRefInput | No |
lte | DateTime | DateTimeFieldRefInput | No |
gt | DateTime | DateTimeFieldRefInput | No |
gte | DateTime | DateTimeFieldRefInput | No |
not | DateTime | NestedDateTimeNullableFilter | Null | Yes |
Name | Type | Nullable |
---|---|---|
is | actionPlanWhereInput | Null | Yes |
isNot | actionPlanWhereInput | Null | Yes |
Name | Type | Nullable |
---|---|---|
every | alertContactsWhereInput | No |
some | alertContactsWhereInput | No |
none | alertContactsWhereInput | No |
Name | Type | Nullable |
---|---|---|
sort | SortOrder | No |
nulls | NullsOrder | No |
Name | Type | Nullable |
---|---|---|
_count | SortOrder | No |
Name | Type | Nullable |
---|---|---|
fields | alertsOrderByRelevanceFieldEnum | alertsOrderByRelevanceFieldEnum[] | No |
sort | SortOrder | No |
search | String | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
type | SortOrder | No |
message | SortOrder | No |
actionplanId | SortOrder | No |
date | SortOrder | No |
state | SortOrder | No |
acknowledged_at | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
type | SortOrder | No |
message | SortOrder | No |
actionplanId | SortOrder | No |
date | SortOrder | No |
state | SortOrder | No |
acknowledged_at | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
type | SortOrder | No |
message | SortOrder | No |
actionplanId | SortOrder | No |
date | SortOrder | No |
state | SortOrder | No |
acknowledged_at | SortOrder | No |
Name | Type | Nullable |
---|---|---|
equals | Int | IntFieldRefInput | No |
in | Int | No |
notIn | Int | No |
lt | Int | IntFieldRefInput | No |
lte | Int | IntFieldRefInput | No |
gt | Int | IntFieldRefInput | No |
gte | Int | IntFieldRefInput | No |
not | Int | NestedIntWithAggregatesFilter | No |
_count | NestedIntFilter | No |
_avg | NestedFloatFilter | No |
_sum | NestedIntFilter | No |
_min | NestedIntFilter | No |
_max | NestedIntFilter | No |
Name | Type | Nullable |
---|---|---|
equals | alertType | EnumalertTypeFieldRefInput | No |
in | alertType[] | No |
notIn | alertType[] | No |
not | alertType | NestedEnumalertTypeWithAggregatesFilter | No |
_count | NestedIntFilter | No |
_min | NestedEnumalertTypeFilter | No |
_max | NestedEnumalertTypeFilter | No |
Name | Type | Nullable |
---|---|---|
equals | String | StringFieldRefInput | Null | Yes |
in | String | Null | Yes |
notIn | String | Null | Yes |
lt | String | StringFieldRefInput | No |
lte | String | StringFieldRefInput | No |
gt | String | StringFieldRefInput | No |
gte | String | StringFieldRefInput | No |
contains | String | StringFieldRefInput | No |
startsWith | String | StringFieldRefInput | No |
endsWith | String | StringFieldRefInput | No |
search | String | No |
not | String | NestedStringNullableWithAggregatesFilter | Null | Yes |
_count | NestedIntNullableFilter | No |
_min | NestedStringNullableFilter | No |
_max | NestedStringNullableFilter | No |
Name | Type | Nullable |
---|---|---|
equals | Int | IntFieldRefInput | Null | Yes |
in | Int | Null | Yes |
notIn | Int | Null | Yes |
lt | Int | IntFieldRefInput | No |
lte | Int | IntFieldRefInput | No |
gt | Int | IntFieldRefInput | No |
gte | Int | IntFieldRefInput | No |
not | Int | NestedIntNullableWithAggregatesFilter | Null | Yes |
_count | NestedIntNullableFilter | No |
_avg | NestedFloatNullableFilter | No |
_sum | NestedIntNullableFilter | No |
_min | NestedIntNullableFilter | No |
_max | NestedIntNullableFilter | No |
Name | Type | Nullable |
---|---|---|
equals | DateTime | DateTimeFieldRefInput | No |
in | DateTime | No |
notIn | DateTime | No |
lt | DateTime | DateTimeFieldRefInput | No |
lte | DateTime | DateTimeFieldRefInput | No |
gt | DateTime | DateTimeFieldRefInput | No |
gte | DateTime | DateTimeFieldRefInput | No |
not | DateTime | NestedDateTimeWithAggregatesFilter | No |
_count | NestedIntFilter | No |
_min | NestedDateTimeFilter | No |
_max | NestedDateTimeFilter | No |
Name | Type | Nullable |
---|---|---|
equals | alertState | EnumalertStateFieldRefInput | No |
in | alertState[] | No |
notIn | alertState[] | No |
not | alertState | NestedEnumalertStateWithAggregatesFilter | No |
_count | NestedIntFilter | No |
_min | NestedEnumalertStateFilter | No |
_max | NestedEnumalertStateFilter | No |
Name | Type | Nullable |
---|---|---|
equals | DateTime | DateTimeFieldRefInput | Null | Yes |
in | DateTime | Null | Yes |
notIn | DateTime | Null | Yes |
lt | DateTime | DateTimeFieldRefInput | No |
lte | DateTime | DateTimeFieldRefInput | No |
gt | DateTime | DateTimeFieldRefInput | No |
gte | DateTime | DateTimeFieldRefInput | No |
not | DateTime | NestedDateTimeNullableWithAggregatesFilter | Null | Yes |
_count | NestedIntNullableFilter | No |
_min | NestedDateTimeNullableFilter | No |
_max | NestedDateTimeNullableFilter | No |
Name | Type | Nullable |
---|---|---|
equals | String | StringFieldRefInput | No |
in | String | No |
notIn | String | No |
lt | String | StringFieldRefInput | No |
lte | String | StringFieldRefInput | No |
gt | String | StringFieldRefInput | No |
gte | String | StringFieldRefInput | No |
contains | String | StringFieldRefInput | No |
startsWith | String | StringFieldRefInput | No |
endsWith | String | StringFieldRefInput | No |
search | String | No |
not | String | NestedStringFilter | No |
Name | Type | Nullable |
---|---|---|
every | prioritiesWhereInput | No |
some | prioritiesWhereInput | No |
none | prioritiesWhereInput | No |
Name | Type | Nullable |
---|---|---|
every | alertsWhereInput | No |
some | alertsWhereInput | No |
none | alertsWhereInput | No |
Name | Type | Nullable |
---|---|---|
_count | SortOrder | No |
Name | Type | Nullable |
---|---|---|
_count | SortOrder | No |
Name | Type | Nullable |
---|---|---|
fields | alertContactsOrderByRelevanceFieldEnum | alertContactsOrderByRelevanceFieldEnum[] | No |
sort | SortOrder | No |
search | String | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
name | SortOrder | No |
phone | SortOrder | No |
comment | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
name | SortOrder | No |
phone | SortOrder | No |
comment | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
name | SortOrder | No |
phone | SortOrder | No |
comment | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
Name | Type | Nullable |
---|---|---|
equals | String | StringFieldRefInput | No |
in | String | No |
notIn | String | No |
lt | String | StringFieldRefInput | No |
lte | String | StringFieldRefInput | No |
gt | String | StringFieldRefInput | No |
gte | String | StringFieldRefInput | No |
contains | String | StringFieldRefInput | No |
startsWith | String | StringFieldRefInput | No |
endsWith | String | StringFieldRefInput | No |
search | String | No |
not | String | NestedStringWithAggregatesFilter | No |
_count | NestedIntFilter | No |
_min | NestedStringFilter | No |
_max | NestedStringFilter | No |
Name | Type | Nullable |
---|---|---|
every | contentWhereInput | No |
some | contentWhereInput | No |
none | contentWhereInput | No |
Name | Type | Nullable |
---|---|---|
_count | SortOrder | No |
Name | Type | Nullable |
---|---|---|
fields | actionPlanOrderByRelevanceFieldEnum | actionPlanOrderByRelevanceFieldEnum[] | No |
sort | SortOrder | No |
search | String | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
name | SortOrder | No |
comment | SortOrder | No |
alert_hook | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
name | SortOrder | No |
comment | SortOrder | No |
alert_hook | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
name | SortOrder | No |
comment | SortOrder | No |
alert_hook | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
Name | Type | Nullable |
---|---|---|
is | alertContactsWhereInput | No |
isNot | alertContactsWhereInput | No |
Name | Type | Nullable |
---|---|---|
is | actionPlanWhereInput | No |
isNot | actionPlanWhereInput | No |
Name | Type | Nullable |
---|---|---|
priority | Int | No |
actionplanId | Int | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
contactId | SortOrder | No |
priority | SortOrder | No |
actionplanId | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
contactId | SortOrder | No |
priority | SortOrder | No |
actionplanId | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
contactId | SortOrder | No |
priority | SortOrder | No |
actionplanId | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
contactId | SortOrder | No |
priority | SortOrder | No |
actionplanId | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
contactId | SortOrder | No |
priority | SortOrder | No |
actionplanId | SortOrder | No |
Name | Type | Nullable |
---|---|---|
equals | contentType | EnumcontentTypeFieldRefInput | No |
in | contentType[] | No |
notIn | contentType[] | No |
not | contentType | NestedEnumcontentTypeFilter | No |
Name | Type | Nullable |
---|---|---|
every | actionPlanWhereInput | No |
some | actionPlanWhereInput | No |
none | actionPlanWhereInput | No |
Name | Type | Nullable |
---|---|---|
_count | SortOrder | No |
Name | Type | Nullable |
---|---|---|
fields | contentOrderByRelevanceFieldEnum | contentOrderByRelevanceFieldEnum[] | No |
sort | SortOrder | No |
search | String | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
type | SortOrder | No |
name | SortOrder | No |
filename | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
type | SortOrder | No |
name | SortOrder | No |
filename | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
type | SortOrder | No |
name | SortOrder | No |
filename | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
Name | Type | Nullable |
---|---|---|
equals | contentType | EnumcontentTypeFieldRefInput | No |
in | contentType[] | No |
notIn | contentType[] | No |
not | contentType | NestedEnumcontentTypeWithAggregatesFilter | No |
_count | NestedIntFilter | No |
_min | NestedEnumcontentTypeFilter | No |
_max | NestedEnumcontentTypeFilter | No |
Name | Type | Nullable |
---|---|---|
create | actionPlanCreateWithoutAlertsInput | actionPlanUncheckedCreateWithoutAlertsInput | No |
connectOrCreate | actionPlanCreateOrConnectWithoutAlertsInput | No |
connect | actionPlanWhereUniqueInput | No |
Name | Type | Nullable |
---|---|---|
set | alertType | No |
Name | Type | Nullable |
---|---|---|
set | String | Null | Yes |
Name | Type | Nullable |
---|---|---|
set | DateTime | No |
Name | Type | Nullable |
---|---|---|
set | alertState | No |
Name | Type | Nullable |
---|---|---|
set | DateTime | Null | Yes |
Name | Type | Nullable |
---|---|---|
create | actionPlanCreateWithoutAlertsInput | actionPlanUncheckedCreateWithoutAlertsInput | No |
connectOrCreate | actionPlanCreateOrConnectWithoutAlertsInput | No |
upsert | actionPlanUpsertWithoutAlertsInput | No |
disconnect | Boolean | actionPlanWhereInput | No |
delete | Boolean | actionPlanWhereInput | No |
connect | actionPlanWhereUniqueInput | No |
update | actionPlanUpdateToOneWithWhereWithoutAlertsInput | actionPlanUpdateWithoutAlertsInput | actionPlanUncheckedUpdateWithoutAlertsInput | No |
Name | Type | Nullable |
---|---|---|
set | Int | No |
increment | Int | No |
decrement | Int | No |
multiply | Int | No |
divide | Int | No |
Name | Type | Nullable |
---|---|---|
set | Int | Null | Yes |
increment | Int | No |
decrement | Int | No |
multiply | Int | No |
divide | Int | No |
Name | Type | Nullable |
---|---|---|
create | prioritiesCreateWithoutContactInput | prioritiesCreateWithoutContactInput[] | prioritiesUncheckedCreateWithoutContactInput | prioritiesUncheckedCreateWithoutContactInput[] | No |
connectOrCreate | prioritiesCreateOrConnectWithoutContactInput | prioritiesCreateOrConnectWithoutContactInput[] | No |
createMany | prioritiesCreateManyContactInputEnvelope | No |
connect | prioritiesWhereUniqueInput | prioritiesWhereUniqueInput[] | No |
Name | Type | Nullable |
---|---|---|
create | prioritiesCreateWithoutContactInput | prioritiesCreateWithoutContactInput[] | prioritiesUncheckedCreateWithoutContactInput | prioritiesUncheckedCreateWithoutContactInput[] | No |
connectOrCreate | prioritiesCreateOrConnectWithoutContactInput | prioritiesCreateOrConnectWithoutContactInput[] | No |
createMany | prioritiesCreateManyContactInputEnvelope | No |
connect | prioritiesWhereUniqueInput | prioritiesWhereUniqueInput[] | No |
Name | Type | Nullable |
---|---|---|
set | String | No |
Name | Type | Nullable |
---|---|---|
create | contentCreateWithoutActionplanInput | contentCreateWithoutActionplanInput[] | contentUncheckedCreateWithoutActionplanInput | contentUncheckedCreateWithoutActionplanInput[] | No |
connectOrCreate | contentCreateOrConnectWithoutActionplanInput | contentCreateOrConnectWithoutActionplanInput[] | No |
connect | contentWhereUniqueInput | contentWhereUniqueInput[] | No |
Name | Type | Nullable |
---|---|---|
create | alertsCreateWithoutActionplanInput | alertsCreateWithoutActionplanInput[] | alertsUncheckedCreateWithoutActionplanInput | alertsUncheckedCreateWithoutActionplanInput[] | No |
connectOrCreate | alertsCreateOrConnectWithoutActionplanInput | alertsCreateOrConnectWithoutActionplanInput[] | No |
createMany | alertsCreateManyActionplanInputEnvelope | No |
connect | alertsWhereUniqueInput | alertsWhereUniqueInput[] | No |
Name | Type | Nullable |
---|---|---|
create | contentCreateWithoutActionplanInput | contentCreateWithoutActionplanInput[] | contentUncheckedCreateWithoutActionplanInput | contentUncheckedCreateWithoutActionplanInput[] | No |
connectOrCreate | contentCreateOrConnectWithoutActionplanInput | contentCreateOrConnectWithoutActionplanInput[] | No |
connect | contentWhereUniqueInput | contentWhereUniqueInput[] | No |
Name | Type | Nullable |
---|---|---|
create | alertsCreateWithoutActionplanInput | alertsCreateWithoutActionplanInput[] | alertsUncheckedCreateWithoutActionplanInput | alertsUncheckedCreateWithoutActionplanInput[] | No |
connectOrCreate | alertsCreateOrConnectWithoutActionplanInput | alertsCreateOrConnectWithoutActionplanInput[] | No |
createMany | alertsCreateManyActionplanInputEnvelope | No |
connect | alertsWhereUniqueInput | alertsWhereUniqueInput[] | No |
Name | Type | Nullable |
---|---|---|
create | alertContactsCreateWithoutPriosInput | alertContactsUncheckedCreateWithoutPriosInput | No |
connectOrCreate | alertContactsCreateOrConnectWithoutPriosInput | No |
connect | alertContactsWhereUniqueInput | No |
Name | Type | Nullable |
---|---|---|
create | actionPlanCreateWithoutPrioInput | actionPlanUncheckedCreateWithoutPrioInput | No |
connectOrCreate | actionPlanCreateOrConnectWithoutPrioInput | No |
connect | actionPlanWhereUniqueInput | No |
Name | Type | Nullable |
---|---|---|
create | alertContactsCreateWithoutPriosInput | alertContactsUncheckedCreateWithoutPriosInput | No |
connectOrCreate | alertContactsCreateOrConnectWithoutPriosInput | No |
upsert | alertContactsUpsertWithoutPriosInput | No |
connect | alertContactsWhereUniqueInput | No |
update | alertContactsUpdateToOneWithWhereWithoutPriosInput | alertContactsUpdateWithoutPriosInput | alertContactsUncheckedUpdateWithoutPriosInput | No |
Name | Type | Nullable |
---|---|---|
create | actionPlanCreateWithoutPrioInput | actionPlanUncheckedCreateWithoutPrioInput | No |
connectOrCreate | actionPlanCreateOrConnectWithoutPrioInput | No |
upsert | actionPlanUpsertWithoutPrioInput | No |
connect | actionPlanWhereUniqueInput | No |
update | actionPlanUpdateToOneWithWhereWithoutPrioInput | actionPlanUpdateWithoutPrioInput | actionPlanUncheckedUpdateWithoutPrioInput | No |
Name | Type | Nullable |
---|---|---|
set | contentType | No |
Name | Type | Nullable |
---|---|---|
equals | Int | IntFieldRefInput | No |
in | Int | No |
notIn | Int | No |
lt | Int | IntFieldRefInput | No |
lte | Int | IntFieldRefInput | No |
gt | Int | IntFieldRefInput | No |
gte | Int | IntFieldRefInput | No |
not | Int | NestedIntFilter | No |
Name | Type | Nullable |
---|---|---|
equals | alertType | EnumalertTypeFieldRefInput | No |
in | alertType[] | No |
notIn | alertType[] | No |
not | alertType | NestedEnumalertTypeFilter | No |
Name | Type | Nullable |
---|---|---|
equals | String | StringFieldRefInput | Null | Yes |
in | String | Null | Yes |
notIn | String | Null | Yes |
lt | String | StringFieldRefInput | No |
lte | String | StringFieldRefInput | No |
gt | String | StringFieldRefInput | No |
gte | String | StringFieldRefInput | No |
contains | String | StringFieldRefInput | No |
startsWith | String | StringFieldRefInput | No |
endsWith | String | StringFieldRefInput | No |
search | String | No |
not | String | NestedStringNullableFilter | Null | Yes |
Name | Type | Nullable |
---|---|---|
equals | Int | IntFieldRefInput | Null | Yes |
in | Int | Null | Yes |
notIn | Int | Null | Yes |
lt | Int | IntFieldRefInput | No |
lte | Int | IntFieldRefInput | No |
gt | Int | IntFieldRefInput | No |
gte | Int | IntFieldRefInput | No |
not | Int | NestedIntNullableFilter | Null | Yes |
Name | Type | Nullable |
---|---|---|
equals | DateTime | DateTimeFieldRefInput | No |
in | DateTime | No |
notIn | DateTime | No |
lt | DateTime | DateTimeFieldRefInput | No |
lte | DateTime | DateTimeFieldRefInput | No |
gt | DateTime | DateTimeFieldRefInput | No |
gte | DateTime | DateTimeFieldRefInput | No |
not | DateTime | NestedDateTimeFilter | No |
Name | Type | Nullable |
---|---|---|
equals | alertState | EnumalertStateFieldRefInput | No |
in | alertState[] | No |
notIn | alertState[] | No |
not | alertState | NestedEnumalertStateFilter | No |
Name | Type | Nullable |
---|---|---|
equals | DateTime | DateTimeFieldRefInput | Null | Yes |
in | DateTime | Null | Yes |
notIn | DateTime | Null | Yes |
lt | DateTime | DateTimeFieldRefInput | No |
lte | DateTime | DateTimeFieldRefInput | No |
gt | DateTime | DateTimeFieldRefInput | No |
gte | DateTime | DateTimeFieldRefInput | No |
not | DateTime | NestedDateTimeNullableFilter | Null | Yes |
Name | Type | Nullable |
---|---|---|
equals | Int | IntFieldRefInput | No |
in | Int | No |
notIn | Int | No |
lt | Int | IntFieldRefInput | No |
lte | Int | IntFieldRefInput | No |
gt | Int | IntFieldRefInput | No |
gte | Int | IntFieldRefInput | No |
not | Int | NestedIntWithAggregatesFilter | No |
_count | NestedIntFilter | No |
_avg | NestedFloatFilter | No |
_sum | NestedIntFilter | No |
_min | NestedIntFilter | No |
_max | NestedIntFilter | No |
Name | Type | Nullable |
---|---|---|
equals | Float | FloatFieldRefInput | No |
in | Float | No |
notIn | Float | No |
lt | Float | FloatFieldRefInput | No |
lte | Float | FloatFieldRefInput | No |
gt | Float | FloatFieldRefInput | No |
gte | Float | FloatFieldRefInput | No |
not | Float | NestedFloatFilter | No |
Name | Type | Nullable |
---|---|---|
equals | alertType | EnumalertTypeFieldRefInput | No |
in | alertType[] | No |
notIn | alertType[] | No |
not | alertType | NestedEnumalertTypeWithAggregatesFilter | No |
_count | NestedIntFilter | No |
_min | NestedEnumalertTypeFilter | No |
_max | NestedEnumalertTypeFilter | No |
Name | Type | Nullable |
---|---|---|
equals | String | StringFieldRefInput | Null | Yes |
in | String | Null | Yes |
notIn | String | Null | Yes |
lt | String | StringFieldRefInput | No |
lte | String | StringFieldRefInput | No |
gt | String | StringFieldRefInput | No |
gte | String | StringFieldRefInput | No |
contains | String | StringFieldRefInput | No |
startsWith | String | StringFieldRefInput | No |
endsWith | String | StringFieldRefInput | No |
search | String | No |
not | String | NestedStringNullableWithAggregatesFilter | Null | Yes |
_count | NestedIntNullableFilter | No |
_min | NestedStringNullableFilter | No |
_max | NestedStringNullableFilter | No |
Name | Type | Nullable |
---|---|---|
equals | Int | IntFieldRefInput | Null | Yes |
in | Int | Null | Yes |
notIn | Int | Null | Yes |
lt | Int | IntFieldRefInput | No |
lte | Int | IntFieldRefInput | No |
gt | Int | IntFieldRefInput | No |
gte | Int | IntFieldRefInput | No |
not | Int | NestedIntNullableWithAggregatesFilter | Null | Yes |
_count | NestedIntNullableFilter | No |
_avg | NestedFloatNullableFilter | No |
_sum | NestedIntNullableFilter | No |
_min | NestedIntNullableFilter | No |
_max | NestedIntNullableFilter | No |
Name | Type | Nullable |
---|---|---|
equals | Float | FloatFieldRefInput | Null | Yes |
in | Float | Null | Yes |
notIn | Float | Null | Yes |
lt | Float | FloatFieldRefInput | No |
lte | Float | FloatFieldRefInput | No |
gt | Float | FloatFieldRefInput | No |
gte | Float | FloatFieldRefInput | No |
not | Float | NestedFloatNullableFilter | Null | Yes |
Name | Type | Nullable |
---|---|---|
equals | DateTime | DateTimeFieldRefInput | No |
in | DateTime | No |
notIn | DateTime | No |
lt | DateTime | DateTimeFieldRefInput | No |
lte | DateTime | DateTimeFieldRefInput | No |
gt | DateTime | DateTimeFieldRefInput | No |
gte | DateTime | DateTimeFieldRefInput | No |
not | DateTime | NestedDateTimeWithAggregatesFilter | No |
_count | NestedIntFilter | No |
_min | NestedDateTimeFilter | No |
_max | NestedDateTimeFilter | No |
Name | Type | Nullable |
---|---|---|
equals | alertState | EnumalertStateFieldRefInput | No |
in | alertState[] | No |
notIn | alertState[] | No |
not | alertState | NestedEnumalertStateWithAggregatesFilter | No |
_count | NestedIntFilter | No |
_min | NestedEnumalertStateFilter | No |
_max | NestedEnumalertStateFilter | No |
Name | Type | Nullable |
---|---|---|
equals | DateTime | DateTimeFieldRefInput | Null | Yes |
in | DateTime | Null | Yes |
notIn | DateTime | Null | Yes |
lt | DateTime | DateTimeFieldRefInput | No |
lte | DateTime | DateTimeFieldRefInput | No |
gt | DateTime | DateTimeFieldRefInput | No |
gte | DateTime | DateTimeFieldRefInput | No |
not | DateTime | NestedDateTimeNullableWithAggregatesFilter | Null | Yes |
_count | NestedIntNullableFilter | No |
_min | NestedDateTimeNullableFilter | No |
_max | NestedDateTimeNullableFilter | No |
Name | Type | Nullable |
---|---|---|
equals | String | StringFieldRefInput | No |
in | String | No |
notIn | String | No |
lt | String | StringFieldRefInput | No |
lte | String | StringFieldRefInput | No |
gt | String | StringFieldRefInput | No |
gte | String | StringFieldRefInput | No |
contains | String | StringFieldRefInput | No |
startsWith | String | StringFieldRefInput | No |
endsWith | String | StringFieldRefInput | No |
search | String | No |
not | String | NestedStringFilter | No |
Name | Type | Nullable |
---|---|---|
equals | String | StringFieldRefInput | No |
in | String | No |
notIn | String | No |
lt | String | StringFieldRefInput | No |
lte | String | StringFieldRefInput | No |
gt | String | StringFieldRefInput | No |
gte | String | StringFieldRefInput | No |
contains | String | StringFieldRefInput | No |
startsWith | String | StringFieldRefInput | No |
endsWith | String | StringFieldRefInput | No |
search | String | No |
not | String | NestedStringWithAggregatesFilter | No |
_count | NestedIntFilter | No |
_min | NestedStringFilter | No |
_max | NestedStringFilter | No |
Name | Type | Nullable |
---|---|---|
equals | contentType | EnumcontentTypeFieldRefInput | No |
in | contentType[] | No |
notIn | contentType[] | No |
not | contentType | NestedEnumcontentTypeFilter | No |
Name | Type | Nullable |
---|---|---|
equals | contentType | EnumcontentTypeFieldRefInput | No |
in | contentType[] | No |
notIn | contentType[] | No |
not | contentType | NestedEnumcontentTypeWithAggregatesFilter | No |
_count | NestedIntFilter | No |
_min | NestedEnumcontentTypeFilter | No |
_max | NestedEnumcontentTypeFilter | No |
Name | Type | Nullable |
---|---|---|
name | String | No |
comment | String | Null | Yes |
alert_hook | String | No |
prio | prioritiesCreateNestedManyWithoutActionplanInput | No |
content | contentCreateNestedManyWithoutActionplanInput | No |
Name | Type | Nullable |
---|---|---|
id | Int | No |
name | String | No |
comment | String | Null | Yes |
alert_hook | String | No |
prio | prioritiesUncheckedCreateNestedManyWithoutActionplanInput | No |
content | contentUncheckedCreateNestedManyWithoutActionplanInput | No |
Name | Type | Nullable |
---|---|---|
where | actionPlanWhereUniqueInput | No |
create | actionPlanCreateWithoutAlertsInput | actionPlanUncheckedCreateWithoutAlertsInput | No |
Name | Type | Nullable |
---|---|---|
name | String | No |
phone | String | No |
comment | String | Null | Yes |
prios | prioritiesCreateNestedManyWithoutContactInput | No |
Name | Type | Nullable |
---|---|---|
id | Int | No |
name | String | No |
phone | String | No |
comment | String | Null | Yes |
prios | prioritiesUncheckedCreateNestedManyWithoutContactInput | No |
Name | Type | Nullable |
---|---|---|
where | alertContactsWhereUniqueInput | No |
create | alertContactsCreateWithoutAlertsInput | alertContactsUncheckedCreateWithoutAlertsInput | No |
Name | Type | Nullable |
---|---|---|
update | actionPlanUpdateWithoutAlertsInput | actionPlanUncheckedUpdateWithoutAlertsInput | No |
create | actionPlanCreateWithoutAlertsInput | actionPlanUncheckedCreateWithoutAlertsInput | No |
where | actionPlanWhereInput | No |
Name | Type | Nullable |
---|---|---|
where | actionPlanWhereInput | No |
data | actionPlanUpdateWithoutAlertsInput | actionPlanUncheckedUpdateWithoutAlertsInput | No |
Name | Type | Nullable |
---|---|---|
name | String | StringFieldUpdateOperationsInput | No |
comment | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
alert_hook | String | StringFieldUpdateOperationsInput | No |
prio | prioritiesUpdateManyWithoutActionplanNestedInput | No |
content | contentUpdateManyWithoutActionplanNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | Int | IntFieldUpdateOperationsInput | No |
name | String | StringFieldUpdateOperationsInput | No |
comment | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
alert_hook | String | StringFieldUpdateOperationsInput | No |
prio | prioritiesUncheckedUpdateManyWithoutActionplanNestedInput | No |
content | contentUncheckedUpdateManyWithoutActionplanNestedInput | No |
Name | Type | Nullable |
---|---|---|
where | alertContactsWhereUniqueInput | No |
update | alertContactsUpdateWithoutAlertsInput | alertContactsUncheckedUpdateWithoutAlertsInput | No |
create | alertContactsCreateWithoutAlertsInput | alertContactsUncheckedCreateWithoutAlertsInput | No |
Name | Type | Nullable |
---|---|---|
where | alertContactsWhereUniqueInput | No |
data | alertContactsUpdateWithoutAlertsInput | alertContactsUncheckedUpdateWithoutAlertsInput | No |
Name | Type | Nullable |
---|---|---|
where | alertContactsScalarWhereInput | No |
data | alertContactsUpdateManyMutationInput | alertContactsUncheckedUpdateManyWithoutAlertsInput | No |
Name | Type | Nullable |
---|---|---|
AND | alertContactsScalarWhereInput | alertContactsScalarWhereInput[] | No |
OR | alertContactsScalarWhereInput[] | No |
NOT | alertContactsScalarWhereInput | alertContactsScalarWhereInput[] | No |
id | IntFilter | Int | No |
name | StringFilter | String | No |
phone | StringFilter | String | No |
comment | StringNullableFilter | String | Null | Yes |
Name | Type | Nullable |
---|---|---|
priority | Int | No |
actionplan | actionPlanCreateNestedOneWithoutPrioInput | No |
Name | Type | Nullable |
---|---|---|
id | Int | No |
priority | Int | No |
actionplanId | Int | No |
Name | Type | Nullable |
---|---|---|
where | prioritiesWhereUniqueInput | No |
create | prioritiesCreateWithoutContactInput | prioritiesUncheckedCreateWithoutContactInput | No |
Name | Type | Nullable |
---|---|---|
data | prioritiesCreateManyContactInput | prioritiesCreateManyContactInput[] | No |
skipDuplicates | Boolean | No |
Name | Type | Nullable |
---|---|---|
type | alertType | No |
message | String | Null | Yes |
date | DateTime | No |
state | alertState | No |
acknowledged_at | DateTime | Null | Yes |
actionplan | actionPlanCreateNestedOneWithoutAlertsInput | No |
Name | Type | Nullable |
---|---|---|
id | Int | No |
type | alertType | No |
message | String | Null | Yes |
actionplanId | Int | Null | Yes |
date | DateTime | No |
state | alertState | No |
acknowledged_at | DateTime | Null | Yes |
Name | Type | Nullable |
---|---|---|
where | alertsWhereUniqueInput | No |
create | alertsCreateWithoutAcknowledged_byInput | alertsUncheckedCreateWithoutAcknowledged_byInput | No |
Name | Type | Nullable |
---|---|---|
where | prioritiesWhereUniqueInput | No |
update | prioritiesUpdateWithoutContactInput | prioritiesUncheckedUpdateWithoutContactInput | No |
create | prioritiesCreateWithoutContactInput | prioritiesUncheckedCreateWithoutContactInput | No |
Name | Type | Nullable |
---|---|---|
where | prioritiesWhereUniqueInput | No |
data | prioritiesUpdateWithoutContactInput | prioritiesUncheckedUpdateWithoutContactInput | No |
Name | Type | Nullable |
---|---|---|
where | prioritiesScalarWhereInput | No |
data | prioritiesUpdateManyMutationInput | prioritiesUncheckedUpdateManyWithoutContactInput | No |
Name | Type | Nullable |
---|---|---|
AND | prioritiesScalarWhereInput | prioritiesScalarWhereInput[] | No |
OR | prioritiesScalarWhereInput[] | No |
NOT | prioritiesScalarWhereInput | prioritiesScalarWhereInput[] | No |
id | IntFilter | Int | No |
contactId | IntFilter | Int | No |
priority | IntFilter | Int | No |
actionplanId | IntFilter | Int | No |
Name | Type | Nullable |
---|---|---|
where | alertsWhereUniqueInput | No |
update | alertsUpdateWithoutAcknowledged_byInput | alertsUncheckedUpdateWithoutAcknowledged_byInput | No |
create | alertsCreateWithoutAcknowledged_byInput | alertsUncheckedCreateWithoutAcknowledged_byInput | No |
Name | Type | Nullable |
---|---|---|
where | alertsWhereUniqueInput | No |
data | alertsUpdateWithoutAcknowledged_byInput | alertsUncheckedUpdateWithoutAcknowledged_byInput | No |
Name | Type | Nullable |
---|---|---|
where | alertsScalarWhereInput | No |
data | alertsUpdateManyMutationInput | alertsUncheckedUpdateManyWithoutAcknowledged_byInput | No |
Name | Type | Nullable |
---|---|---|
AND | alertsScalarWhereInput | alertsScalarWhereInput[] | No |
OR | alertsScalarWhereInput[] | No |
NOT | alertsScalarWhereInput | alertsScalarWhereInput[] | No |
id | IntFilter | Int | No |
type | EnumalertTypeFilter | alertType | No |
message | StringNullableFilter | String | Null | Yes |
actionplanId | IntNullableFilter | Int | Null | Yes |
date | DateTimeFilter | DateTime | No |
state | EnumalertStateFilter | alertState | No |
acknowledged_at | DateTimeNullableFilter | DateTime | Null | Yes |
Name | Type | Nullable |
---|---|---|
priority | Int | No |
Contact | alertContactsCreateNestedOneWithoutPriosInput | No |
Name | Type | Nullable |
---|---|---|
id | Int | No |
contactId | Int | No |
priority | Int | No |
Name | Type | Nullable |
---|---|---|
where | prioritiesWhereUniqueInput | No |
create | prioritiesCreateWithoutActionplanInput | prioritiesUncheckedCreateWithoutActionplanInput | No |
Name | Type | Nullable |
---|---|---|
data | prioritiesCreateManyActionplanInput | prioritiesCreateManyActionplanInput[] | No |
skipDuplicates | Boolean | No |
Name | Type | Nullable |
---|---|---|
type | contentType | No |
name | String | No |
filename | String | No |
Name | Type | Nullable |
---|---|---|
id | Int | No |
type | contentType | No |
name | String | No |
filename | String | No |
Name | Type | Nullable |
---|---|---|
where | contentWhereUniqueInput | No |
create | contentCreateWithoutActionplanInput | contentUncheckedCreateWithoutActionplanInput | No |
Name | Type | Nullable |
---|---|---|
type | alertType | No |
message | String | Null | Yes |
date | DateTime | No |
state | alertState | No |
acknowledged_at | DateTime | Null | Yes |
acknowledged_by | alertContactsCreateNestedManyWithoutAlertsInput | No |
Name | Type | Nullable |
---|---|---|
id | Int | No |
type | alertType | No |
message | String | Null | Yes |
date | DateTime | No |
state | alertState | No |
acknowledged_at | DateTime | Null | Yes |
acknowledged_by | alertContactsUncheckedCreateNestedManyWithoutAlertsInput | No |
Name | Type | Nullable |
---|---|---|
where | alertsWhereUniqueInput | No |
create | alertsCreateWithoutActionplanInput | alertsUncheckedCreateWithoutActionplanInput | No |
Name | Type | Nullable |
---|---|---|
data | alertsCreateManyActionplanInput | alertsCreateManyActionplanInput[] | No |
skipDuplicates | Boolean | No |
Name | Type | Nullable |
---|---|---|
where | prioritiesWhereUniqueInput | No |
update | prioritiesUpdateWithoutActionplanInput | prioritiesUncheckedUpdateWithoutActionplanInput | No |
create | prioritiesCreateWithoutActionplanInput | prioritiesUncheckedCreateWithoutActionplanInput | No |
Name | Type | Nullable |
---|---|---|
where | prioritiesWhereUniqueInput | No |
data | prioritiesUpdateWithoutActionplanInput | prioritiesUncheckedUpdateWithoutActionplanInput | No |
Name | Type | Nullable |
---|---|---|
where | prioritiesScalarWhereInput | No |
data | prioritiesUpdateManyMutationInput | prioritiesUncheckedUpdateManyWithoutActionplanInput | No |
Name | Type | Nullable |
---|---|---|
where | contentWhereUniqueInput | No |
update | contentUpdateWithoutActionplanInput | contentUncheckedUpdateWithoutActionplanInput | No |
create | contentCreateWithoutActionplanInput | contentUncheckedCreateWithoutActionplanInput | No |
Name | Type | Nullable |
---|---|---|
where | contentWhereUniqueInput | No |
data | contentUpdateWithoutActionplanInput | contentUncheckedUpdateWithoutActionplanInput | No |
Name | Type | Nullable |
---|---|---|
where | contentScalarWhereInput | No |
data | contentUpdateManyMutationInput | contentUncheckedUpdateManyWithoutActionplanInput | No |
Name | Type | Nullable |
---|---|---|
AND | contentScalarWhereInput | contentScalarWhereInput[] | No |
OR | contentScalarWhereInput[] | No |
NOT | contentScalarWhereInput | contentScalarWhereInput[] | No |
id | IntFilter | Int | No |
type | EnumcontentTypeFilter | contentType | No |
name | StringFilter | String | No |
filename | StringFilter | String | No |
Name | Type | Nullable |
---|---|---|
where | alertsWhereUniqueInput | No |
update | alertsUpdateWithoutActionplanInput | alertsUncheckedUpdateWithoutActionplanInput | No |
create | alertsCreateWithoutActionplanInput | alertsUncheckedCreateWithoutActionplanInput | No |
Name | Type | Nullable |
---|---|---|
where | alertsWhereUniqueInput | No |
data | alertsUpdateWithoutActionplanInput | alertsUncheckedUpdateWithoutActionplanInput | No |
Name | Type | Nullable |
---|---|---|
where | alertsScalarWhereInput | No |
data | alertsUpdateManyMutationInput | alertsUncheckedUpdateManyWithoutActionplanInput | No |
Name | Type | Nullable |
---|---|---|
name | String | No |
phone | String | No |
comment | String | Null | Yes |
alerts | alertsCreateNestedManyWithoutAcknowledged_byInput | No |
Name | Type | Nullable |
---|---|---|
id | Int | No |
name | String | No |
phone | String | No |
comment | String | Null | Yes |
alerts | alertsUncheckedCreateNestedManyWithoutAcknowledged_byInput | No |
Name | Type | Nullable |
---|---|---|
where | alertContactsWhereUniqueInput | No |
create | alertContactsCreateWithoutPriosInput | alertContactsUncheckedCreateWithoutPriosInput | No |
Name | Type | Nullable |
---|---|---|
name | String | No |
comment | String | Null | Yes |
alert_hook | String | No |
content | contentCreateNestedManyWithoutActionplanInput | No |
alerts | alertsCreateNestedManyWithoutActionplanInput | No |
Name | Type | Nullable |
---|---|---|
id | Int | No |
name | String | No |
comment | String | Null | Yes |
alert_hook | String | No |
content | contentUncheckedCreateNestedManyWithoutActionplanInput | No |
alerts | alertsUncheckedCreateNestedManyWithoutActionplanInput | No |
Name | Type | Nullable |
---|---|---|
where | actionPlanWhereUniqueInput | No |
create | actionPlanCreateWithoutPrioInput | actionPlanUncheckedCreateWithoutPrioInput | No |
Name | Type | Nullable |
---|---|---|
update | alertContactsUpdateWithoutPriosInput | alertContactsUncheckedUpdateWithoutPriosInput | No |
create | alertContactsCreateWithoutPriosInput | alertContactsUncheckedCreateWithoutPriosInput | No |
where | alertContactsWhereInput | No |
Name | Type | Nullable |
---|---|---|
where | alertContactsWhereInput | No |
data | alertContactsUpdateWithoutPriosInput | alertContactsUncheckedUpdateWithoutPriosInput | No |
Name | Type | Nullable |
---|---|---|
name | String | StringFieldUpdateOperationsInput | No |
phone | String | StringFieldUpdateOperationsInput | No |
comment | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
alerts | alertsUpdateManyWithoutAcknowledged_byNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | Int | IntFieldUpdateOperationsInput | No |
name | String | StringFieldUpdateOperationsInput | No |
phone | String | StringFieldUpdateOperationsInput | No |
comment | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
alerts | alertsUncheckedUpdateManyWithoutAcknowledged_byNestedInput | No |
Name | Type | Nullable |
---|---|---|
update | actionPlanUpdateWithoutPrioInput | actionPlanUncheckedUpdateWithoutPrioInput | No |
create | actionPlanCreateWithoutPrioInput | actionPlanUncheckedCreateWithoutPrioInput | No |
where | actionPlanWhereInput | No |
Name | Type | Nullable |
---|---|---|
where | actionPlanWhereInput | No |
data | actionPlanUpdateWithoutPrioInput | actionPlanUncheckedUpdateWithoutPrioInput | No |
Name | Type | Nullable |
---|---|---|
name | String | StringFieldUpdateOperationsInput | No |
comment | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
alert_hook | String | StringFieldUpdateOperationsInput | No |
content | contentUpdateManyWithoutActionplanNestedInput | No |
alerts | alertsUpdateManyWithoutActionplanNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | Int | IntFieldUpdateOperationsInput | No |
name | String | StringFieldUpdateOperationsInput | No |
comment | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
alert_hook | String | StringFieldUpdateOperationsInput | No |
content | contentUncheckedUpdateManyWithoutActionplanNestedInput | No |
alerts | alertsUncheckedUpdateManyWithoutActionplanNestedInput | No |
Name | Type | Nullable |
---|---|---|
name | String | No |
comment | String | Null | Yes |
alert_hook | String | No |
prio | prioritiesCreateNestedManyWithoutActionplanInput | No |
alerts | alertsCreateNestedManyWithoutActionplanInput | No |
Name | Type | Nullable |
---|---|---|
id | Int | No |
name | String | No |
comment | String | Null | Yes |
alert_hook | String | No |
prio | prioritiesUncheckedCreateNestedManyWithoutActionplanInput | No |
alerts | alertsUncheckedCreateNestedManyWithoutActionplanInput | No |
Name | Type | Nullable |
---|---|---|
where | actionPlanWhereUniqueInput | No |
create | actionPlanCreateWithoutContentInput | actionPlanUncheckedCreateWithoutContentInput | No |
Name | Type | Nullable |
---|---|---|
where | actionPlanWhereUniqueInput | No |
update | actionPlanUpdateWithoutContentInput | actionPlanUncheckedUpdateWithoutContentInput | No |
create | actionPlanCreateWithoutContentInput | actionPlanUncheckedCreateWithoutContentInput | No |
Name | Type | Nullable |
---|---|---|
where | actionPlanWhereUniqueInput | No |
data | actionPlanUpdateWithoutContentInput | actionPlanUncheckedUpdateWithoutContentInput | No |
Name | Type | Nullable |
---|---|---|
where | actionPlanScalarWhereInput | No |
data | actionPlanUpdateManyMutationInput | actionPlanUncheckedUpdateManyWithoutContentInput | No |
Name | Type | Nullable |
---|---|---|
AND | actionPlanScalarWhereInput | actionPlanScalarWhereInput[] | No |
OR | actionPlanScalarWhereInput[] | No |
NOT | actionPlanScalarWhereInput | actionPlanScalarWhereInput[] | No |
id | IntFilter | Int | No |
name | StringFilter | String | No |
comment | StringNullableFilter | String | Null | Yes |
alert_hook | StringFilter | String | No |
Name | Type | Nullable |
---|---|---|
name | String | StringFieldUpdateOperationsInput | No |
phone | String | StringFieldUpdateOperationsInput | No |
comment | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
prios | prioritiesUpdateManyWithoutContactNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | Int | IntFieldUpdateOperationsInput | No |
name | String | StringFieldUpdateOperationsInput | No |
phone | String | StringFieldUpdateOperationsInput | No |
comment | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
prios | prioritiesUncheckedUpdateManyWithoutContactNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | Int | IntFieldUpdateOperationsInput | No |
name | String | StringFieldUpdateOperationsInput | No |
phone | String | StringFieldUpdateOperationsInput | No |
comment | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
Name | Type | Nullable |
---|---|---|
id | Int | No |
priority | Int | No |
actionplanId | Int | No |
Name | Type | Nullable |
---|---|---|
priority | Int | IntFieldUpdateOperationsInput | No |
actionplan | actionPlanUpdateOneRequiredWithoutPrioNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | Int | IntFieldUpdateOperationsInput | No |
priority | Int | IntFieldUpdateOperationsInput | No |
actionplanId | Int | IntFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
id | Int | IntFieldUpdateOperationsInput | No |
priority | Int | IntFieldUpdateOperationsInput | No |
actionplanId | Int | IntFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
type | alertType | EnumalertTypeFieldUpdateOperationsInput | No |
message | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
date | DateTime | DateTimeFieldUpdateOperationsInput | No |
state | alertState | EnumalertStateFieldUpdateOperationsInput | No |
acknowledged_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
actionplan | actionPlanUpdateOneWithoutAlertsNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | Int | IntFieldUpdateOperationsInput | No |
type | alertType | EnumalertTypeFieldUpdateOperationsInput | No |
message | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
actionplanId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
date | DateTime | DateTimeFieldUpdateOperationsInput | No |
state | alertState | EnumalertStateFieldUpdateOperationsInput | No |
acknowledged_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
Name | Type | Nullable |
---|---|---|
id | Int | IntFieldUpdateOperationsInput | No |
type | alertType | EnumalertTypeFieldUpdateOperationsInput | No |
message | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
actionplanId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
date | DateTime | DateTimeFieldUpdateOperationsInput | No |
state | alertState | EnumalertStateFieldUpdateOperationsInput | No |
acknowledged_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
Name | Type | Nullable |
---|---|---|
id | Int | No |
contactId | Int | No |
priority | Int | No |
Name | Type | Nullable |
---|---|---|
id | Int | No |
type | alertType | No |
message | String | Null | Yes |
date | DateTime | No |
state | alertState | No |
acknowledged_at | DateTime | Null | Yes |
Name | Type | Nullable |
---|---|---|
priority | Int | IntFieldUpdateOperationsInput | No |
Contact | alertContactsUpdateOneRequiredWithoutPriosNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | Int | IntFieldUpdateOperationsInput | No |
contactId | Int | IntFieldUpdateOperationsInput | No |
priority | Int | IntFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
id | Int | IntFieldUpdateOperationsInput | No |
contactId | Int | IntFieldUpdateOperationsInput | No |
priority | Int | IntFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
type | contentType | EnumcontentTypeFieldUpdateOperationsInput | No |
name | String | StringFieldUpdateOperationsInput | No |
filename | String | StringFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
id | Int | IntFieldUpdateOperationsInput | No |
type | contentType | EnumcontentTypeFieldUpdateOperationsInput | No |
name | String | StringFieldUpdateOperationsInput | No |
filename | String | StringFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
id | Int | IntFieldUpdateOperationsInput | No |
type | contentType | EnumcontentTypeFieldUpdateOperationsInput | No |
name | String | StringFieldUpdateOperationsInput | No |
filename | String | StringFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
type | alertType | EnumalertTypeFieldUpdateOperationsInput | No |
message | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
date | DateTime | DateTimeFieldUpdateOperationsInput | No |
state | alertState | EnumalertStateFieldUpdateOperationsInput | No |
acknowledged_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
acknowledged_by | alertContactsUpdateManyWithoutAlertsNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | Int | IntFieldUpdateOperationsInput | No |
type | alertType | EnumalertTypeFieldUpdateOperationsInput | No |
message | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
date | DateTime | DateTimeFieldUpdateOperationsInput | No |
state | alertState | EnumalertStateFieldUpdateOperationsInput | No |
acknowledged_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
acknowledged_by | alertContactsUncheckedUpdateManyWithoutAlertsNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | Int | IntFieldUpdateOperationsInput | No |
type | alertType | EnumalertTypeFieldUpdateOperationsInput | No |
message | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
date | DateTime | DateTimeFieldUpdateOperationsInput | No |
state | alertState | EnumalertStateFieldUpdateOperationsInput | No |
acknowledged_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
Name | Type | Nullable |
---|---|---|
name | String | StringFieldUpdateOperationsInput | No |
comment | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
alert_hook | String | StringFieldUpdateOperationsInput | No |
prio | prioritiesUpdateManyWithoutActionplanNestedInput | No |
alerts | alertsUpdateManyWithoutActionplanNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | Int | IntFieldUpdateOperationsInput | No |
name | String | StringFieldUpdateOperationsInput | No |
comment | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
alert_hook | String | StringFieldUpdateOperationsInput | No |
prio | prioritiesUncheckedUpdateManyWithoutActionplanNestedInput | No |
alerts | alertsUncheckedUpdateManyWithoutActionplanNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | Int | IntFieldUpdateOperationsInput | No |
name | String | StringFieldUpdateOperationsInput | No |
comment | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
alert_hook | String | StringFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
id | Int | Yes |
type | alertType | Yes |
message | String | No |
actionplanId | Int | No |
date | DateTime | Yes |
state | alertState | Yes |
acknowledged_at | DateTime | No |
actionplan | actionPlan | No |
acknowledged_by | alertContacts[] | No |
_count | AlertsCountOutputType | Yes |
Name | Type | Nullable |
---|---|---|
id | Int | Yes |
name | String | Yes |
phone | String | Yes |
comment | String | No |
prios | priorities[] | No |
alerts | alerts[] | No |
_count | AlertContactsCountOutputType | Yes |
Name | Type | Nullable |
---|---|---|
id | Int | Yes |
name | String | Yes |
comment | String | No |
alert_hook | String | Yes |
prio | priorities[] | No |
content | content[] | No |
alerts | alerts[] | No |
_count | ActionPlanCountOutputType | Yes |
Name | Type | Nullable |
---|---|---|
id | Int | Yes |
contactId | Int | Yes |
priority | Int | Yes |
actionplanId | Int | Yes |
Contact | alertContacts | Yes |
actionplan | actionPlan | Yes |
Name | Type | Nullable |
---|---|---|
id | Int | Yes |
type | contentType | Yes |
name | String | Yes |
filename | String | Yes |
actionplan | actionPlan[] | No |
_count | ContentCountOutputType | Yes |
Name | Type | Nullable |
---|---|---|
_count | AlertsCountAggregateOutputType | No |
_avg | AlertsAvgAggregateOutputType | No |
_sum | AlertsSumAggregateOutputType | No |
_min | AlertsMinAggregateOutputType | No |
_max | AlertsMaxAggregateOutputType | No |
Name | Type | Nullable |
---|---|---|
id | Int | Yes |
type | alertType | Yes |
message | String | No |
actionplanId | Int | No |
date | DateTime | Yes |
state | alertState | Yes |
acknowledged_at | DateTime | No |
_count | AlertsCountAggregateOutputType | No |
_avg | AlertsAvgAggregateOutputType | No |
_sum | AlertsSumAggregateOutputType | No |
_min | AlertsMinAggregateOutputType | No |
_max | AlertsMaxAggregateOutputType | No |
Name | Type | Nullable |
---|---|---|
_count | AlertContactsCountAggregateOutputType | No |
_avg | AlertContactsAvgAggregateOutputType | No |
_sum | AlertContactsSumAggregateOutputType | No |
_min | AlertContactsMinAggregateOutputType | No |
_max | AlertContactsMaxAggregateOutputType | No |
Name | Type | Nullable |
---|---|---|
id | Int | Yes |
name | String | Yes |
phone | String | Yes |
comment | String | No |
_count | AlertContactsCountAggregateOutputType | No |
_avg | AlertContactsAvgAggregateOutputType | No |
_sum | AlertContactsSumAggregateOutputType | No |
_min | AlertContactsMinAggregateOutputType | No |
_max | AlertContactsMaxAggregateOutputType | No |
Name | Type | Nullable |
---|---|---|
_count | ActionPlanCountAggregateOutputType | No |
_avg | ActionPlanAvgAggregateOutputType | No |
_sum | ActionPlanSumAggregateOutputType | No |
_min | ActionPlanMinAggregateOutputType | No |
_max | ActionPlanMaxAggregateOutputType | No |
Name | Type | Nullable |
---|---|---|
id | Int | Yes |
name | String | Yes |
comment | String | No |
alert_hook | String | Yes |
_count | ActionPlanCountAggregateOutputType | No |
_avg | ActionPlanAvgAggregateOutputType | No |
_sum | ActionPlanSumAggregateOutputType | No |
_min | ActionPlanMinAggregateOutputType | No |
_max | ActionPlanMaxAggregateOutputType | No |
Name | Type | Nullable |
---|---|---|
_count | PrioritiesCountAggregateOutputType | No |
_avg | PrioritiesAvgAggregateOutputType | No |
_sum | PrioritiesSumAggregateOutputType | No |
_min | PrioritiesMinAggregateOutputType | No |
_max | PrioritiesMaxAggregateOutputType | No |
Name | Type | Nullable |
---|---|---|
id | Int | Yes |
contactId | Int | Yes |
priority | Int | Yes |
actionplanId | Int | Yes |
_count | PrioritiesCountAggregateOutputType | No |
_avg | PrioritiesAvgAggregateOutputType | No |
_sum | PrioritiesSumAggregateOutputType | No |
_min | PrioritiesMinAggregateOutputType | No |
_max | PrioritiesMaxAggregateOutputType | No |
Name | Type | Nullable |
---|---|---|
_count | ContentCountAggregateOutputType | No |
_avg | ContentAvgAggregateOutputType | No |
_sum | ContentSumAggregateOutputType | No |
_min | ContentMinAggregateOutputType | No |
_max | ContentMaxAggregateOutputType | No |
Name | Type | Nullable |
---|---|---|
id | Int | Yes |
type | contentType | Yes |
name | String | Yes |
filename | String | Yes |
_count | ContentCountAggregateOutputType | No |
_avg | ContentAvgAggregateOutputType | No |
_sum | ContentSumAggregateOutputType | No |
_min | ContentMinAggregateOutputType | No |
_max | ContentMaxAggregateOutputType | No |
Name | Type | Nullable |
---|---|---|
count | Int | Yes |
Name | Type | Nullable |
---|---|---|
acknowledged_by | Int | Yes |
Name | Type | Nullable |
---|---|---|
id | Int | Yes |
type | Int | Yes |
message | Int | Yes |
actionplanId | Int | Yes |
date | Int | Yes |
state | Int | Yes |
acknowledged_at | Int | Yes |
_all | Int | Yes |
Name | Type | Nullable |
---|---|---|
id | Float | No |
actionplanId | Float | No |
Name | Type | Nullable |
---|---|---|
id | Int | No |
actionplanId | Int | No |
Name | Type | Nullable |
---|---|---|
id | Int | No |
type | alertType | No |
message | String | No |
actionplanId | Int | No |
date | DateTime | No |
state | alertState | No |
acknowledged_at | DateTime | No |
Name | Type | Nullable |
---|---|---|
id | Int | No |
type | alertType | No |
message | String | No |
actionplanId | Int | No |
date | DateTime | No |
state | alertState | No |
acknowledged_at | DateTime | No |
Name | Type | Nullable |
---|---|---|
prios | Int | Yes |
alerts | Int | Yes |
Name | Type | Nullable |
---|---|---|
id | Int | Yes |
name | Int | Yes |
phone | Int | Yes |
comment | Int | Yes |
_all | Int | Yes |
Name | Type | Nullable |
---|---|---|
id | Float | No |
Name | Type | Nullable |
---|---|---|
id | Int | No |
Name | Type | Nullable |
---|---|---|
id | Int | No |
name | String | No |
phone | String | No |
comment | String | No |
Name | Type | Nullable |
---|---|---|
id | Int | No |
name | String | No |
phone | String | No |
comment | String | No |
Name | Type | Nullable |
---|---|---|
prio | Int | Yes |
content | Int | Yes |
alerts | Int | Yes |
Name | Type | Nullable |
---|---|---|
id | Int | Yes |
name | Int | Yes |
comment | Int | Yes |
alert_hook | Int | Yes |
_all | Int | Yes |
Name | Type | Nullable |
---|---|---|
id | Float | No |
Name | Type | Nullable |
---|---|---|
id | Int | No |
Name | Type | Nullable |
---|---|---|
id | Int | No |
name | String | No |
comment | String | No |
alert_hook | String | No |
Name | Type | Nullable |
---|---|---|
id | Int | No |
name | String | No |
comment | String | No |
alert_hook | String | No |
Name | Type | Nullable |
---|---|---|
id | Int | Yes |
contactId | Int | Yes |
priority | Int | Yes |
actionplanId | Int | Yes |
_all | Int | Yes |
Name | Type | Nullable |
---|---|---|
id | Float | No |
contactId | Float | No |
priority | Float | No |
actionplanId | Float | No |
Name | Type | Nullable |
---|---|---|
id | Int | No |
contactId | Int | No |
priority | Int | No |
actionplanId | Int | No |
Name | Type | Nullable |
---|---|---|
id | Int | No |
contactId | Int | No |
priority | Int | No |
actionplanId | Int | No |
Name | Type | Nullable |
---|---|---|
id | Int | No |
contactId | Int | No |
priority | Int | No |
actionplanId | Int | No |
Name | Type | Nullable |
---|---|---|
actionplan | Int | Yes |
Name | Type | Nullable |
---|---|---|
id | Int | Yes |
type | Int | Yes |
name | Int | Yes |
filename | Int | Yes |
_all | Int | Yes |
Name | Type | Nullable |
---|---|---|
id | Float | No |
Name | Type | Nullable |
---|---|---|
id | Int | No |
Name | Type | Nullable |
---|---|---|
id | Int | No |
type | contentType | No |
name | String | No |
filename | String | No |
Name | Type | Nullable |
---|---|---|
id | Int | No |
type | contentType | No |
name | String | No |
filename | String | No |