Models
Types

Models

AlarmContacts

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 -

Operations

findUnique

Find zero or one AlarmContacts

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

Input

Name Type Required
where AlarmContactsWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first AlarmContacts

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

Input

Name Type Required
where AlarmContactsWhereInput No
orderBy AlarmContactsOrderByWithRelationInput[] | AlarmContactsOrderByWithRelationInput No
cursor AlarmContactsWhereUniqueInput No
take Int No
skip Int No
distinct AlarmContactsScalarFieldEnum | AlarmContactsScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more AlarmContacts

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

Input

Name Type Required
where AlarmContactsWhereInput No
orderBy AlarmContactsOrderByWithRelationInput[] | AlarmContactsOrderByWithRelationInput No
cursor AlarmContactsWhereUniqueInput No
take Int No
skip Int No
distinct AlarmContactsScalarFieldEnum | AlarmContactsScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one AlarmContacts

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

Input

Name Type Required
data AlarmContactsCreateInput | AlarmContactsUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one AlarmContacts

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

Input

Name Type Required
where AlarmContactsWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one AlarmContacts

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

Input

Name Type Required
data AlarmContactsUpdateInput | AlarmContactsUncheckedUpdateInput Yes
where AlarmContactsWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more AlarmContacts

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

Input

Name Type Required
where AlarmContactsWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one AlarmContacts

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

Input

Name Type Required
data AlarmContactsUpdateManyMutationInput | AlarmContactsUncheckedUpdateManyInput Yes
where AlarmContactsWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one AlarmContacts

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

Input

Name Type Required
where AlarmContactsWhereUniqueInput Yes
create AlarmContactsCreateInput | AlarmContactsUncheckedCreateInput Yes
update AlarmContactsUpdateInput | AlarmContactsUncheckedUpdateInput 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 AlarmContacts
  • -
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

ActionPlan

Fields

Name Type Attributes Required Comment
id Int
  • @id
  • @default(autoincrement())
Yes -
name String
  • -
Yes -
comment String?
  • -
No -
prio Priorities[]
  • -
Yes -
content Content[]
  • -
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

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

AlarmContactsWhereInput

Name Type Nullable
AND AlarmContactsWhereInput | AlarmContactsWhereInput[] No
OR AlarmContactsWhereInput[] No
NOT AlarmContactsWhereInput | AlarmContactsWhereInput[] No
id IntFilter | Int No
name StringFilter | String No
phone StringFilter | String No
comment StringNullableFilter | String | Null Yes
Prios PrioritiesListRelationFilter No

AlarmContactsOrderByWithRelationInput

Name Type Nullable
id SortOrder No
name SortOrder No
phone SortOrder No
comment SortOrder | SortOrderInput No
Prios PrioritiesOrderByRelationAggregateInput No
_relevance AlarmContactsOrderByRelevanceInput No

AlarmContactsWhereUniqueInput

Name Type Nullable
id Int No
phone String No
AND AlarmContactsWhereInput | AlarmContactsWhereInput[] No
OR AlarmContactsWhereInput[] No
NOT AlarmContactsWhereInput | AlarmContactsWhereInput[] No
name StringFilter | String No
comment StringNullableFilter | String | Null Yes
Prios PrioritiesListRelationFilter 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 AlarmContactsScalarRelationFilter | AlarmContactsWhereInput No
actionplan ActionPlanScalarRelationFilter | ActionPlanWhereInput No

PrioritiesOrderByWithRelationInput

Name Type Nullable
id SortOrder No
contactId SortOrder No
priority SortOrder No
actionplanId SortOrder No
Contact AlarmContactsOrderByWithRelationInput 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 AlarmContactsScalarRelationFilter | AlarmContactsWhereInput 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


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
prio PrioritiesListRelationFilter No
content ContentListRelationFilter No

ActionPlanOrderByWithRelationInput

Name Type Nullable
id SortOrder No
name SortOrder No
comment SortOrder | SortOrderInput No
prio PrioritiesOrderByRelationAggregateInput No
content ContentOrderByRelationAggregateInput No
_relevance ActionPlanOrderByRelevanceInput No

ActionPlanWhereUniqueInput

Name Type Nullable
id Int 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



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


AlarmContactsCreateInput

Name Type Nullable
name String No
phone String No
comment String | Null Yes
Prios PrioritiesCreateNestedManyWithoutContactInput No

AlarmContactsUncheckedCreateInput

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

AlarmContactsUpdateInput

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

AlarmContactsUncheckedUpdateInput

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

AlarmContactsCreateManyInput

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

AlarmContactsUpdateManyMutationInput

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

AlarmContactsUncheckedUpdateManyInput

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

PrioritiesCreateInput

Name Type Nullable
priority Int No
Contact AlarmContactsCreateNestedOneWithoutPriosInput 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 AlarmContactsUpdateOneRequiredWithoutPriosNestedInput 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

ActionPlanCreateInput

Name Type Nullable
name String No
comment String | Null Yes
prio PrioritiesCreateNestedManyWithoutActionplanInput No
content ContentCreateNestedManyWithoutActionplanInput No

ActionPlanUncheckedCreateInput

Name Type Nullable
id Int No
name String No
comment String | Null Yes
prio PrioritiesUncheckedCreateNestedManyWithoutActionplanInput No
content ContentUncheckedCreateNestedManyWithoutActionplanInput No

ActionPlanUpdateInput

Name Type Nullable
name String | StringFieldUpdateOperationsInput No
comment String | NullableStringFieldUpdateOperationsInput | Null Yes
prio PrioritiesUpdateManyWithoutActionplanNestedInput No
content ContentUpdateManyWithoutActionplanNestedInput No


ActionPlanCreateManyInput

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

ActionPlanUpdateManyMutationInput

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

ActionPlanUncheckedUpdateManyInput

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

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

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

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

PrioritiesListRelationFilter

Name Type Nullable
every PrioritiesWhereInput No
some PrioritiesWhereInput No
none PrioritiesWhereInput No

SortOrderInput

Name Type Nullable
sort SortOrder No
nulls NullsOrder No

PrioritiesOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

AlarmContactsOrderByRelevanceInput

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

AlarmContactsCountOrderByAggregateInput

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

AlarmContactsAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No

AlarmContactsMaxOrderByAggregateInput

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

AlarmContactsMinOrderByAggregateInput

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

AlarmContactsSumOrderByAggregateInput

Name Type Nullable
id SortOrder No

IntWithAggregatesFilter

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

StringWithAggregatesFilter

Name Type Nullable
equals String | StringFieldRefInput No
in String No
notIn String No
lt String | StringFieldRefInput No
lte String | StringFieldRefInput No
gt String | StringFieldRefInput No
gte String | StringFieldRefInput No
contains String | StringFieldRefInput No
startsWith String | StringFieldRefInput No
endsWith String | StringFieldRefInput No
search String No
not String | NestedStringWithAggregatesFilter No
_count NestedIntFilter No
_min NestedStringFilter No
_max NestedStringFilter 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

AlarmContactsScalarRelationFilter

Name Type Nullable
is AlarmContactsWhereInput No
isNot AlarmContactsWhereInput 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

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

ActionPlanAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No

ActionPlanMaxOrderByAggregateInput

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

ActionPlanMinOrderByAggregateInput

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

ActionPlanSumOrderByAggregateInput

Name Type Nullable
id 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



StringFieldUpdateOperationsInput

Name Type Nullable
set String No

NullableStringFieldUpdateOperationsInput

Name Type Nullable
set String | Null Yes

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

IntFieldUpdateOperationsInput

Name Type Nullable
set Int No
increment Int No
decrement Int No
multiply Int No
divide Int 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

AlarmContactsCreateNestedOneWithoutPriosInput

Name Type Nullable
create AlarmContactsCreateWithoutPriosInput | AlarmContactsUncheckedCreateWithoutPriosInput No
connectOrCreate AlarmContactsCreateOrConnectWithoutPriosInput No
connect AlarmContactsWhereUniqueInput No

ActionPlanCreateNestedOneWithoutPrioInput

Name Type Nullable
create ActionPlanCreateWithoutPrioInput | ActionPlanUncheckedCreateWithoutPrioInput No
connectOrCreate ActionPlanCreateOrConnectWithoutPrioInput No
connect ActionPlanWhereUniqueInput 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

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



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

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

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

NestedIntWithAggregatesFilter

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

NestedFloatFilter

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

NestedStringWithAggregatesFilter

Name Type Nullable
equals String | StringFieldRefInput No
in String No
notIn String No
lt String | StringFieldRefInput No
lte String | StringFieldRefInput No
gt String | StringFieldRefInput No
gte String | StringFieldRefInput No
contains String | StringFieldRefInput No
startsWith String | StringFieldRefInput No
endsWith String | StringFieldRefInput No
search String No
not String | NestedStringWithAggregatesFilter No
_count NestedIntFilter No
_min NestedStringFilter No
_max NestedStringFilter 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

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

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

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


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

AlarmContactsCreateWithoutPriosInput

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

AlarmContactsUncheckedCreateWithoutPriosInput

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

AlarmContactsCreateOrConnectWithoutPriosInput

Name Type Nullable
where AlarmContactsWhereUniqueInput No
create AlarmContactsCreateWithoutPriosInput | AlarmContactsUncheckedCreateWithoutPriosInput No

ActionPlanCreateWithoutPrioInput

Name Type Nullable
name String No
comment String | Null Yes
content ContentCreateNestedManyWithoutActionplanInput No

ActionPlanUncheckedCreateWithoutPrioInput

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

ActionPlanCreateOrConnectWithoutPrioInput

Name Type Nullable
where ActionPlanWhereUniqueInput No
create ActionPlanCreateWithoutPrioInput | ActionPlanUncheckedCreateWithoutPrioInput No


AlarmContactsUpdateToOneWithWhereWithoutPriosInput

Name Type Nullable
where AlarmContactsWhereInput No
data AlarmContactsUpdateWithoutPriosInput | AlarmContactsUncheckedUpdateWithoutPriosInput No

AlarmContactsUpdateWithoutPriosInput

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

AlarmContactsUncheckedUpdateWithoutPriosInput

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


ActionPlanUpdateToOneWithWhereWithoutPrioInput

Name Type Nullable
where ActionPlanWhereInput No
data ActionPlanUpdateWithoutPrioInput | ActionPlanUncheckedUpdateWithoutPrioInput No

ActionPlanUpdateWithoutPrioInput

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

ActionPlanUncheckedUpdateWithoutPrioInput

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

PrioritiesCreateWithoutActionplanInput

Name Type Nullable
priority Int No
Contact AlarmContactsCreateNestedOneWithoutPriosInput 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


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

ActionPlanCreateWithoutContentInput

Name Type Nullable
name String No
comment String | Null Yes
prio PrioritiesCreateNestedManyWithoutActionplanInput No

ActionPlanUncheckedCreateWithoutContentInput

Name Type Nullable
id Int No
name String No
comment String | Null Yes
prio PrioritiesUncheckedCreateNestedManyWithoutActionplanInput 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

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

PrioritiesCreateManyActionplanInput

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

PrioritiesUpdateWithoutActionplanInput

Name Type Nullable
priority Int | IntFieldUpdateOperationsInput No
Contact AlarmContactsUpdateOneRequiredWithoutPriosNestedInput 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

ActionPlanUpdateWithoutContentInput

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

ActionPlanUncheckedUpdateWithoutContentInput

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

ActionPlanUncheckedUpdateManyWithoutContentInput

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

Output Types

AlarmContacts

Name Type Nullable
id Int Yes
name String Yes
phone String Yes
comment String No
Prios Priorities[] No
_count AlarmContactsCountOutputType Yes

Priorities

Name Type Nullable
id Int Yes
contactId Int Yes
priority Int Yes
actionplanId Int Yes
Contact AlarmContacts Yes
actionplan ActionPlan Yes

ActionPlan

Name Type Nullable
id Int Yes
name String Yes
comment String No
prio Priorities[] No
content Content[] No
_count ActionPlanCountOutputType Yes

Content

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


AlarmContactsGroupByOutputType

Name Type Nullable
id Int Yes
name String Yes
phone String Yes
comment String No
_count AlarmContactsCountAggregateOutputType No
_avg AlarmContactsAvgAggregateOutputType No
_sum AlarmContactsSumAggregateOutputType No
_min AlarmContactsMinAggregateOutputType No
_max AlarmContactsMaxAggregateOutputType 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


ActionPlanGroupByOutputType

Name Type Nullable
id Int Yes
name String Yes
comment String No
_count ActionPlanCountAggregateOutputType No
_avg ActionPlanAvgAggregateOutputType No
_sum ActionPlanSumAggregateOutputType No
_min ActionPlanMinAggregateOutputType No
_max ActionPlanMaxAggregateOutputType 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

AlarmContactsCountOutputType

Name Type Nullable
Prios Int Yes

AlarmContactsCountAggregateOutputType

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

AlarmContactsAvgAggregateOutputType

Name Type Nullable
id Float No

AlarmContactsSumAggregateOutputType

Name Type Nullable
id Int No

AlarmContactsMinAggregateOutputType

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

AlarmContactsMaxAggregateOutputType

Name Type Nullable
id Int No
name String No
phone String No
comment 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

ActionPlanCountOutputType

Name Type Nullable
prio Int Yes
content Int Yes

ActionPlanCountAggregateOutputType

Name Type Nullable
id Int Yes
name Int Yes
comment 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

ActionPlanMaxAggregateOutputType

Name Type Nullable
id Int No
name String No
comment String 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