Models
Types

Models

alerts

Fields

Name Type Attributes Required Comment
id Int
  • @id
  • @default(autoincrement())
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 -

Operations

findUnique

Find zero or one Alerts

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

Input

Name Type Required
where alertsWhereUniqueInput Yes

Output

Type: alerts
Required: No
List: No

findFirst

Find first Alerts

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

Input

Name Type Required
where alertsWhereInput No
orderBy alertsOrderByWithRelationInput[] | alertsOrderByWithRelationInput No
cursor alertsWhereUniqueInput No
take Int No
skip Int No
distinct AlertsScalarFieldEnum | AlertsScalarFieldEnum[] No

Output

Type: alerts
Required: No
List: No

findMany

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 })

Input

Name Type Required
where alertsWhereInput No
orderBy alertsOrderByWithRelationInput[] | alertsOrderByWithRelationInput No
cursor alertsWhereUniqueInput No
take Int No
skip Int No
distinct AlertsScalarFieldEnum | AlertsScalarFieldEnum[] No

Output

Type: alerts
Required: Yes
List: Yes

create

Create one Alerts

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

Input

Name Type Required
data alertsCreateInput | alertsUncheckedCreateInput Yes

Output

Type: alerts
Required: Yes
List: No

delete

Delete one Alerts

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

Input

Name Type Required
where alertsWhereUniqueInput Yes

Output

Type: alerts
Required: No
List: No

update

Update one Alerts

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

Input

Name Type Required
data alertsUpdateInput | alertsUncheckedUpdateInput Yes
where alertsWhereUniqueInput Yes

Output

Type: alerts
Required: No
List: No

deleteMany

Delete zero or more Alerts

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

Input

Name Type Required
where alertsWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Alerts

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

Input

Name Type Required
data alertsUpdateManyMutationInput | alertsUncheckedUpdateManyInput Yes
where alertsWhereInput No

Output

Required: Yes
List: No

upsert

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
  }
})

Input

Name Type Required
where alertsWhereUniqueInput Yes
create alertsCreateInput | alertsUncheckedCreateInput Yes
update alertsUpdateInput | alertsUncheckedUpdateInput Yes

Output

Type: alerts
Required: Yes
List: No

alertContacts

Fields

Name Type Attributes Required Comment
id Int
  • @id
  • @default(autoincrement())
Yes -
name String
  • -
Yes -
phone String
  • @unique
Yes -
comment String?
  • -
No -
prios priorities[]
  • -
Yes -
alerts alerts[]
  • -
Yes -

Operations

findUnique

Find zero or one AlertContacts

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

Input

Name Type Required
where alertContactsWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first AlertContacts

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

Input

Name Type Required
where alertContactsWhereInput No
orderBy alertContactsOrderByWithRelationInput[] | alertContactsOrderByWithRelationInput No
cursor alertContactsWhereUniqueInput No
take Int No
skip Int No
distinct AlertContactsScalarFieldEnum | AlertContactsScalarFieldEnum[] No

Output

Required: No
List: No

findMany

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 })

Input

Name Type Required
where alertContactsWhereInput No
orderBy alertContactsOrderByWithRelationInput[] | alertContactsOrderByWithRelationInput No
cursor alertContactsWhereUniqueInput No
take Int No
skip Int No
distinct AlertContactsScalarFieldEnum | AlertContactsScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one AlertContacts

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

Input

Name Type Required
data alertContactsCreateInput | alertContactsUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one AlertContacts

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

Input

Name Type Required
where alertContactsWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one AlertContacts

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

Input

Name Type Required
data alertContactsUpdateInput | alertContactsUncheckedUpdateInput Yes
where alertContactsWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more AlertContacts

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

Input

Name Type Required
where alertContactsWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one AlertContacts

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

Input

Name Type Required
data alertContactsUpdateManyMutationInput | alertContactsUncheckedUpdateManyInput Yes
where alertContactsWhereInput No

Output

Required: Yes
List: No

upsert

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
  }
})

Input

Name Type Required
where alertContactsWhereUniqueInput Yes
create alertContactsCreateInput | alertContactsUncheckedCreateInput Yes
update alertContactsUpdateInput | alertContactsUncheckedUpdateInput Yes

Output

Required: Yes
List: No

actionPlan

Fields

Name Type Attributes Required Comment
id Int
  • @id
  • @default(autoincrement())
Yes -
name String
  • -
Yes -
comment String?
  • -
No -
alert_hook String
  • @unique
Yes -
prio priorities[]
  • -
Yes -
content content[]
  • -
Yes -
alerts alerts[]
  • -
Yes -

Operations

findUnique

Find zero or one ActionPlan

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

Input

Name Type Required
where actionPlanWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first ActionPlan

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

Input

Name Type Required
where actionPlanWhereInput No
orderBy actionPlanOrderByWithRelationInput[] | actionPlanOrderByWithRelationInput No
cursor actionPlanWhereUniqueInput No
take Int No
skip Int No
distinct ActionPlanScalarFieldEnum | ActionPlanScalarFieldEnum[] No

Output

Required: No
List: No

findMany

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 })

Input

Name Type Required
where actionPlanWhereInput No
orderBy actionPlanOrderByWithRelationInput[] | actionPlanOrderByWithRelationInput No
cursor actionPlanWhereUniqueInput No
take Int No
skip Int No
distinct ActionPlanScalarFieldEnum | ActionPlanScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one ActionPlan

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

Input

Name Type Required
data actionPlanCreateInput | actionPlanUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one ActionPlan

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

Input

Name Type Required
where actionPlanWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one ActionPlan

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

Input

Name Type Required
data actionPlanUpdateInput | actionPlanUncheckedUpdateInput Yes
where actionPlanWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more ActionPlan

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

Input

Name Type Required
where actionPlanWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one ActionPlan

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

Input

Name Type Required
data actionPlanUpdateManyMutationInput | actionPlanUncheckedUpdateManyInput Yes
where actionPlanWhereInput No

Output

Required: Yes
List: No

upsert

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
  }
})

Input

Name Type Required
where actionPlanWhereUniqueInput Yes
create actionPlanCreateInput | actionPlanUncheckedCreateInput Yes
update actionPlanUpdateInput | actionPlanUncheckedUpdateInput Yes

Output

Required: Yes
List: No

priorities

Name Value
@@unique
  • priority
  • actionplanId
@@index
  • priority
  • actionplanId

Fields

Name Type Attributes Required Comment
id Int
  • @id
  • @default(autoincrement())
Yes -
Contact alertContacts
  • -
Yes -
contactId Int
  • -
Yes -
priority Int
  • -
Yes -
actionplan actionPlan
  • -
Yes -
actionplanId Int
  • -
Yes -

Operations

findUnique

Find zero or one Priorities

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

Input

Name Type Required
where prioritiesWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first Priorities

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

Input

Name Type Required
where prioritiesWhereInput No
orderBy prioritiesOrderByWithRelationInput[] | prioritiesOrderByWithRelationInput No
cursor prioritiesWhereUniqueInput No
take Int No
skip Int No
distinct PrioritiesScalarFieldEnum | PrioritiesScalarFieldEnum[] No

Output

Required: No
List: No

findMany

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 })

Input

Name Type Required
where prioritiesWhereInput No
orderBy prioritiesOrderByWithRelationInput[] | prioritiesOrderByWithRelationInput No
cursor prioritiesWhereUniqueInput No
take Int No
skip Int No
distinct PrioritiesScalarFieldEnum | PrioritiesScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one Priorities

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

Input

Name Type Required
data prioritiesCreateInput | prioritiesUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one Priorities

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

Input

Name Type Required
where prioritiesWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one Priorities

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

Input

Name Type Required
data prioritiesUpdateInput | prioritiesUncheckedUpdateInput Yes
where prioritiesWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more Priorities

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

Input

Name Type Required
where prioritiesWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Priorities

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

Input

Name Type Required
data prioritiesUpdateManyMutationInput | prioritiesUncheckedUpdateManyInput Yes
where prioritiesWhereInput No

Output

Required: Yes
List: No

upsert

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
  }
})

Input

Name Type Required
where prioritiesWhereUniqueInput Yes
create prioritiesCreateInput | prioritiesUncheckedCreateInput Yes
update prioritiesUpdateInput | prioritiesUncheckedUpdateInput Yes

Output

Required: Yes
List: No

content

Fields

Name Type Attributes Required Comment
id Int
  • @id
  • @default(autoincrement())
Yes -
type contentType
  • -
Yes -
name String
  • -
Yes -
filename String
  • -
Yes -
actionplan actionPlan[]
  • -
Yes -

Operations

findUnique

Find zero or one Content

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

Input

Name Type Required
where contentWhereUniqueInput Yes

Output

Type: content
Required: No
List: No

findFirst

Find first Content

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

Input

Name Type Required
where contentWhereInput No
orderBy contentOrderByWithRelationInput[] | contentOrderByWithRelationInput No
cursor contentWhereUniqueInput No
take Int No
skip Int No
distinct ContentScalarFieldEnum | ContentScalarFieldEnum[] No

Output

Type: content
Required: No
List: No

findMany

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 })

Input

Name Type Required
where contentWhereInput No
orderBy contentOrderByWithRelationInput[] | contentOrderByWithRelationInput No
cursor contentWhereUniqueInput No
take Int No
skip Int No
distinct ContentScalarFieldEnum | ContentScalarFieldEnum[] No

Output

Type: content
Required: Yes
List: Yes

create

Create one Content

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

Input

Name Type Required
data contentCreateInput | contentUncheckedCreateInput Yes

Output

Type: content
Required: Yes
List: No

delete

Delete one Content

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

Input

Name Type Required
where contentWhereUniqueInput Yes

Output

Type: content
Required: No
List: No

update

Update one Content

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

Input

Name Type Required
data contentUpdateInput | contentUncheckedUpdateInput Yes
where contentWhereUniqueInput Yes

Output

Type: content
Required: No
List: No

deleteMany

Delete zero or more Content

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

Input

Name Type Required
where contentWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Content

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

Input

Name Type Required
data contentUpdateManyMutationInput | contentUncheckedUpdateManyInput Yes
where contentWhereInput No

Output

Required: Yes
List: No

upsert

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
  }
})

Input

Name Type Required
where contentWhereUniqueInput Yes
create contentCreateInput | contentUncheckedCreateInput Yes
update contentUpdateInput | contentUncheckedUpdateInput Yes

Output

Type: content
Required: Yes
List: No

Types

Input Types

alertsWhereInput

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

alertsOrderByWithRelationInput

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

alertsWhereUniqueInput

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

alertsOrderByWithAggregationInput

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


alertContactsWhereInput

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

alertContactsOrderByWithRelationInput

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

alertContactsWhereUniqueInput

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



actionPlanWhereInput

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

actionPlanOrderByWithRelationInput

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

actionPlanWhereUniqueInput

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

actionPlanOrderByWithAggregationInput

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


prioritiesWhereInput

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

prioritiesOrderByWithRelationInput

Name Type Nullable
id SortOrder No
contactId SortOrder No
priority SortOrder No
actionplanId SortOrder No
Contact alertContactsOrderByWithRelationInput No
actionplan actionPlanOrderByWithRelationInput No

prioritiesWhereUniqueInput

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

prioritiesOrderByWithAggregationInput

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


contentWhereInput

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

contentOrderByWithRelationInput

Name Type Nullable
id SortOrder No
type SortOrder No
name SortOrder No
filename SortOrder No
actionplan actionPlanOrderByRelationAggregateInput No
_relevance contentOrderByRelevanceInput No

contentWhereUniqueInput

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

contentOrderByWithAggregationInput

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


alertsCreateInput

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

alertsUncheckedCreateInput

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


alertsUncheckedUpdateInput

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

alertsCreateManyInput

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

alertsUpdateManyMutationInput

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

alertsUncheckedUpdateManyInput

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

alertContactsCreateInput

Name Type Nullable
name String No
phone String No
comment String | Null Yes
prios prioritiesCreateNestedManyWithoutContactInput No
alerts alertsCreateNestedManyWithoutAcknowledged_byInput No

alertContactsUncheckedCreateInput

Name Type Nullable
id Int No
name String No
phone String No
comment String | Null Yes
prios prioritiesUncheckedCreateNestedManyWithoutContactInput No
alerts alertsUncheckedCreateNestedManyWithoutAcknowledged_byInput No

alertContactsUpdateInput

Name Type Nullable
name String | StringFieldUpdateOperationsInput No
phone String | StringFieldUpdateOperationsInput No
comment String | NullableStringFieldUpdateOperationsInput | Null Yes
prios prioritiesUpdateManyWithoutContactNestedInput No
alerts alertsUpdateManyWithoutAcknowledged_byNestedInput No


alertContactsCreateManyInput

Name Type Nullable
id Int No
name String No
phone String No
comment String | Null Yes

alertContactsUpdateManyMutationInput

Name Type Nullable
name String | StringFieldUpdateOperationsInput No
phone String | StringFieldUpdateOperationsInput No
comment String | NullableStringFieldUpdateOperationsInput | Null Yes

alertContactsUncheckedUpdateManyInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
phone String | StringFieldUpdateOperationsInput No
comment String | NullableStringFieldUpdateOperationsInput | Null Yes

actionPlanCreateInput

Name Type Nullable
name String No
comment String | Null Yes
alert_hook String No
prio prioritiesCreateNestedManyWithoutActionplanInput No
content contentCreateNestedManyWithoutActionplanInput No
alerts alertsCreateNestedManyWithoutActionplanInput No

actionPlanUncheckedCreateInput

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



actionPlanCreateManyInput

Name Type Nullable
id Int No
name String No
comment String | Null Yes
alert_hook String No

actionPlanUpdateManyMutationInput

Name Type Nullable
name String | StringFieldUpdateOperationsInput No
comment String | NullableStringFieldUpdateOperationsInput | Null Yes
alert_hook String | StringFieldUpdateOperationsInput No

actionPlanUncheckedUpdateManyInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
comment String | NullableStringFieldUpdateOperationsInput | Null Yes
alert_hook String | StringFieldUpdateOperationsInput No

prioritiesCreateInput

Name Type Nullable
priority Int No
Contact alertContactsCreateNestedOneWithoutPriosInput No
actionplan actionPlanCreateNestedOneWithoutPrioInput No

prioritiesUncheckedCreateInput

Name Type Nullable
id Int No
contactId Int No
priority Int No
actionplanId Int No

prioritiesUpdateInput

Name Type Nullable
priority Int | IntFieldUpdateOperationsInput No
Contact alertContactsUpdateOneRequiredWithoutPriosNestedInput No
actionplan actionPlanUpdateOneRequiredWithoutPrioNestedInput No

prioritiesUncheckedUpdateInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
contactId Int | IntFieldUpdateOperationsInput No
priority Int | IntFieldUpdateOperationsInput No
actionplanId Int | IntFieldUpdateOperationsInput No

prioritiesCreateManyInput

Name Type Nullable
id Int No
contactId Int No
priority Int No
actionplanId Int No

prioritiesUpdateManyMutationInput

Name Type Nullable
priority Int | IntFieldUpdateOperationsInput No

prioritiesUncheckedUpdateManyInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
contactId Int | IntFieldUpdateOperationsInput No
priority Int | IntFieldUpdateOperationsInput No
actionplanId Int | IntFieldUpdateOperationsInput No

contentCreateInput

Name Type Nullable
type contentType No
name String No
filename String No
actionplan actionPlanCreateNestedManyWithoutContentInput No

contentUncheckedCreateInput

Name Type Nullable
id Int No
type contentType No
name String No
filename String No
actionplan actionPlanUncheckedCreateNestedManyWithoutContentInput No



contentCreateManyInput

Name Type Nullable
id Int No
type contentType No
name String No
filename String No

contentUpdateManyMutationInput

Name Type Nullable
type contentType | EnumcontentTypeFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
filename String | StringFieldUpdateOperationsInput No

contentUncheckedUpdateManyInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
type contentType | EnumcontentTypeFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
filename String | StringFieldUpdateOperationsInput No

IntFilter

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

EnumalertTypeFilter

Name Type Nullable
equals alertType | EnumalertTypeFieldRefInput No
in alertType[] No
notIn alertType[] No
not alertType | NestedEnumalertTypeFilter No

StringNullableFilter

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

IntNullableFilter

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

DateTimeFilter

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

EnumalertStateFilter

Name Type Nullable
equals alertState | EnumalertStateFieldRefInput No
in alertState[] No
notIn alertState[] No
not alertState | NestedEnumalertStateFilter No

DateTimeNullableFilter

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

ActionPlanNullableScalarRelationFilter

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

AlertContactsListRelationFilter

Name Type Nullable
every alertContactsWhereInput No
some alertContactsWhereInput No
none alertContactsWhereInput No

SortOrderInput

Name Type Nullable
sort SortOrder No
nulls NullsOrder No

alertContactsOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

alertsOrderByRelevanceInput

Name Type Nullable
fields alertsOrderByRelevanceFieldEnum | alertsOrderByRelevanceFieldEnum[] No
sort SortOrder No
search String No

alertsCountOrderByAggregateInput

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

alertsAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
actionplanId SortOrder No

alertsMaxOrderByAggregateInput

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

alertsMinOrderByAggregateInput

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

alertsSumOrderByAggregateInput

Name Type Nullable
id SortOrder No
actionplanId SortOrder No

IntWithAggregatesFilter

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

EnumalertTypeWithAggregatesFilter

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

StringNullableWithAggregatesFilter

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

IntNullableWithAggregatesFilter

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

DateTimeWithAggregatesFilter

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

EnumalertStateWithAggregatesFilter

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

DateTimeNullableWithAggregatesFilter

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

StringFilter

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

PrioritiesListRelationFilter

Name Type Nullable
every prioritiesWhereInput No
some prioritiesWhereInput No
none prioritiesWhereInput No

AlertsListRelationFilter

Name Type Nullable
every alertsWhereInput No
some alertsWhereInput No
none alertsWhereInput No

prioritiesOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

alertsOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

alertContactsOrderByRelevanceInput

Name Type Nullable
fields alertContactsOrderByRelevanceFieldEnum | alertContactsOrderByRelevanceFieldEnum[] No
sort SortOrder No
search String No

alertContactsCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
phone SortOrder No
comment SortOrder No

alertContactsAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No

alertContactsMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
phone SortOrder No
comment SortOrder No

alertContactsMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
phone SortOrder No
comment SortOrder No

alertContactsSumOrderByAggregateInput

Name Type Nullable
id SortOrder No

StringWithAggregatesFilter

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

ContentListRelationFilter

Name Type Nullable
every contentWhereInput No
some contentWhereInput No
none contentWhereInput No

contentOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

actionPlanOrderByRelevanceInput

Name Type Nullable
fields actionPlanOrderByRelevanceFieldEnum | actionPlanOrderByRelevanceFieldEnum[] No
sort SortOrder No
search String No

actionPlanCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
comment SortOrder No
alert_hook SortOrder No

actionPlanAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No

actionPlanMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
comment SortOrder No
alert_hook SortOrder No

actionPlanMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
comment SortOrder No
alert_hook SortOrder No

actionPlanSumOrderByAggregateInput

Name Type Nullable
id SortOrder No

AlertContactsScalarRelationFilter

Name Type Nullable
is alertContactsWhereInput No
isNot alertContactsWhereInput No

ActionPlanScalarRelationFilter

Name Type Nullable
is actionPlanWhereInput No
isNot actionPlanWhereInput No

prioritiesPriorityActionplanIdCompoundUniqueInput

Name Type Nullable
priority Int No
actionplanId Int No

prioritiesCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
contactId SortOrder No
priority SortOrder No
actionplanId SortOrder No

prioritiesAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
contactId SortOrder No
priority SortOrder No
actionplanId SortOrder No

prioritiesMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
contactId SortOrder No
priority SortOrder No
actionplanId SortOrder No

prioritiesMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
contactId SortOrder No
priority SortOrder No
actionplanId SortOrder No

prioritiesSumOrderByAggregateInput

Name Type Nullable
id SortOrder No
contactId SortOrder No
priority SortOrder No
actionplanId SortOrder No

EnumcontentTypeFilter

Name Type Nullable
equals contentType | EnumcontentTypeFieldRefInput No
in contentType[] No
notIn contentType[] No
not contentType | NestedEnumcontentTypeFilter No

ActionPlanListRelationFilter

Name Type Nullable
every actionPlanWhereInput No
some actionPlanWhereInput No
none actionPlanWhereInput No

actionPlanOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

contentOrderByRelevanceInput

Name Type Nullable
fields contentOrderByRelevanceFieldEnum | contentOrderByRelevanceFieldEnum[] No
sort SortOrder No
search String No

contentCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
type SortOrder No
name SortOrder No
filename SortOrder No

contentAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No

contentMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
type SortOrder No
name SortOrder No
filename SortOrder No

contentMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
type SortOrder No
name SortOrder No
filename SortOrder No

contentSumOrderByAggregateInput

Name Type Nullable
id SortOrder No

EnumcontentTypeWithAggregatesFilter

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

actionPlanCreateNestedOneWithoutAlertsInput

Name Type Nullable
create actionPlanCreateWithoutAlertsInput | actionPlanUncheckedCreateWithoutAlertsInput No
connectOrCreate actionPlanCreateOrConnectWithoutAlertsInput No
connect actionPlanWhereUniqueInput No



EnumalertTypeFieldUpdateOperationsInput

Name Type Nullable
set alertType No

NullableStringFieldUpdateOperationsInput

Name Type Nullable
set String | Null Yes

DateTimeFieldUpdateOperationsInput

Name Type Nullable
set DateTime No

EnumalertStateFieldUpdateOperationsInput

Name Type Nullable
set alertState No

NullableDateTimeFieldUpdateOperationsInput

Name Type Nullable
set DateTime | Null Yes


alertContactsUpdateManyWithoutAlertsNestedInput

Name Type Nullable
create alertContactsCreateWithoutAlertsInput | alertContactsCreateWithoutAlertsInput[] | alertContactsUncheckedCreateWithoutAlertsInput | alertContactsUncheckedCreateWithoutAlertsInput[] No
connectOrCreate alertContactsCreateOrConnectWithoutAlertsInput | alertContactsCreateOrConnectWithoutAlertsInput[] No
upsert alertContactsUpsertWithWhereUniqueWithoutAlertsInput | alertContactsUpsertWithWhereUniqueWithoutAlertsInput[] No
set alertContactsWhereUniqueInput | alertContactsWhereUniqueInput[] No
disconnect alertContactsWhereUniqueInput | alertContactsWhereUniqueInput[] No
delete alertContactsWhereUniqueInput | alertContactsWhereUniqueInput[] No
connect alertContactsWhereUniqueInput | alertContactsWhereUniqueInput[] No
update alertContactsUpdateWithWhereUniqueWithoutAlertsInput | alertContactsUpdateWithWhereUniqueWithoutAlertsInput[] No
updateMany alertContactsUpdateManyWithWhereWithoutAlertsInput | alertContactsUpdateManyWithWhereWithoutAlertsInput[] No
deleteMany alertContactsScalarWhereInput | alertContactsScalarWhereInput[] No

IntFieldUpdateOperationsInput

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

NullableIntFieldUpdateOperationsInput

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

alertContactsUncheckedUpdateManyWithoutAlertsNestedInput

Name Type Nullable
create alertContactsCreateWithoutAlertsInput | alertContactsCreateWithoutAlertsInput[] | alertContactsUncheckedCreateWithoutAlertsInput | alertContactsUncheckedCreateWithoutAlertsInput[] No
connectOrCreate alertContactsCreateOrConnectWithoutAlertsInput | alertContactsCreateOrConnectWithoutAlertsInput[] No
upsert alertContactsUpsertWithWhereUniqueWithoutAlertsInput | alertContactsUpsertWithWhereUniqueWithoutAlertsInput[] No
set alertContactsWhereUniqueInput | alertContactsWhereUniqueInput[] No
disconnect alertContactsWhereUniqueInput | alertContactsWhereUniqueInput[] No
delete alertContactsWhereUniqueInput | alertContactsWhereUniqueInput[] No
connect alertContactsWhereUniqueInput | alertContactsWhereUniqueInput[] No
update alertContactsUpdateWithWhereUniqueWithoutAlertsInput | alertContactsUpdateWithWhereUniqueWithoutAlertsInput[] No
updateMany alertContactsUpdateManyWithWhereWithoutAlertsInput | alertContactsUpdateManyWithWhereWithoutAlertsInput[] No
deleteMany alertContactsScalarWhereInput | alertContactsScalarWhereInput[] No





StringFieldUpdateOperationsInput

Name Type Nullable
set String No

prioritiesUpdateManyWithoutContactNestedInput

Name Type Nullable
create prioritiesCreateWithoutContactInput | prioritiesCreateWithoutContactInput[] | prioritiesUncheckedCreateWithoutContactInput | prioritiesUncheckedCreateWithoutContactInput[] No
connectOrCreate prioritiesCreateOrConnectWithoutContactInput | prioritiesCreateOrConnectWithoutContactInput[] No
upsert prioritiesUpsertWithWhereUniqueWithoutContactInput | prioritiesUpsertWithWhereUniqueWithoutContactInput[] No
createMany prioritiesCreateManyContactInputEnvelope No
set prioritiesWhereUniqueInput | prioritiesWhereUniqueInput[] No
disconnect prioritiesWhereUniqueInput | prioritiesWhereUniqueInput[] No
delete prioritiesWhereUniqueInput | prioritiesWhereUniqueInput[] No
connect prioritiesWhereUniqueInput | prioritiesWhereUniqueInput[] No
update prioritiesUpdateWithWhereUniqueWithoutContactInput | prioritiesUpdateWithWhereUniqueWithoutContactInput[] No
updateMany prioritiesUpdateManyWithWhereWithoutContactInput | prioritiesUpdateManyWithWhereWithoutContactInput[] No
deleteMany prioritiesScalarWhereInput | prioritiesScalarWhereInput[] No

alertsUpdateManyWithoutAcknowledged_byNestedInput

Name Type Nullable
create alertsCreateWithoutAcknowledged_byInput | alertsCreateWithoutAcknowledged_byInput[] | alertsUncheckedCreateWithoutAcknowledged_byInput | alertsUncheckedCreateWithoutAcknowledged_byInput[] No
connectOrCreate alertsCreateOrConnectWithoutAcknowledged_byInput | alertsCreateOrConnectWithoutAcknowledged_byInput[] No
upsert alertsUpsertWithWhereUniqueWithoutAcknowledged_byInput | alertsUpsertWithWhereUniqueWithoutAcknowledged_byInput[] No
set alertsWhereUniqueInput | alertsWhereUniqueInput[] No
disconnect alertsWhereUniqueInput | alertsWhereUniqueInput[] No
delete alertsWhereUniqueInput | alertsWhereUniqueInput[] No
connect alertsWhereUniqueInput | alertsWhereUniqueInput[] No
update alertsUpdateWithWhereUniqueWithoutAcknowledged_byInput | alertsUpdateWithWhereUniqueWithoutAcknowledged_byInput[] No
updateMany alertsUpdateManyWithWhereWithoutAcknowledged_byInput | alertsUpdateManyWithWhereWithoutAcknowledged_byInput[] No
deleteMany alertsScalarWhereInput | alertsScalarWhereInput[] No

prioritiesUncheckedUpdateManyWithoutContactNestedInput

Name Type Nullable
create prioritiesCreateWithoutContactInput | prioritiesCreateWithoutContactInput[] | prioritiesUncheckedCreateWithoutContactInput | prioritiesUncheckedCreateWithoutContactInput[] No
connectOrCreate prioritiesCreateOrConnectWithoutContactInput | prioritiesCreateOrConnectWithoutContactInput[] No
upsert prioritiesUpsertWithWhereUniqueWithoutContactInput | prioritiesUpsertWithWhereUniqueWithoutContactInput[] No
createMany prioritiesCreateManyContactInputEnvelope No
set prioritiesWhereUniqueInput | prioritiesWhereUniqueInput[] No
disconnect prioritiesWhereUniqueInput | prioritiesWhereUniqueInput[] No
delete prioritiesWhereUniqueInput | prioritiesWhereUniqueInput[] No
connect prioritiesWhereUniqueInput | prioritiesWhereUniqueInput[] No
update prioritiesUpdateWithWhereUniqueWithoutContactInput | prioritiesUpdateWithWhereUniqueWithoutContactInput[] No
updateMany prioritiesUpdateManyWithWhereWithoutContactInput | prioritiesUpdateManyWithWhereWithoutContactInput[] No
deleteMany prioritiesScalarWhereInput | prioritiesScalarWhereInput[] No

alertsUncheckedUpdateManyWithoutAcknowledged_byNestedInput

Name Type Nullable
create alertsCreateWithoutAcknowledged_byInput | alertsCreateWithoutAcknowledged_byInput[] | alertsUncheckedCreateWithoutAcknowledged_byInput | alertsUncheckedCreateWithoutAcknowledged_byInput[] No
connectOrCreate alertsCreateOrConnectWithoutAcknowledged_byInput | alertsCreateOrConnectWithoutAcknowledged_byInput[] No
upsert alertsUpsertWithWhereUniqueWithoutAcknowledged_byInput | alertsUpsertWithWhereUniqueWithoutAcknowledged_byInput[] No
set alertsWhereUniqueInput | alertsWhereUniqueInput[] No
disconnect alertsWhereUniqueInput | alertsWhereUniqueInput[] No
delete alertsWhereUniqueInput | alertsWhereUniqueInput[] No
connect alertsWhereUniqueInput | alertsWhereUniqueInput[] No
update alertsUpdateWithWhereUniqueWithoutAcknowledged_byInput | alertsUpdateWithWhereUniqueWithoutAcknowledged_byInput[] No
updateMany alertsUpdateManyWithWhereWithoutAcknowledged_byInput | alertsUpdateManyWithWhereWithoutAcknowledged_byInput[] No
deleteMany alertsScalarWhereInput | alertsScalarWhereInput[] No







prioritiesUpdateManyWithoutActionplanNestedInput

Name Type Nullable
create prioritiesCreateWithoutActionplanInput | prioritiesCreateWithoutActionplanInput[] | prioritiesUncheckedCreateWithoutActionplanInput | prioritiesUncheckedCreateWithoutActionplanInput[] No
connectOrCreate prioritiesCreateOrConnectWithoutActionplanInput | prioritiesCreateOrConnectWithoutActionplanInput[] No
upsert prioritiesUpsertWithWhereUniqueWithoutActionplanInput | prioritiesUpsertWithWhereUniqueWithoutActionplanInput[] No
createMany prioritiesCreateManyActionplanInputEnvelope No
set prioritiesWhereUniqueInput | prioritiesWhereUniqueInput[] No
disconnect prioritiesWhereUniqueInput | prioritiesWhereUniqueInput[] No
delete prioritiesWhereUniqueInput | prioritiesWhereUniqueInput[] No
connect prioritiesWhereUniqueInput | prioritiesWhereUniqueInput[] No
update prioritiesUpdateWithWhereUniqueWithoutActionplanInput | prioritiesUpdateWithWhereUniqueWithoutActionplanInput[] No
updateMany prioritiesUpdateManyWithWhereWithoutActionplanInput | prioritiesUpdateManyWithWhereWithoutActionplanInput[] No
deleteMany prioritiesScalarWhereInput | prioritiesScalarWhereInput[] No

contentUpdateManyWithoutActionplanNestedInput

Name Type Nullable
create contentCreateWithoutActionplanInput | contentCreateWithoutActionplanInput[] | contentUncheckedCreateWithoutActionplanInput | contentUncheckedCreateWithoutActionplanInput[] No
connectOrCreate contentCreateOrConnectWithoutActionplanInput | contentCreateOrConnectWithoutActionplanInput[] No
upsert contentUpsertWithWhereUniqueWithoutActionplanInput | contentUpsertWithWhereUniqueWithoutActionplanInput[] No
set contentWhereUniqueInput | contentWhereUniqueInput[] No
disconnect contentWhereUniqueInput | contentWhereUniqueInput[] No
delete contentWhereUniqueInput | contentWhereUniqueInput[] No
connect contentWhereUniqueInput | contentWhereUniqueInput[] No
update contentUpdateWithWhereUniqueWithoutActionplanInput | contentUpdateWithWhereUniqueWithoutActionplanInput[] No
updateMany contentUpdateManyWithWhereWithoutActionplanInput | contentUpdateManyWithWhereWithoutActionplanInput[] No
deleteMany contentScalarWhereInput | contentScalarWhereInput[] No

alertsUpdateManyWithoutActionplanNestedInput

Name Type Nullable
create alertsCreateWithoutActionplanInput | alertsCreateWithoutActionplanInput[] | alertsUncheckedCreateWithoutActionplanInput | alertsUncheckedCreateWithoutActionplanInput[] No
connectOrCreate alertsCreateOrConnectWithoutActionplanInput | alertsCreateOrConnectWithoutActionplanInput[] No
upsert alertsUpsertWithWhereUniqueWithoutActionplanInput | alertsUpsertWithWhereUniqueWithoutActionplanInput[] No
createMany alertsCreateManyActionplanInputEnvelope No
set alertsWhereUniqueInput | alertsWhereUniqueInput[] No
disconnect alertsWhereUniqueInput | alertsWhereUniqueInput[] No
delete alertsWhereUniqueInput | alertsWhereUniqueInput[] No
connect alertsWhereUniqueInput | alertsWhereUniqueInput[] No
update alertsUpdateWithWhereUniqueWithoutActionplanInput | alertsUpdateWithWhereUniqueWithoutActionplanInput[] No
updateMany alertsUpdateManyWithWhereWithoutActionplanInput | alertsUpdateManyWithWhereWithoutActionplanInput[] No
deleteMany alertsScalarWhereInput | alertsScalarWhereInput[] No

prioritiesUncheckedUpdateManyWithoutActionplanNestedInput

Name Type Nullable
create prioritiesCreateWithoutActionplanInput | prioritiesCreateWithoutActionplanInput[] | prioritiesUncheckedCreateWithoutActionplanInput | prioritiesUncheckedCreateWithoutActionplanInput[] No
connectOrCreate prioritiesCreateOrConnectWithoutActionplanInput | prioritiesCreateOrConnectWithoutActionplanInput[] No
upsert prioritiesUpsertWithWhereUniqueWithoutActionplanInput | prioritiesUpsertWithWhereUniqueWithoutActionplanInput[] No
createMany prioritiesCreateManyActionplanInputEnvelope No
set prioritiesWhereUniqueInput | prioritiesWhereUniqueInput[] No
disconnect prioritiesWhereUniqueInput | prioritiesWhereUniqueInput[] No
delete prioritiesWhereUniqueInput | prioritiesWhereUniqueInput[] No
connect prioritiesWhereUniqueInput | prioritiesWhereUniqueInput[] No
update prioritiesUpdateWithWhereUniqueWithoutActionplanInput | prioritiesUpdateWithWhereUniqueWithoutActionplanInput[] No
updateMany prioritiesUpdateManyWithWhereWithoutActionplanInput | prioritiesUpdateManyWithWhereWithoutActionplanInput[] No
deleteMany prioritiesScalarWhereInput | prioritiesScalarWhereInput[] No

contentUncheckedUpdateManyWithoutActionplanNestedInput

Name Type Nullable
create contentCreateWithoutActionplanInput | contentCreateWithoutActionplanInput[] | contentUncheckedCreateWithoutActionplanInput | contentUncheckedCreateWithoutActionplanInput[] No
connectOrCreate contentCreateOrConnectWithoutActionplanInput | contentCreateOrConnectWithoutActionplanInput[] No
upsert contentUpsertWithWhereUniqueWithoutActionplanInput | contentUpsertWithWhereUniqueWithoutActionplanInput[] No
set contentWhereUniqueInput | contentWhereUniqueInput[] No
disconnect contentWhereUniqueInput | contentWhereUniqueInput[] No
delete contentWhereUniqueInput | contentWhereUniqueInput[] No
connect contentWhereUniqueInput | contentWhereUniqueInput[] No
update contentUpdateWithWhereUniqueWithoutActionplanInput | contentUpdateWithWhereUniqueWithoutActionplanInput[] No
updateMany contentUpdateManyWithWhereWithoutActionplanInput | contentUpdateManyWithWhereWithoutActionplanInput[] No
deleteMany contentScalarWhereInput | contentScalarWhereInput[] No

alertsUncheckedUpdateManyWithoutActionplanNestedInput

Name Type Nullable
create alertsCreateWithoutActionplanInput | alertsCreateWithoutActionplanInput[] | alertsUncheckedCreateWithoutActionplanInput | alertsUncheckedCreateWithoutActionplanInput[] No
connectOrCreate alertsCreateOrConnectWithoutActionplanInput | alertsCreateOrConnectWithoutActionplanInput[] No
upsert alertsUpsertWithWhereUniqueWithoutActionplanInput | alertsUpsertWithWhereUniqueWithoutActionplanInput[] No
createMany alertsCreateManyActionplanInputEnvelope No
set alertsWhereUniqueInput | alertsWhereUniqueInput[] No
disconnect alertsWhereUniqueInput | alertsWhereUniqueInput[] No
delete alertsWhereUniqueInput | alertsWhereUniqueInput[] No
connect alertsWhereUniqueInput | alertsWhereUniqueInput[] No
update alertsUpdateWithWhereUniqueWithoutActionplanInput | alertsUpdateWithWhereUniqueWithoutActionplanInput[] No
updateMany alertsUpdateManyWithWhereWithoutActionplanInput | alertsUpdateManyWithWhereWithoutActionplanInput[] No
deleteMany alertsScalarWhereInput | alertsScalarWhereInput[] No

alertContactsCreateNestedOneWithoutPriosInput

Name Type Nullable
create alertContactsCreateWithoutPriosInput | alertContactsUncheckedCreateWithoutPriosInput No
connectOrCreate alertContactsCreateOrConnectWithoutPriosInput No
connect alertContactsWhereUniqueInput No

actionPlanCreateNestedOneWithoutPrioInput

Name Type Nullable
create actionPlanCreateWithoutPrioInput | actionPlanUncheckedCreateWithoutPrioInput No
connectOrCreate actionPlanCreateOrConnectWithoutPrioInput No
connect actionPlanWhereUniqueInput No





EnumcontentTypeFieldUpdateOperationsInput

Name Type Nullable
set contentType No

actionPlanUpdateManyWithoutContentNestedInput

Name Type Nullable
create actionPlanCreateWithoutContentInput | actionPlanCreateWithoutContentInput[] | actionPlanUncheckedCreateWithoutContentInput | actionPlanUncheckedCreateWithoutContentInput[] No
connectOrCreate actionPlanCreateOrConnectWithoutContentInput | actionPlanCreateOrConnectWithoutContentInput[] No
upsert actionPlanUpsertWithWhereUniqueWithoutContentInput | actionPlanUpsertWithWhereUniqueWithoutContentInput[] No
set actionPlanWhereUniqueInput | actionPlanWhereUniqueInput[] No
disconnect actionPlanWhereUniqueInput | actionPlanWhereUniqueInput[] No
delete actionPlanWhereUniqueInput | actionPlanWhereUniqueInput[] No
connect actionPlanWhereUniqueInput | actionPlanWhereUniqueInput[] No
update actionPlanUpdateWithWhereUniqueWithoutContentInput | actionPlanUpdateWithWhereUniqueWithoutContentInput[] No
updateMany actionPlanUpdateManyWithWhereWithoutContentInput | actionPlanUpdateManyWithWhereWithoutContentInput[] No
deleteMany actionPlanScalarWhereInput | actionPlanScalarWhereInput[] No

actionPlanUncheckedUpdateManyWithoutContentNestedInput

Name Type Nullable
create actionPlanCreateWithoutContentInput | actionPlanCreateWithoutContentInput[] | actionPlanUncheckedCreateWithoutContentInput | actionPlanUncheckedCreateWithoutContentInput[] No
connectOrCreate actionPlanCreateOrConnectWithoutContentInput | actionPlanCreateOrConnectWithoutContentInput[] No
upsert actionPlanUpsertWithWhereUniqueWithoutContentInput | actionPlanUpsertWithWhereUniqueWithoutContentInput[] No
set actionPlanWhereUniqueInput | actionPlanWhereUniqueInput[] No
disconnect actionPlanWhereUniqueInput | actionPlanWhereUniqueInput[] No
delete actionPlanWhereUniqueInput | actionPlanWhereUniqueInput[] No
connect actionPlanWhereUniqueInput | actionPlanWhereUniqueInput[] No
update actionPlanUpdateWithWhereUniqueWithoutContentInput | actionPlanUpdateWithWhereUniqueWithoutContentInput[] No
updateMany actionPlanUpdateManyWithWhereWithoutContentInput | actionPlanUpdateManyWithWhereWithoutContentInput[] No
deleteMany actionPlanScalarWhereInput | actionPlanScalarWhereInput[] No

NestedIntFilter

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

NestedEnumalertTypeFilter

Name Type Nullable
equals alertType | EnumalertTypeFieldRefInput No
in alertType[] No
notIn alertType[] No
not alertType | NestedEnumalertTypeFilter No

NestedStringNullableFilter

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

NestedIntNullableFilter

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

NestedDateTimeFilter

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

NestedEnumalertStateFilter

Name Type Nullable
equals alertState | EnumalertStateFieldRefInput No
in alertState[] No
notIn alertState[] No
not alertState | NestedEnumalertStateFilter No

NestedDateTimeNullableFilter

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

NestedIntWithAggregatesFilter

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

NestedFloatFilter

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

NestedEnumalertTypeWithAggregatesFilter

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

NestedStringNullableWithAggregatesFilter

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

NestedIntNullableWithAggregatesFilter

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

NestedFloatNullableFilter

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

NestedDateTimeWithAggregatesFilter

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

NestedEnumalertStateWithAggregatesFilter

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

NestedDateTimeNullableWithAggregatesFilter

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

NestedStringFilter

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

NestedStringWithAggregatesFilter

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

NestedEnumcontentTypeFilter

Name Type Nullable
equals contentType | EnumcontentTypeFieldRefInput No
in contentType[] No
notIn contentType[] No
not contentType | NestedEnumcontentTypeFilter No

NestedEnumcontentTypeWithAggregatesFilter

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

actionPlanCreateWithoutAlertsInput

Name Type Nullable
name String No
comment String | Null Yes
alert_hook String No
prio prioritiesCreateNestedManyWithoutActionplanInput No
content contentCreateNestedManyWithoutActionplanInput No

actionPlanUncheckedCreateWithoutAlertsInput

Name Type Nullable
id Int No
name String No
comment String | Null Yes
alert_hook String No
prio prioritiesUncheckedCreateNestedManyWithoutActionplanInput No
content contentUncheckedCreateNestedManyWithoutActionplanInput No

actionPlanCreateOrConnectWithoutAlertsInput

Name Type Nullable
where actionPlanWhereUniqueInput No
create actionPlanCreateWithoutAlertsInput | actionPlanUncheckedCreateWithoutAlertsInput No

alertContactsCreateWithoutAlertsInput

Name Type Nullable
name String No
phone String No
comment String | Null Yes
prios prioritiesCreateNestedManyWithoutContactInput No

alertContactsUncheckedCreateWithoutAlertsInput

Name Type Nullable
id Int No
name String No
phone String No
comment String | Null Yes
prios prioritiesUncheckedCreateNestedManyWithoutContactInput No

alertContactsCreateOrConnectWithoutAlertsInput

Name Type Nullable
where alertContactsWhereUniqueInput No
create alertContactsCreateWithoutAlertsInput | alertContactsUncheckedCreateWithoutAlertsInput No


actionPlanUpdateToOneWithWhereWithoutAlertsInput

Name Type Nullable
where actionPlanWhereInput No
data actionPlanUpdateWithoutAlertsInput | actionPlanUncheckedUpdateWithoutAlertsInput No

actionPlanUpdateWithoutAlertsInput

Name Type Nullable
name String | StringFieldUpdateOperationsInput No
comment String | NullableStringFieldUpdateOperationsInput | Null Yes
alert_hook String | StringFieldUpdateOperationsInput No
prio prioritiesUpdateManyWithoutActionplanNestedInput No
content contentUpdateManyWithoutActionplanNestedInput No

actionPlanUncheckedUpdateWithoutAlertsInput

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


alertContactsUpdateWithWhereUniqueWithoutAlertsInput

Name Type Nullable
where alertContactsWhereUniqueInput No
data alertContactsUpdateWithoutAlertsInput | alertContactsUncheckedUpdateWithoutAlertsInput No

alertContactsUpdateManyWithWhereWithoutAlertsInput

Name Type Nullable
where alertContactsScalarWhereInput No
data alertContactsUpdateManyMutationInput | alertContactsUncheckedUpdateManyWithoutAlertsInput No

alertContactsScalarWhereInput

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

prioritiesCreateWithoutContactInput

Name Type Nullable
priority Int No
actionplan actionPlanCreateNestedOneWithoutPrioInput No

prioritiesUncheckedCreateWithoutContactInput

Name Type Nullable
id Int No
priority Int No
actionplanId Int No

prioritiesCreateOrConnectWithoutContactInput

Name Type Nullable
where prioritiesWhereUniqueInput No
create prioritiesCreateWithoutContactInput | prioritiesUncheckedCreateWithoutContactInput No

prioritiesCreateManyContactInputEnvelope

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

alertsCreateWithoutAcknowledged_byInput

Name Type Nullable
type alertType No
message String | Null Yes
date DateTime No
state alertState No
acknowledged_at DateTime | Null Yes
actionplan actionPlanCreateNestedOneWithoutAlertsInput No

alertsUncheckedCreateWithoutAcknowledged_byInput

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

alertsCreateOrConnectWithoutAcknowledged_byInput

Name Type Nullable
where alertsWhereUniqueInput No
create alertsCreateWithoutAcknowledged_byInput | alertsUncheckedCreateWithoutAcknowledged_byInput No


prioritiesUpdateWithWhereUniqueWithoutContactInput

Name Type Nullable
where prioritiesWhereUniqueInput No
data prioritiesUpdateWithoutContactInput | prioritiesUncheckedUpdateWithoutContactInput No

prioritiesUpdateManyWithWhereWithoutContactInput

Name Type Nullable
where prioritiesScalarWhereInput No
data prioritiesUpdateManyMutationInput | prioritiesUncheckedUpdateManyWithoutContactInput No

prioritiesScalarWhereInput

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


alertsUpdateWithWhereUniqueWithoutAcknowledged_byInput

Name Type Nullable
where alertsWhereUniqueInput No
data alertsUpdateWithoutAcknowledged_byInput | alertsUncheckedUpdateWithoutAcknowledged_byInput No

alertsUpdateManyWithWhereWithoutAcknowledged_byInput

Name Type Nullable
where alertsScalarWhereInput No
data alertsUpdateManyMutationInput | alertsUncheckedUpdateManyWithoutAcknowledged_byInput No

alertsScalarWhereInput

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

prioritiesCreateWithoutActionplanInput

Name Type Nullable
priority Int No
Contact alertContactsCreateNestedOneWithoutPriosInput No

prioritiesUncheckedCreateWithoutActionplanInput

Name Type Nullable
id Int No
contactId Int No
priority Int No

prioritiesCreateOrConnectWithoutActionplanInput

Name Type Nullable
where prioritiesWhereUniqueInput No
create prioritiesCreateWithoutActionplanInput | prioritiesUncheckedCreateWithoutActionplanInput No

prioritiesCreateManyActionplanInputEnvelope

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

contentCreateWithoutActionplanInput

Name Type Nullable
type contentType No
name String No
filename String No

contentUncheckedCreateWithoutActionplanInput

Name Type Nullable
id Int No
type contentType No
name String No
filename String No

contentCreateOrConnectWithoutActionplanInput

Name Type Nullable
where contentWhereUniqueInput No
create contentCreateWithoutActionplanInput | contentUncheckedCreateWithoutActionplanInput No

alertsCreateWithoutActionplanInput

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

alertsUncheckedCreateWithoutActionplanInput

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

alertsCreateOrConnectWithoutActionplanInput

Name Type Nullable
where alertsWhereUniqueInput No
create alertsCreateWithoutActionplanInput | alertsUncheckedCreateWithoutActionplanInput No

alertsCreateManyActionplanInputEnvelope

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


prioritiesUpdateWithWhereUniqueWithoutActionplanInput

Name Type Nullable
where prioritiesWhereUniqueInput No
data prioritiesUpdateWithoutActionplanInput | prioritiesUncheckedUpdateWithoutActionplanInput No

prioritiesUpdateManyWithWhereWithoutActionplanInput

Name Type Nullable
where prioritiesScalarWhereInput No
data prioritiesUpdateManyMutationInput | prioritiesUncheckedUpdateManyWithoutActionplanInput No


contentUpdateWithWhereUniqueWithoutActionplanInput

Name Type Nullable
where contentWhereUniqueInput No
data contentUpdateWithoutActionplanInput | contentUncheckedUpdateWithoutActionplanInput No

contentUpdateManyWithWhereWithoutActionplanInput

Name Type Nullable
where contentScalarWhereInput No
data contentUpdateManyMutationInput | contentUncheckedUpdateManyWithoutActionplanInput No

contentScalarWhereInput

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


alertsUpdateWithWhereUniqueWithoutActionplanInput

Name Type Nullable
where alertsWhereUniqueInput No
data alertsUpdateWithoutActionplanInput | alertsUncheckedUpdateWithoutActionplanInput No

alertsUpdateManyWithWhereWithoutActionplanInput

Name Type Nullable
where alertsScalarWhereInput No
data alertsUpdateManyMutationInput | alertsUncheckedUpdateManyWithoutActionplanInput No

alertContactsCreateWithoutPriosInput

Name Type Nullable
name String No
phone String No
comment String | Null Yes
alerts alertsCreateNestedManyWithoutAcknowledged_byInput No

alertContactsUncheckedCreateWithoutPriosInput

Name Type Nullable
id Int No
name String No
phone String No
comment String | Null Yes
alerts alertsUncheckedCreateNestedManyWithoutAcknowledged_byInput No

alertContactsCreateOrConnectWithoutPriosInput

Name Type Nullable
where alertContactsWhereUniqueInput No
create alertContactsCreateWithoutPriosInput | alertContactsUncheckedCreateWithoutPriosInput No

actionPlanCreateWithoutPrioInput

Name Type Nullable
name String No
comment String | Null Yes
alert_hook String No
content contentCreateNestedManyWithoutActionplanInput No
alerts alertsCreateNestedManyWithoutActionplanInput No

actionPlanUncheckedCreateWithoutPrioInput

Name Type Nullable
id Int No
name String No
comment String | Null Yes
alert_hook String No
content contentUncheckedCreateNestedManyWithoutActionplanInput No
alerts alertsUncheckedCreateNestedManyWithoutActionplanInput No

actionPlanCreateOrConnectWithoutPrioInput

Name Type Nullable
where actionPlanWhereUniqueInput No
create actionPlanCreateWithoutPrioInput | actionPlanUncheckedCreateWithoutPrioInput No


alertContactsUpdateToOneWithWhereWithoutPriosInput

Name Type Nullable
where alertContactsWhereInput No
data alertContactsUpdateWithoutPriosInput | alertContactsUncheckedUpdateWithoutPriosInput No

alertContactsUpdateWithoutPriosInput

Name Type Nullable
name String | StringFieldUpdateOperationsInput No
phone String | StringFieldUpdateOperationsInput No
comment String | NullableStringFieldUpdateOperationsInput | Null Yes
alerts alertsUpdateManyWithoutAcknowledged_byNestedInput No

alertContactsUncheckedUpdateWithoutPriosInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
phone String | StringFieldUpdateOperationsInput No
comment String | NullableStringFieldUpdateOperationsInput | Null Yes
alerts alertsUncheckedUpdateManyWithoutAcknowledged_byNestedInput No


actionPlanUpdateToOneWithWhereWithoutPrioInput

Name Type Nullable
where actionPlanWhereInput No
data actionPlanUpdateWithoutPrioInput | actionPlanUncheckedUpdateWithoutPrioInput No

actionPlanUpdateWithoutPrioInput

Name Type Nullable
name String | StringFieldUpdateOperationsInput No
comment String | NullableStringFieldUpdateOperationsInput | Null Yes
alert_hook String | StringFieldUpdateOperationsInput No
content contentUpdateManyWithoutActionplanNestedInput No
alerts alertsUpdateManyWithoutActionplanNestedInput No

actionPlanUncheckedUpdateWithoutPrioInput

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

actionPlanCreateWithoutContentInput

Name Type Nullable
name String No
comment String | Null Yes
alert_hook String No
prio prioritiesCreateNestedManyWithoutActionplanInput No
alerts alertsCreateNestedManyWithoutActionplanInput No

actionPlanUncheckedCreateWithoutContentInput

Name Type Nullable
id Int No
name String No
comment String | Null Yes
alert_hook String No
prio prioritiesUncheckedCreateNestedManyWithoutActionplanInput No
alerts alertsUncheckedCreateNestedManyWithoutActionplanInput No

actionPlanCreateOrConnectWithoutContentInput

Name Type Nullable
where actionPlanWhereUniqueInput No
create actionPlanCreateWithoutContentInput | actionPlanUncheckedCreateWithoutContentInput No


actionPlanUpdateWithWhereUniqueWithoutContentInput

Name Type Nullable
where actionPlanWhereUniqueInput No
data actionPlanUpdateWithoutContentInput | actionPlanUncheckedUpdateWithoutContentInput No

actionPlanUpdateManyWithWhereWithoutContentInput

Name Type Nullable
where actionPlanScalarWhereInput No
data actionPlanUpdateManyMutationInput | actionPlanUncheckedUpdateManyWithoutContentInput No

actionPlanScalarWhereInput

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

alertContactsUpdateWithoutAlertsInput

Name Type Nullable
name String | StringFieldUpdateOperationsInput No
phone String | StringFieldUpdateOperationsInput No
comment String | NullableStringFieldUpdateOperationsInput | Null Yes
prios prioritiesUpdateManyWithoutContactNestedInput No

alertContactsUncheckedUpdateWithoutAlertsInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
phone String | StringFieldUpdateOperationsInput No
comment String | NullableStringFieldUpdateOperationsInput | Null Yes
prios prioritiesUncheckedUpdateManyWithoutContactNestedInput No

alertContactsUncheckedUpdateManyWithoutAlertsInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
phone String | StringFieldUpdateOperationsInput No
comment String | NullableStringFieldUpdateOperationsInput | Null Yes

prioritiesCreateManyContactInput

Name Type Nullable
id Int No
priority Int No
actionplanId Int No

prioritiesUpdateWithoutContactInput

Name Type Nullable
priority Int | IntFieldUpdateOperationsInput No
actionplan actionPlanUpdateOneRequiredWithoutPrioNestedInput No

prioritiesUncheckedUpdateWithoutContactInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
priority Int | IntFieldUpdateOperationsInput No
actionplanId Int | IntFieldUpdateOperationsInput No

prioritiesUncheckedUpdateManyWithoutContactInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
priority Int | IntFieldUpdateOperationsInput No
actionplanId Int | IntFieldUpdateOperationsInput No

alertsUpdateWithoutAcknowledged_byInput

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

alertsUncheckedUpdateWithoutAcknowledged_byInput

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

alertsUncheckedUpdateManyWithoutAcknowledged_byInput

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

prioritiesCreateManyActionplanInput

Name Type Nullable
id Int No
contactId Int No
priority Int No

alertsCreateManyActionplanInput

Name Type Nullable
id Int No
type alertType No
message String | Null Yes
date DateTime No
state alertState No
acknowledged_at DateTime | Null Yes

prioritiesUpdateWithoutActionplanInput

Name Type Nullable
priority Int | IntFieldUpdateOperationsInput No
Contact alertContactsUpdateOneRequiredWithoutPriosNestedInput No

prioritiesUncheckedUpdateWithoutActionplanInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
contactId Int | IntFieldUpdateOperationsInput No
priority Int | IntFieldUpdateOperationsInput No

prioritiesUncheckedUpdateManyWithoutActionplanInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
contactId Int | IntFieldUpdateOperationsInput No
priority Int | IntFieldUpdateOperationsInput No

contentUpdateWithoutActionplanInput

Name Type Nullable
type contentType | EnumcontentTypeFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
filename String | StringFieldUpdateOperationsInput No

contentUncheckedUpdateWithoutActionplanInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
type contentType | EnumcontentTypeFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
filename String | StringFieldUpdateOperationsInput No

contentUncheckedUpdateManyWithoutActionplanInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
type contentType | EnumcontentTypeFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
filename String | StringFieldUpdateOperationsInput No

alertsUpdateWithoutActionplanInput

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

alertsUncheckedUpdateWithoutActionplanInput

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

alertsUncheckedUpdateManyWithoutActionplanInput

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

actionPlanUpdateWithoutContentInput

Name Type Nullable
name String | StringFieldUpdateOperationsInput No
comment String | NullableStringFieldUpdateOperationsInput | Null Yes
alert_hook String | StringFieldUpdateOperationsInput No
prio prioritiesUpdateManyWithoutActionplanNestedInput No
alerts alertsUpdateManyWithoutActionplanNestedInput No

actionPlanUncheckedUpdateWithoutContentInput

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

actionPlanUncheckedUpdateManyWithoutContentInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
comment String | NullableStringFieldUpdateOperationsInput | Null Yes
alert_hook String | StringFieldUpdateOperationsInput No

Output Types

alerts

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

alertContacts

Name Type Nullable
id Int Yes
name String Yes
phone String Yes
comment String No
prios priorities[] No
alerts alerts[] No
_count AlertContactsCountOutputType Yes

actionPlan

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

priorities

Name Type Nullable
id Int Yes
contactId Int Yes
priority Int Yes
actionplanId Int Yes
Contact alertContacts Yes
actionplan actionPlan Yes

content

Name Type Nullable
id Int Yes
type contentType Yes
name String Yes
filename String Yes
actionplan actionPlan[] No
_count ContentCountOutputType Yes


AlertsGroupByOutputType

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


AlertContactsGroupByOutputType

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


ActionPlanGroupByOutputType

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


PrioritiesGroupByOutputType

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


ContentGroupByOutputType

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

AffectedRowsOutput

Name Type Nullable
count Int Yes

AlertsCountOutputType

Name Type Nullable
acknowledged_by Int Yes

AlertsCountAggregateOutputType

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

AlertsAvgAggregateOutputType

Name Type Nullable
id Float No
actionplanId Float No

AlertsSumAggregateOutputType

Name Type Nullable
id Int No
actionplanId Int No

AlertsMinAggregateOutputType

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

AlertsMaxAggregateOutputType

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

AlertContactsCountOutputType

Name Type Nullable
prios Int Yes
alerts Int Yes

AlertContactsCountAggregateOutputType

Name Type Nullable
id Int Yes
name Int Yes
phone Int Yes
comment Int Yes
_all Int Yes

AlertContactsAvgAggregateOutputType

Name Type Nullable
id Float No

AlertContactsSumAggregateOutputType

Name Type Nullable
id Int No

AlertContactsMinAggregateOutputType

Name Type Nullable
id Int No
name String No
phone String No
comment String No

AlertContactsMaxAggregateOutputType

Name Type Nullable
id Int No
name String No
phone String No
comment String No

ActionPlanCountOutputType

Name Type Nullable
prio Int Yes
content Int Yes
alerts Int Yes

ActionPlanCountAggregateOutputType

Name Type Nullable
id Int Yes
name Int Yes
comment Int Yes
alert_hook Int Yes
_all Int Yes

ActionPlanAvgAggregateOutputType

Name Type Nullable
id Float No

ActionPlanSumAggregateOutputType

Name Type Nullable
id Int No

ActionPlanMinAggregateOutputType

Name Type Nullable
id Int No
name String No
comment String No
alert_hook String No

ActionPlanMaxAggregateOutputType

Name Type Nullable
id Int No
name String No
comment String No
alert_hook String No

PrioritiesCountAggregateOutputType

Name Type Nullable
id Int Yes
contactId Int Yes
priority Int Yes
actionplanId Int Yes
_all Int Yes

PrioritiesAvgAggregateOutputType

Name Type Nullable
id Float No
contactId Float No
priority Float No
actionplanId Float No

PrioritiesSumAggregateOutputType

Name Type Nullable
id Int No
contactId Int No
priority Int No
actionplanId Int No

PrioritiesMinAggregateOutputType

Name Type Nullable
id Int No
contactId Int No
priority Int No
actionplanId Int No

PrioritiesMaxAggregateOutputType

Name Type Nullable
id Int No
contactId Int No
priority Int No
actionplanId Int No

ContentCountOutputType

Name Type Nullable
actionplan Int Yes

ContentCountAggregateOutputType

Name Type Nullable
id Int Yes
type Int Yes
name Int Yes
filename Int Yes
_all Int Yes

ContentAvgAggregateOutputType

Name Type Nullable
id Float No

ContentSumAggregateOutputType

Name Type Nullable
id Int No

ContentMinAggregateOutputType

Name Type Nullable
id Int No
type contentType No
name String No
filename String No

ContentMaxAggregateOutputType

Name Type Nullable
id Int No
type contentType No
name String No
filename String No