| Name | Value |
|---|---|
| @@unique |
|
| @@index |
|
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| uuid | String |
|
Yes | - |
| appointmentTypeId | String |
|
Yes | - |
| appointmentType | AppointmentType |
|
Yes | - |
| patientId | String |
|
Yes | - |
| patient | Patient |
|
Yes | - |
| locationId | String |
|
Yes | - |
| location | Location |
|
Yes | - |
| providerId | String |
|
Yes | - |
| provider | Provider |
|
Yes | - |
| startDatetime | DateTime |
|
Yes | - |
| endDatetime | DateTime |
|
Yes | - |
| voided | Boolean |
|
Yes | - |
| voidedBy | String |
|
Yes | - |
| dateVoided | DateTime |
|
Yes | - |
| voidReason | String |
|
Yes | - |
| creator | String |
|
Yes | - |
| dateCreated | DateTime |
|
Yes | - |
| lastChangedBy | String |
|
Yes | - |
| lastChangedDate | DateTime |
|
Yes | - |
Find zero or one Appointment
// Get one Appointment
const appointment = await prisma.appointment.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | AppointmentWhereUniqueInput | Yes |
Find first Appointment
// Get one Appointment
const appointment = await prisma.appointment.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | AppointmentWhereInput | No |
| orderBy | AppointmentOrderByWithRelationInput[] | AppointmentOrderByWithRelationInput | No |
| cursor | AppointmentWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | AppointmentScalarFieldEnum | AppointmentScalarFieldEnum[] | No |
Find zero or more Appointment
// Get all Appointment
const Appointment = await prisma.appointment.findMany()
// Get first 10 Appointment
const Appointment = await prisma.appointment.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | AppointmentWhereInput | No |
| orderBy | AppointmentOrderByWithRelationInput[] | AppointmentOrderByWithRelationInput | No |
| cursor | AppointmentWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | AppointmentScalarFieldEnum | AppointmentScalarFieldEnum[] | No |
Create one Appointment
// Create one Appointment
const Appointment = await prisma.appointment.create({
data: {
// ... data to create a Appointment
}
})
| Name | Type | Required |
|---|---|---|
| data | AppointmentCreateInput | AppointmentUncheckedCreateInput | Yes |
Delete one Appointment
// Delete one Appointment
const Appointment = await prisma.appointment.delete({
where: {
// ... filter to delete one Appointment
}
})
| Name | Type | Required |
|---|---|---|
| where | AppointmentWhereUniqueInput | Yes |
Update one Appointment
// Update one Appointment
const appointment = await prisma.appointment.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | AppointmentUpdateInput | AppointmentUncheckedUpdateInput | Yes |
| where | AppointmentWhereUniqueInput | Yes |
Delete zero or more Appointment
// Delete a few Appointment
const { count } = await prisma.appointment.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | AppointmentWhereInput | No |
Update zero or one Appointment
const { count } = await prisma.appointment.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | AppointmentUpdateManyMutationInput | AppointmentUncheckedUpdateManyInput | Yes |
| where | AppointmentWhereInput | No |
Create or update one Appointment
// Update or create a Appointment
const appointment = await prisma.appointment.upsert({
create: {
// ... data to create a Appointment
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Appointment we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | AppointmentWhereUniqueInput | Yes |
| create | AppointmentCreateInput | AppointmentUncheckedCreateInput | Yes |
| update | AppointmentUpdateInput | AppointmentUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| uuid | String |
|
Yes | - |
| name | String |
|
Yes | - |
| description | String |
|
Yes | - |
| duration | Int |
|
Yes | - |
| creator | String |
|
Yes | - |
| dateCreated | DateTime |
|
Yes | - |
| lastChangedBy | String |
|
Yes | - |
| lastChangedDate | DateTime |
|
Yes | - |
| appointmentList | Appointment[] |
|
Yes | - |
Find zero or one AppointmentType
// Get one AppointmentType
const appointmentType = await prisma.appointmentType.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | AppointmentTypeWhereUniqueInput | Yes |
Find first AppointmentType
// Get one AppointmentType
const appointmentType = await prisma.appointmentType.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | AppointmentTypeWhereInput | No |
| orderBy | AppointmentTypeOrderByWithRelationInput[] | AppointmentTypeOrderByWithRelationInput | No |
| cursor | AppointmentTypeWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | AppointmentTypeScalarFieldEnum | AppointmentTypeScalarFieldEnum[] | No |
Find zero or more AppointmentType
// Get all AppointmentType
const AppointmentType = await prisma.appointmentType.findMany()
// Get first 10 AppointmentType
const AppointmentType = await prisma.appointmentType.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | AppointmentTypeWhereInput | No |
| orderBy | AppointmentTypeOrderByWithRelationInput[] | AppointmentTypeOrderByWithRelationInput | No |
| cursor | AppointmentTypeWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | AppointmentTypeScalarFieldEnum | AppointmentTypeScalarFieldEnum[] | No |
Create one AppointmentType
// Create one AppointmentType
const AppointmentType = await prisma.appointmentType.create({
data: {
// ... data to create a AppointmentType
}
})
| Name | Type | Required |
|---|---|---|
| data | AppointmentTypeCreateInput | AppointmentTypeUncheckedCreateInput | Yes |
Delete one AppointmentType
// Delete one AppointmentType
const AppointmentType = await prisma.appointmentType.delete({
where: {
// ... filter to delete one AppointmentType
}
})
| Name | Type | Required |
|---|---|---|
| where | AppointmentTypeWhereUniqueInput | Yes |
Update one AppointmentType
// Update one AppointmentType
const appointmentType = await prisma.appointmentType.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | AppointmentTypeUpdateInput | AppointmentTypeUncheckedUpdateInput | Yes |
| where | AppointmentTypeWhereUniqueInput | Yes |
Delete zero or more AppointmentType
// Delete a few AppointmentType
const { count } = await prisma.appointmentType.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | AppointmentTypeWhereInput | No |
Update zero or one AppointmentType
const { count } = await prisma.appointmentType.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | AppointmentTypeUpdateManyMutationInput | AppointmentTypeUncheckedUpdateManyInput | Yes |
| where | AppointmentTypeWhereInput | No |
Create or update one AppointmentType
// Update or create a AppointmentType
const appointmentType = await prisma.appointmentType.upsert({
create: {
// ... data to create a AppointmentType
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the AppointmentType we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | AppointmentTypeWhereUniqueInput | Yes |
| create | AppointmentTypeCreateInput | AppointmentTypeUncheckedCreateInput | Yes |
| update | AppointmentTypeUpdateInput | AppointmentTypeUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| uuid | String |
|
Yes | - |
| name | String |
|
Yes | - |
| description | String |
|
Yes | - |
| address1 | String |
|
Yes | - |
| address2 | String |
|
Yes | - |
| city | String |
|
Yes | - |
| stateProvince | String |
|
Yes | - |
| country | String |
|
Yes | - |
| postalCode | String |
|
Yes | - |
| latitude | Float |
|
Yes | - |
| longitude | Float |
|
Yes | - |
| creator | String |
|
Yes | - |
| dateCreated | DateTime |
|
Yes | - |
| lastChangedBy | String |
|
Yes | - |
| lastChangedDate | DateTime |
|
Yes | - |
| appointmentList | Appointment[] |
|
Yes | - |
| encounterList | Encounter[] |
|
Yes | - |
Find zero or one Location
// Get one Location
const location = await prisma.location.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | LocationWhereUniqueInput | Yes |
Find first Location
// Get one Location
const location = await prisma.location.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | LocationWhereInput | No |
| orderBy | LocationOrderByWithRelationInput[] | LocationOrderByWithRelationInput | No |
| cursor | LocationWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | LocationScalarFieldEnum | LocationScalarFieldEnum[] | No |
Find zero or more Location
// Get all Location
const Location = await prisma.location.findMany()
// Get first 10 Location
const Location = await prisma.location.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | LocationWhereInput | No |
| orderBy | LocationOrderByWithRelationInput[] | LocationOrderByWithRelationInput | No |
| cursor | LocationWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | LocationScalarFieldEnum | LocationScalarFieldEnum[] | No |
Create one Location
// Create one Location
const Location = await prisma.location.create({
data: {
// ... data to create a Location
}
})
| Name | Type | Required |
|---|---|---|
| data | LocationCreateInput | LocationUncheckedCreateInput | Yes |
Delete one Location
// Delete one Location
const Location = await prisma.location.delete({
where: {
// ... filter to delete one Location
}
})
| Name | Type | Required |
|---|---|---|
| where | LocationWhereUniqueInput | Yes |
Update one Location
// Update one Location
const location = await prisma.location.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | LocationUpdateInput | LocationUncheckedUpdateInput | Yes |
| where | LocationWhereUniqueInput | Yes |
Delete zero or more Location
// Delete a few Location
const { count } = await prisma.location.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | LocationWhereInput | No |
Update zero or one Location
const { count } = await prisma.location.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | LocationUpdateManyMutationInput | LocationUncheckedUpdateManyInput | Yes |
| where | LocationWhereInput | No |
Create or update one Location
// Update or create a Location
const location = await prisma.location.upsert({
create: {
// ... data to create a Location
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Location we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | LocationWhereUniqueInput | Yes |
| create | LocationCreateInput | LocationUncheckedCreateInput | Yes |
| update | LocationUpdateInput | LocationUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| uuid | String |
|
Yes | - |
| givenName | String |
|
Yes | - |
| middleName | String |
|
Yes | - |
| familyName | String |
|
Yes | - |
| gender | String |
|
Yes | - |
| birthdate | DateTime |
|
Yes | - |
| dead | Boolean |
|
Yes | - |
| deathDate | DateTime |
|
Yes | - |
| causeOfDeath | String |
|
Yes | - |
| creator | String |
|
Yes | - |
| dateCreated | DateTime |
|
Yes | - |
| lastChangedBy | String |
|
Yes | - |
| lastChangedDate | DateTime |
|
Yes | - |
| appointmentList | Appointment[] |
|
Yes | - |
| encounterList | Encounter[] |
|
Yes | - |
Find zero or one Patient
// Get one Patient
const patient = await prisma.patient.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PatientWhereUniqueInput | Yes |
Find first Patient
// Get one Patient
const patient = await prisma.patient.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PatientWhereInput | No |
| orderBy | PatientOrderByWithRelationInput[] | PatientOrderByWithRelationInput | No |
| cursor | PatientWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | PatientScalarFieldEnum | PatientScalarFieldEnum[] | No |
Find zero or more Patient
// Get all Patient
const Patient = await prisma.patient.findMany()
// Get first 10 Patient
const Patient = await prisma.patient.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | PatientWhereInput | No |
| orderBy | PatientOrderByWithRelationInput[] | PatientOrderByWithRelationInput | No |
| cursor | PatientWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | PatientScalarFieldEnum | PatientScalarFieldEnum[] | No |
Create one Patient
// Create one Patient
const Patient = await prisma.patient.create({
data: {
// ... data to create a Patient
}
})
| Name | Type | Required |
|---|---|---|
| data | PatientCreateInput | PatientUncheckedCreateInput | Yes |
Delete one Patient
// Delete one Patient
const Patient = await prisma.patient.delete({
where: {
// ... filter to delete one Patient
}
})
| Name | Type | Required |
|---|---|---|
| where | PatientWhereUniqueInput | Yes |
Update one Patient
// Update one Patient
const patient = await prisma.patient.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | PatientUpdateInput | PatientUncheckedUpdateInput | Yes |
| where | PatientWhereUniqueInput | Yes |
Delete zero or more Patient
// Delete a few Patient
const { count } = await prisma.patient.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PatientWhereInput | No |
Update zero or one Patient
const { count } = await prisma.patient.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | PatientUpdateManyMutationInput | PatientUncheckedUpdateManyInput | Yes |
| where | PatientWhereInput | No |
Create or update one Patient
// Update or create a Patient
const patient = await prisma.patient.upsert({
create: {
// ... data to create a Patient
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Patient we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | PatientWhereUniqueInput | Yes |
| create | PatientCreateInput | PatientUncheckedCreateInput | Yes |
| update | PatientUpdateInput | PatientUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| uuid | String |
|
Yes | - |
| name | String |
|
Yes | - |
| identifier | String |
|
Yes | - |
| description | String |
|
Yes | - |
| voided | Boolean |
|
Yes | - |
| voidedBy | String |
|
Yes | - |
| dateVoided | DateTime |
|
Yes | - |
| voidReason | String |
|
Yes | - |
| creator | String |
|
Yes | - |
| dateCreated | DateTime |
|
Yes | - |
| lastChangedBy | String |
|
Yes | - |
| lastChangedDate | DateTime |
|
Yes | - |
| appointmentList | Appointment[] |
|
Yes | - |
| encounterList | Encounter[] |
|
Yes | - |
Find zero or one Provider
// Get one Provider
const provider = await prisma.provider.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ProviderWhereUniqueInput | Yes |
Find first Provider
// Get one Provider
const provider = await prisma.provider.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ProviderWhereInput | No |
| orderBy | ProviderOrderByWithRelationInput[] | ProviderOrderByWithRelationInput | No |
| cursor | ProviderWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ProviderScalarFieldEnum | ProviderScalarFieldEnum[] | No |
Find zero or more Provider
// Get all Provider
const Provider = await prisma.provider.findMany()
// Get first 10 Provider
const Provider = await prisma.provider.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | ProviderWhereInput | No |
| orderBy | ProviderOrderByWithRelationInput[] | ProviderOrderByWithRelationInput | No |
| cursor | ProviderWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ProviderScalarFieldEnum | ProviderScalarFieldEnum[] | No |
Create one Provider
// Create one Provider
const Provider = await prisma.provider.create({
data: {
// ... data to create a Provider
}
})
| Name | Type | Required |
|---|---|---|
| data | ProviderCreateInput | ProviderUncheckedCreateInput | Yes |
Delete one Provider
// Delete one Provider
const Provider = await prisma.provider.delete({
where: {
// ... filter to delete one Provider
}
})
| Name | Type | Required |
|---|---|---|
| where | ProviderWhereUniqueInput | Yes |
Update one Provider
// Update one Provider
const provider = await prisma.provider.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ProviderUpdateInput | ProviderUncheckedUpdateInput | Yes |
| where | ProviderWhereUniqueInput | Yes |
Delete zero or more Provider
// Delete a few Provider
const { count } = await prisma.provider.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ProviderWhereInput | No |
Update zero or one Provider
const { count } = await prisma.provider.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ProviderUpdateManyMutationInput | ProviderUncheckedUpdateManyInput | Yes |
| where | ProviderWhereInput | No |
Create or update one Provider
// Update or create a Provider
const provider = await prisma.provider.upsert({
create: {
// ... data to create a Provider
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Provider we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | ProviderWhereUniqueInput | Yes |
| create | ProviderCreateInput | ProviderUncheckedCreateInput | Yes |
| update | ProviderUpdateInput | ProviderUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| uuid | String |
|
Yes | - |
| name | String |
|
Yes | - |
| description | String |
|
Yes | - |
| version | String |
|
Yes | - |
| retired | Boolean |
|
Yes | - |
| retiredBy | String |
|
Yes | - |
| dateRetired | DateTime |
|
Yes | - |
| retiredReason | String |
|
Yes | - |
| creator | String |
|
Yes | - |
| dateCreated | DateTime |
|
Yes | - |
| lastChangedBy | String |
|
Yes | - |
| lastChangedDate | DateTime |
|
Yes | - |
| formEncounterList | FormEncounter[] |
|
Yes | - |
| formResourceList | FormResource[] |
|
Yes | - |
| formSubmissionList | FormSubmission[] |
|
Yes | - |
| dield | Field? |
|
No | - |
| fieldId | String? |
|
No | - |
| encounterList | Encounter[] |
|
Yes | - |
Find zero or one Form
// Get one Form
const form = await prisma.form.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | FormWhereUniqueInput | Yes |
Find first Form
// Get one Form
const form = await prisma.form.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | FormWhereInput | No |
| orderBy | FormOrderByWithRelationInput[] | FormOrderByWithRelationInput | No |
| cursor | FormWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | FormScalarFieldEnum | FormScalarFieldEnum[] | No |
Find zero or more Form
// Get all Form
const Form = await prisma.form.findMany()
// Get first 10 Form
const Form = await prisma.form.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | FormWhereInput | No |
| orderBy | FormOrderByWithRelationInput[] | FormOrderByWithRelationInput | No |
| cursor | FormWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | FormScalarFieldEnum | FormScalarFieldEnum[] | No |
Create one Form
// Create one Form
const Form = await prisma.form.create({
data: {
// ... data to create a Form
}
})
| Name | Type | Required |
|---|---|---|
| data | FormCreateInput | FormUncheckedCreateInput | Yes |
Delete one Form
// Delete one Form
const Form = await prisma.form.delete({
where: {
// ... filter to delete one Form
}
})
| Name | Type | Required |
|---|---|---|
| where | FormWhereUniqueInput | Yes |
Update one Form
// Update one Form
const form = await prisma.form.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | FormUpdateInput | FormUncheckedUpdateInput | Yes |
| where | FormWhereUniqueInput | Yes |
Delete zero or more Form
// Delete a few Form
const { count } = await prisma.form.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | FormWhereInput | No |
Update zero or one Form
const { count } = await prisma.form.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | FormUpdateManyMutationInput | FormUncheckedUpdateManyInput | Yes |
| where | FormWhereInput | No |
Create or update one Form
// Update or create a Form
const form = await prisma.form.upsert({
create: {
// ... data to create a Form
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Form we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | FormWhereUniqueInput | Yes |
| create | FormCreateInput | FormUncheckedCreateInput | Yes |
| update | FormUpdateInput | FormUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| uuid | String |
|
Yes | - |
| formId | String |
|
Yes | - |
| form | Form |
|
Yes | - |
| encounterId | String |
|
Yes | - |
| encounter | Encounter |
|
Yes | - |
| creator | String |
|
Yes | - |
| dateCreated | DateTime |
|
Yes | - |
| lastChangedBy | String |
|
Yes | - |
| lastChangedDate | DateTime |
|
Yes | - |
Find zero or one FormEncounter
// Get one FormEncounter
const formEncounter = await prisma.formEncounter.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | FormEncounterWhereUniqueInput | Yes |
Find first FormEncounter
// Get one FormEncounter
const formEncounter = await prisma.formEncounter.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | FormEncounterWhereInput | No |
| orderBy | FormEncounterOrderByWithRelationInput[] | FormEncounterOrderByWithRelationInput | No |
| cursor | FormEncounterWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | FormEncounterScalarFieldEnum | FormEncounterScalarFieldEnum[] | No |
Find zero or more FormEncounter
// Get all FormEncounter
const FormEncounter = await prisma.formEncounter.findMany()
// Get first 10 FormEncounter
const FormEncounter = await prisma.formEncounter.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | FormEncounterWhereInput | No |
| orderBy | FormEncounterOrderByWithRelationInput[] | FormEncounterOrderByWithRelationInput | No |
| cursor | FormEncounterWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | FormEncounterScalarFieldEnum | FormEncounterScalarFieldEnum[] | No |
Create one FormEncounter
// Create one FormEncounter
const FormEncounter = await prisma.formEncounter.create({
data: {
// ... data to create a FormEncounter
}
})
| Name | Type | Required |
|---|---|---|
| data | FormEncounterCreateInput | FormEncounterUncheckedCreateInput | Yes |
Delete one FormEncounter
// Delete one FormEncounter
const FormEncounter = await prisma.formEncounter.delete({
where: {
// ... filter to delete one FormEncounter
}
})
| Name | Type | Required |
|---|---|---|
| where | FormEncounterWhereUniqueInput | Yes |
Update one FormEncounter
// Update one FormEncounter
const formEncounter = await prisma.formEncounter.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | FormEncounterUpdateInput | FormEncounterUncheckedUpdateInput | Yes |
| where | FormEncounterWhereUniqueInput | Yes |
Delete zero or more FormEncounter
// Delete a few FormEncounter
const { count } = await prisma.formEncounter.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | FormEncounterWhereInput | No |
Update zero or one FormEncounter
const { count } = await prisma.formEncounter.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | FormEncounterUpdateManyMutationInput | FormEncounterUncheckedUpdateManyInput | Yes |
| where | FormEncounterWhereInput | No |
Create or update one FormEncounter
// Update or create a FormEncounter
const formEncounter = await prisma.formEncounter.upsert({
create: {
// ... data to create a FormEncounter
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the FormEncounter we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | FormEncounterWhereUniqueInput | Yes |
| create | FormEncounterCreateInput | FormEncounterUncheckedCreateInput | Yes |
| update | FormEncounterUpdateInput | FormEncounterUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| uuid | String |
|
Yes | - |
| formId | String |
|
Yes | - |
| form | Form |
|
Yes | - |
| resourceId | String |
|
Yes | - |
| resource | Resource |
|
Yes | - |
| creator | String |
|
Yes | - |
| dateCreated | DateTime |
|
Yes | - |
| lastChangedBy | String |
|
Yes | - |
| lastChangedDate | DateTime |
|
Yes | - |
Find zero or one FormResource
// Get one FormResource
const formResource = await prisma.formResource.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | FormResourceWhereUniqueInput | Yes |
Find first FormResource
// Get one FormResource
const formResource = await prisma.formResource.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | FormResourceWhereInput | No |
| orderBy | FormResourceOrderByWithRelationInput[] | FormResourceOrderByWithRelationInput | No |
| cursor | FormResourceWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | FormResourceScalarFieldEnum | FormResourceScalarFieldEnum[] | No |
Find zero or more FormResource
// Get all FormResource
const FormResource = await prisma.formResource.findMany()
// Get first 10 FormResource
const FormResource = await prisma.formResource.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | FormResourceWhereInput | No |
| orderBy | FormResourceOrderByWithRelationInput[] | FormResourceOrderByWithRelationInput | No |
| cursor | FormResourceWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | FormResourceScalarFieldEnum | FormResourceScalarFieldEnum[] | No |
Create one FormResource
// Create one FormResource
const FormResource = await prisma.formResource.create({
data: {
// ... data to create a FormResource
}
})
| Name | Type | Required |
|---|---|---|
| data | FormResourceCreateInput | FormResourceUncheckedCreateInput | Yes |
Delete one FormResource
// Delete one FormResource
const FormResource = await prisma.formResource.delete({
where: {
// ... filter to delete one FormResource
}
})
| Name | Type | Required |
|---|---|---|
| where | FormResourceWhereUniqueInput | Yes |
Update one FormResource
// Update one FormResource
const formResource = await prisma.formResource.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | FormResourceUpdateInput | FormResourceUncheckedUpdateInput | Yes |
| where | FormResourceWhereUniqueInput | Yes |
Delete zero or more FormResource
// Delete a few FormResource
const { count } = await prisma.formResource.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | FormResourceWhereInput | No |
Update zero or one FormResource
const { count } = await prisma.formResource.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | FormResourceUpdateManyMutationInput | FormResourceUncheckedUpdateManyInput | Yes |
| where | FormResourceWhereInput | No |
Create or update one FormResource
// Update or create a FormResource
const formResource = await prisma.formResource.upsert({
create: {
// ... data to create a FormResource
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the FormResource we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | FormResourceWhereUniqueInput | Yes |
| create | FormResourceCreateInput | FormResourceUncheckedCreateInput | Yes |
| update | FormResourceUpdateInput | FormResourceUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| uuid | String |
|
Yes | - |
| formId | String |
|
Yes | - |
| form | Form |
|
Yes | - |
| encounterId | String |
|
Yes | - |
| encounter | Encounter |
|
Yes | - |
| submissionDate | DateTime |
|
Yes | - |
| creator | String |
|
Yes | - |
| dateCreated | DateTime |
|
Yes | - |
| lastChangedBy | String |
|
Yes | - |
| lastChangedDate | DateTime |
|
Yes | - |
| fieldAnswerList | FieldAnswer[] |
|
Yes | - |
Find zero or one FormSubmission
// Get one FormSubmission
const formSubmission = await prisma.formSubmission.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | FormSubmissionWhereUniqueInput | Yes |
Find first FormSubmission
// Get one FormSubmission
const formSubmission = await prisma.formSubmission.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | FormSubmissionWhereInput | No |
| orderBy | FormSubmissionOrderByWithRelationInput[] | FormSubmissionOrderByWithRelationInput | No |
| cursor | FormSubmissionWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | FormSubmissionScalarFieldEnum | FormSubmissionScalarFieldEnum[] | No |
Find zero or more FormSubmission
// Get all FormSubmission
const FormSubmission = await prisma.formSubmission.findMany()
// Get first 10 FormSubmission
const FormSubmission = await prisma.formSubmission.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | FormSubmissionWhereInput | No |
| orderBy | FormSubmissionOrderByWithRelationInput[] | FormSubmissionOrderByWithRelationInput | No |
| cursor | FormSubmissionWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | FormSubmissionScalarFieldEnum | FormSubmissionScalarFieldEnum[] | No |
Create one FormSubmission
// Create one FormSubmission
const FormSubmission = await prisma.formSubmission.create({
data: {
// ... data to create a FormSubmission
}
})
| Name | Type | Required |
|---|---|---|
| data | FormSubmissionCreateInput | FormSubmissionUncheckedCreateInput | Yes |
Delete one FormSubmission
// Delete one FormSubmission
const FormSubmission = await prisma.formSubmission.delete({
where: {
// ... filter to delete one FormSubmission
}
})
| Name | Type | Required |
|---|---|---|
| where | FormSubmissionWhereUniqueInput | Yes |
Update one FormSubmission
// Update one FormSubmission
const formSubmission = await prisma.formSubmission.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | FormSubmissionUpdateInput | FormSubmissionUncheckedUpdateInput | Yes |
| where | FormSubmissionWhereUniqueInput | Yes |
Delete zero or more FormSubmission
// Delete a few FormSubmission
const { count } = await prisma.formSubmission.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | FormSubmissionWhereInput | No |
Update zero or one FormSubmission
const { count } = await prisma.formSubmission.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | FormSubmissionUpdateManyMutationInput | FormSubmissionUncheckedUpdateManyInput | Yes |
| where | FormSubmissionWhereInput | No |
Create or update one FormSubmission
// Update or create a FormSubmission
const formSubmission = await prisma.formSubmission.upsert({
create: {
// ... data to create a FormSubmission
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the FormSubmission we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | FormSubmissionWhereUniqueInput | Yes |
| create | FormSubmissionCreateInput | FormSubmissionUncheckedCreateInput | Yes |
| update | FormSubmissionUpdateInput | FormSubmissionUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| uuid | String |
|
Yes | - |
| name | String |
|
Yes | - |
| description | String |
|
Yes | - |
| fieldType | String |
|
Yes | - |
| conceptId | String |
|
Yes | - |
| concept | Concept |
|
Yes | - |
| creator | String |
|
Yes | - |
| dateCreated | DateTime |
|
Yes | - |
| lastChangedBy | String |
|
Yes | - |
| lastChangedDate | DateTime |
|
Yes | - |
| formList | Form[] |
|
Yes | - |
| fieldAnswerList | FieldAnswer[] |
|
Yes | - |
| fieldOptionList | FieldOption[] |
|
Yes | - |
Find zero or one Field
// Get one Field
const field = await prisma.field.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | FieldWhereUniqueInput | Yes |
Find first Field
// Get one Field
const field = await prisma.field.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | FieldWhereInput | No |
| orderBy | FieldOrderByWithRelationInput[] | FieldOrderByWithRelationInput | No |
| cursor | FieldWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | FieldScalarFieldEnum | FieldScalarFieldEnum[] | No |
Find zero or more Field
// Get all Field
const Field = await prisma.field.findMany()
// Get first 10 Field
const Field = await prisma.field.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | FieldWhereInput | No |
| orderBy | FieldOrderByWithRelationInput[] | FieldOrderByWithRelationInput | No |
| cursor | FieldWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | FieldScalarFieldEnum | FieldScalarFieldEnum[] | No |
Create one Field
// Create one Field
const Field = await prisma.field.create({
data: {
// ... data to create a Field
}
})
| Name | Type | Required |
|---|---|---|
| data | FieldCreateInput | FieldUncheckedCreateInput | Yes |
Delete one Field
// Delete one Field
const Field = await prisma.field.delete({
where: {
// ... filter to delete one Field
}
})
| Name | Type | Required |
|---|---|---|
| where | FieldWhereUniqueInput | Yes |
Update one Field
// Update one Field
const field = await prisma.field.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | FieldUpdateInput | FieldUncheckedUpdateInput | Yes |
| where | FieldWhereUniqueInput | Yes |
Delete zero or more Field
// Delete a few Field
const { count } = await prisma.field.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | FieldWhereInput | No |
Update zero or one Field
const { count } = await prisma.field.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | FieldUpdateManyMutationInput | FieldUncheckedUpdateManyInput | Yes |
| where | FieldWhereInput | No |
Create or update one Field
// Update or create a Field
const field = await prisma.field.upsert({
create: {
// ... data to create a Field
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Field we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | FieldWhereUniqueInput | Yes |
| create | FieldCreateInput | FieldUncheckedCreateInput | Yes |
| update | FieldUpdateInput | FieldUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| uuid | String |
|
Yes | - |
| formSubmissionId | String |
|
Yes | - |
| formSubmission | FormSubmission |
|
Yes | - |
| fieldId | String |
|
Yes | - |
| field | Field |
|
Yes | - |
| value | String |
|
Yes | - |
| creator | String |
|
Yes | - |
| dateCreated | DateTime |
|
Yes | - |
| lastChangedBy | String |
|
Yes | - |
| lastChangedDate | DateTime |
|
Yes | - |
Find zero or one FieldAnswer
// Get one FieldAnswer
const fieldAnswer = await prisma.fieldAnswer.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | FieldAnswerWhereUniqueInput | Yes |
Find first FieldAnswer
// Get one FieldAnswer
const fieldAnswer = await prisma.fieldAnswer.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | FieldAnswerWhereInput | No |
| orderBy | FieldAnswerOrderByWithRelationInput[] | FieldAnswerOrderByWithRelationInput | No |
| cursor | FieldAnswerWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | FieldAnswerScalarFieldEnum | FieldAnswerScalarFieldEnum[] | No |
Find zero or more FieldAnswer
// Get all FieldAnswer
const FieldAnswer = await prisma.fieldAnswer.findMany()
// Get first 10 FieldAnswer
const FieldAnswer = await prisma.fieldAnswer.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | FieldAnswerWhereInput | No |
| orderBy | FieldAnswerOrderByWithRelationInput[] | FieldAnswerOrderByWithRelationInput | No |
| cursor | FieldAnswerWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | FieldAnswerScalarFieldEnum | FieldAnswerScalarFieldEnum[] | No |
Create one FieldAnswer
// Create one FieldAnswer
const FieldAnswer = await prisma.fieldAnswer.create({
data: {
// ... data to create a FieldAnswer
}
})
| Name | Type | Required |
|---|---|---|
| data | FieldAnswerCreateInput | FieldAnswerUncheckedCreateInput | Yes |
Delete one FieldAnswer
// Delete one FieldAnswer
const FieldAnswer = await prisma.fieldAnswer.delete({
where: {
// ... filter to delete one FieldAnswer
}
})
| Name | Type | Required |
|---|---|---|
| where | FieldAnswerWhereUniqueInput | Yes |
Update one FieldAnswer
// Update one FieldAnswer
const fieldAnswer = await prisma.fieldAnswer.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | FieldAnswerUpdateInput | FieldAnswerUncheckedUpdateInput | Yes |
| where | FieldAnswerWhereUniqueInput | Yes |
Delete zero or more FieldAnswer
// Delete a few FieldAnswer
const { count } = await prisma.fieldAnswer.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | FieldAnswerWhereInput | No |
Update zero or one FieldAnswer
const { count } = await prisma.fieldAnswer.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | FieldAnswerUpdateManyMutationInput | FieldAnswerUncheckedUpdateManyInput | Yes |
| where | FieldAnswerWhereInput | No |
Create or update one FieldAnswer
// Update or create a FieldAnswer
const fieldAnswer = await prisma.fieldAnswer.upsert({
create: {
// ... data to create a FieldAnswer
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the FieldAnswer we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | FieldAnswerWhereUniqueInput | Yes |
| create | FieldAnswerCreateInput | FieldAnswerUncheckedCreateInput | Yes |
| update | FieldAnswerUpdateInput | FieldAnswerUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| uuid | String |
|
Yes | - |
| fieldId | String |
|
Yes | - |
| field | Field |
|
Yes | - |
| name | String |
|
Yes | - |
| description | String |
|
Yes | - |
| creator | String |
|
Yes | - |
| dateCreated | DateTime |
|
Yes | - |
| lastChangedBy | String |
|
Yes | - |
| lastChangedDate | DateTime |
|
Yes | - |
Find zero or one FieldOption
// Get one FieldOption
const fieldOption = await prisma.fieldOption.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | FieldOptionWhereUniqueInput | Yes |
Find first FieldOption
// Get one FieldOption
const fieldOption = await prisma.fieldOption.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | FieldOptionWhereInput | No |
| orderBy | FieldOptionOrderByWithRelationInput[] | FieldOptionOrderByWithRelationInput | No |
| cursor | FieldOptionWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | FieldOptionScalarFieldEnum | FieldOptionScalarFieldEnum[] | No |
Find zero or more FieldOption
// Get all FieldOption
const FieldOption = await prisma.fieldOption.findMany()
// Get first 10 FieldOption
const FieldOption = await prisma.fieldOption.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | FieldOptionWhereInput | No |
| orderBy | FieldOptionOrderByWithRelationInput[] | FieldOptionOrderByWithRelationInput | No |
| cursor | FieldOptionWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | FieldOptionScalarFieldEnum | FieldOptionScalarFieldEnum[] | No |
Create one FieldOption
// Create one FieldOption
const FieldOption = await prisma.fieldOption.create({
data: {
// ... data to create a FieldOption
}
})
| Name | Type | Required |
|---|---|---|
| data | FieldOptionCreateInput | FieldOptionUncheckedCreateInput | Yes |
Delete one FieldOption
// Delete one FieldOption
const FieldOption = await prisma.fieldOption.delete({
where: {
// ... filter to delete one FieldOption
}
})
| Name | Type | Required |
|---|---|---|
| where | FieldOptionWhereUniqueInput | Yes |
Update one FieldOption
// Update one FieldOption
const fieldOption = await prisma.fieldOption.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | FieldOptionUpdateInput | FieldOptionUncheckedUpdateInput | Yes |
| where | FieldOptionWhereUniqueInput | Yes |
Delete zero or more FieldOption
// Delete a few FieldOption
const { count } = await prisma.fieldOption.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | FieldOptionWhereInput | No |
Update zero or one FieldOption
const { count } = await prisma.fieldOption.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | FieldOptionUpdateManyMutationInput | FieldOptionUncheckedUpdateManyInput | Yes |
| where | FieldOptionWhereInput | No |
Create or update one FieldOption
// Update or create a FieldOption
const fieldOption = await prisma.fieldOption.upsert({
create: {
// ... data to create a FieldOption
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the FieldOption we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | FieldOptionWhereUniqueInput | Yes |
| create | FieldOptionCreateInput | FieldOptionUncheckedCreateInput | Yes |
| update | FieldOptionUpdateInput | FieldOptionUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| uuid | String |
|
Yes | - |
| encounterType | EncounterType |
|
Yes | - |
| encounterTypeId | String |
|
Yes | - |
| patientId | String |
|
Yes | - |
| patient | Patient |
|
Yes | - |
| locationId | String |
|
Yes | - |
| location | Location |
|
Yes | - |
| formId | String |
|
Yes | - |
| form | Form |
|
Yes | - |
| providerId | String |
|
Yes | - |
| provider | Provider |
|
Yes | - |
| startDatetime | DateTime |
|
Yes | - |
| endDatetime | DateTime |
|
Yes | - |
| voided | Boolean |
|
Yes | - |
| voidedBy | String |
|
Yes | - |
| dateVoided | DateTime |
|
Yes | - |
| voidReason | String |
|
Yes | - |
| creator | String |
|
Yes | - |
| dateCreated | DateTime |
|
Yes | - |
| lastChangedBy | String |
|
Yes | - |
| lastChangedDate | DateTime |
|
Yes | - |
| formEncounterList | FormEncounter[] |
|
Yes | - |
| formSubmissionList | FormSubmission[] |
|
Yes | - |
| obsList | Obs[] |
|
Yes | - |
| orderList | Order[] |
|
Yes | - |
Find zero or one Encounter
// Get one Encounter
const encounter = await prisma.encounter.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | EncounterWhereUniqueInput | Yes |
Find first Encounter
// Get one Encounter
const encounter = await prisma.encounter.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | EncounterWhereInput | No |
| orderBy | EncounterOrderByWithRelationInput[] | EncounterOrderByWithRelationInput | No |
| cursor | EncounterWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | EncounterScalarFieldEnum | EncounterScalarFieldEnum[] | No |
Find zero or more Encounter
// Get all Encounter
const Encounter = await prisma.encounter.findMany()
// Get first 10 Encounter
const Encounter = await prisma.encounter.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | EncounterWhereInput | No |
| orderBy | EncounterOrderByWithRelationInput[] | EncounterOrderByWithRelationInput | No |
| cursor | EncounterWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | EncounterScalarFieldEnum | EncounterScalarFieldEnum[] | No |
Create one Encounter
// Create one Encounter
const Encounter = await prisma.encounter.create({
data: {
// ... data to create a Encounter
}
})
| Name | Type | Required |
|---|---|---|
| data | EncounterCreateInput | EncounterUncheckedCreateInput | Yes |
Delete one Encounter
// Delete one Encounter
const Encounter = await prisma.encounter.delete({
where: {
// ... filter to delete one Encounter
}
})
| Name | Type | Required |
|---|---|---|
| where | EncounterWhereUniqueInput | Yes |
Update one Encounter
// Update one Encounter
const encounter = await prisma.encounter.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | EncounterUpdateInput | EncounterUncheckedUpdateInput | Yes |
| where | EncounterWhereUniqueInput | Yes |
Delete zero or more Encounter
// Delete a few Encounter
const { count } = await prisma.encounter.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | EncounterWhereInput | No |
Update zero or one Encounter
const { count } = await prisma.encounter.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | EncounterUpdateManyMutationInput | EncounterUncheckedUpdateManyInput | Yes |
| where | EncounterWhereInput | No |
Create or update one Encounter
// Update or create a Encounter
const encounter = await prisma.encounter.upsert({
create: {
// ... data to create a Encounter
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Encounter we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | EncounterWhereUniqueInput | Yes |
| create | EncounterCreateInput | EncounterUncheckedCreateInput | Yes |
| update | EncounterUpdateInput | EncounterUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| uuid | String |
|
Yes | - |
| name | String |
|
Yes | - |
| description | String |
|
Yes | - |
| creator | String |
|
Yes | - |
| dateCreated | DateTime |
|
Yes | - |
| lastChangedBy | String |
|
Yes | - |
| lastChangedDate | DateTime |
|
Yes | - |
| encounterList | Encounter[] |
|
Yes | - |
Find zero or one EncounterType
// Get one EncounterType
const encounterType = await prisma.encounterType.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | EncounterTypeWhereUniqueInput | Yes |
Find first EncounterType
// Get one EncounterType
const encounterType = await prisma.encounterType.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | EncounterTypeWhereInput | No |
| orderBy | EncounterTypeOrderByWithRelationInput[] | EncounterTypeOrderByWithRelationInput | No |
| cursor | EncounterTypeWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | EncounterTypeScalarFieldEnum | EncounterTypeScalarFieldEnum[] | No |
Find zero or more EncounterType
// Get all EncounterType
const EncounterType = await prisma.encounterType.findMany()
// Get first 10 EncounterType
const EncounterType = await prisma.encounterType.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | EncounterTypeWhereInput | No |
| orderBy | EncounterTypeOrderByWithRelationInput[] | EncounterTypeOrderByWithRelationInput | No |
| cursor | EncounterTypeWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | EncounterTypeScalarFieldEnum | EncounterTypeScalarFieldEnum[] | No |
Create one EncounterType
// Create one EncounterType
const EncounterType = await prisma.encounterType.create({
data: {
// ... data to create a EncounterType
}
})
| Name | Type | Required |
|---|---|---|
| data | EncounterTypeCreateInput | EncounterTypeUncheckedCreateInput | Yes |
Delete one EncounterType
// Delete one EncounterType
const EncounterType = await prisma.encounterType.delete({
where: {
// ... filter to delete one EncounterType
}
})
| Name | Type | Required |
|---|---|---|
| where | EncounterTypeWhereUniqueInput | Yes |
Update one EncounterType
// Update one EncounterType
const encounterType = await prisma.encounterType.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | EncounterTypeUpdateInput | EncounterTypeUncheckedUpdateInput | Yes |
| where | EncounterTypeWhereUniqueInput | Yes |
Delete zero or more EncounterType
// Delete a few EncounterType
const { count } = await prisma.encounterType.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | EncounterTypeWhereInput | No |
Update zero or one EncounterType
const { count } = await prisma.encounterType.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | EncounterTypeUpdateManyMutationInput | EncounterTypeUncheckedUpdateManyInput | Yes |
| where | EncounterTypeWhereInput | No |
Create or update one EncounterType
// Update or create a EncounterType
const encounterType = await prisma.encounterType.upsert({
create: {
// ... data to create a EncounterType
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the EncounterType we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | EncounterTypeWhereUniqueInput | Yes |
| create | EncounterTypeCreateInput | EncounterTypeUncheckedCreateInput | Yes |
| update | EncounterTypeUpdateInput | EncounterTypeUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| uuid | String |
|
Yes | - |
| conceptId | String |
|
Yes | - |
| concept | Concept |
|
Yes | - |
| encounterId | String |
|
Yes | - |
| encounter | Encounter |
|
Yes | - |
| obsDatetime | DateTime |
|
Yes | - |
| valueDatetime | DateTime |
|
Yes | - |
| valueNumeric | Float |
|
Yes | - |
| valueText | String |
|
Yes | - |
| creator | String |
|
Yes | - |
| dateCreated | DateTime |
|
Yes | - |
| lastChangedBy | String |
|
Yes | - |
| lastChangedDate | DateTime |
|
Yes | - |
Find zero or one Obs
// Get one Obs
const obs = await prisma.obs.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ObsWhereUniqueInput | Yes |
Find first Obs
// Get one Obs
const obs = await prisma.obs.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ObsWhereInput | No |
| orderBy | ObsOrderByWithRelationInput[] | ObsOrderByWithRelationInput | No |
| cursor | ObsWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ObsScalarFieldEnum | ObsScalarFieldEnum[] | No |
Find zero or more Obs
// Get all Obs
const Obs = await prisma.obs.findMany()
// Get first 10 Obs
const Obs = await prisma.obs.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | ObsWhereInput | No |
| orderBy | ObsOrderByWithRelationInput[] | ObsOrderByWithRelationInput | No |
| cursor | ObsWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ObsScalarFieldEnum | ObsScalarFieldEnum[] | No |
Create one Obs
// Create one Obs
const Obs = await prisma.obs.create({
data: {
// ... data to create a Obs
}
})
| Name | Type | Required |
|---|---|---|
| data | ObsCreateInput | ObsUncheckedCreateInput | Yes |
Delete one Obs
// Delete one Obs
const Obs = await prisma.obs.delete({
where: {
// ... filter to delete one Obs
}
})
| Name | Type | Required |
|---|---|---|
| where | ObsWhereUniqueInput | Yes |
Update one Obs
// Update one Obs
const obs = await prisma.obs.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ObsUpdateInput | ObsUncheckedUpdateInput | Yes |
| where | ObsWhereUniqueInput | Yes |
Delete zero or more Obs
// Delete a few Obs
const { count } = await prisma.obs.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ObsWhereInput | No |
Update zero or one Obs
const { count } = await prisma.obs.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ObsUpdateManyMutationInput | ObsUncheckedUpdateManyInput | Yes |
| where | ObsWhereInput | No |
Create or update one Obs
// Update or create a Obs
const obs = await prisma.obs.upsert({
create: {
// ... data to create a Obs
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Obs we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | ObsWhereUniqueInput | Yes |
| create | ObsCreateInput | ObsUncheckedCreateInput | Yes |
| update | ObsUpdateInput | ObsUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| uuid | String |
|
Yes | - |
| conceptId | String |
|
Yes | - |
| concept | Concept |
|
Yes | - |
| encounterId | String |
|
Yes | - |
| encounter | Encounter |
|
Yes | - |
| orderDatetime | DateTime |
|
Yes | - |
| instructions | String |
|
Yes | - |
| dosage | String |
|
Yes | - |
| route | String |
|
Yes | - |
| frequency | String |
|
Yes | - |
| asNeeded | Boolean |
|
Yes | - |
| prn | Boolean |
|
Yes | - |
| quantity | Int |
|
Yes | - |
| units | String |
|
Yes | - |
| creator | String |
|
Yes | - |
| dateCreated | DateTime |
|
Yes | - |
| lastChangedBy | String |
|
Yes | - |
| lastChangedDate | DateTime |
|
Yes | - |
| OrderFrequency | OrderFrequency? |
|
No | - |
| orderFrequencyId | String? |
|
No | - |
| OrderRoute | OrderRoute? |
|
No | - |
| orderRouteId | String? |
|
No | - |
| OrderType | OrderType? |
|
No | - |
| orderTypeId | String? |
|
No | - |
| OrderUnit | OrderUnit? |
|
No | - |
| orderUnitId | String? |
|
No | - |
Find zero or one Order
// Get one Order
const order = await prisma.order.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | OrderWhereUniqueInput | Yes |
Find first Order
// Get one Order
const order = await prisma.order.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | OrderWhereInput | No |
| orderBy | OrderOrderByWithRelationInput[] | OrderOrderByWithRelationInput | No |
| cursor | OrderWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | OrderScalarFieldEnum | OrderScalarFieldEnum[] | No |
Find zero or more Order
// Get all Order
const Order = await prisma.order.findMany()
// Get first 10 Order
const Order = await prisma.order.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | OrderWhereInput | No |
| orderBy | OrderOrderByWithRelationInput[] | OrderOrderByWithRelationInput | No |
| cursor | OrderWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | OrderScalarFieldEnum | OrderScalarFieldEnum[] | No |
Create one Order
// Create one Order
const Order = await prisma.order.create({
data: {
// ... data to create a Order
}
})
| Name | Type | Required |
|---|---|---|
| data | OrderCreateInput | OrderUncheckedCreateInput | Yes |
Delete one Order
// Delete one Order
const Order = await prisma.order.delete({
where: {
// ... filter to delete one Order
}
})
| Name | Type | Required |
|---|---|---|
| where | OrderWhereUniqueInput | Yes |
Update one Order
// Update one Order
const order = await prisma.order.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | OrderUpdateInput | OrderUncheckedUpdateInput | Yes |
| where | OrderWhereUniqueInput | Yes |
Delete zero or more Order
// Delete a few Order
const { count } = await prisma.order.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | OrderWhereInput | No |
Update zero or one Order
const { count } = await prisma.order.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | OrderUpdateManyMutationInput | OrderUncheckedUpdateManyInput | Yes |
| where | OrderWhereInput | No |
Create or update one Order
// Update or create a Order
const order = await prisma.order.upsert({
create: {
// ... data to create a Order
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Order we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | OrderWhereUniqueInput | Yes |
| create | OrderCreateInput | OrderUncheckedCreateInput | Yes |
| update | OrderUpdateInput | OrderUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| uuid | String |
|
Yes | - |
| name | String |
|
Yes | - |
| description | String |
|
Yes | - |
| creator | String |
|
Yes | - |
| dateCreated | DateTime |
|
Yes | - |
| lastChangedBy | String |
|
Yes | - |
| lastChangedDate | DateTime |
|
Yes | - |
| orderList | Order[] |
|
Yes | - |
Find zero or one OrderFrequency
// Get one OrderFrequency
const orderFrequency = await prisma.orderFrequency.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | OrderFrequencyWhereUniqueInput | Yes |
Find first OrderFrequency
// Get one OrderFrequency
const orderFrequency = await prisma.orderFrequency.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | OrderFrequencyWhereInput | No |
| orderBy | OrderFrequencyOrderByWithRelationInput[] | OrderFrequencyOrderByWithRelationInput | No |
| cursor | OrderFrequencyWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | OrderFrequencyScalarFieldEnum | OrderFrequencyScalarFieldEnum[] | No |
Find zero or more OrderFrequency
// Get all OrderFrequency
const OrderFrequency = await prisma.orderFrequency.findMany()
// Get first 10 OrderFrequency
const OrderFrequency = await prisma.orderFrequency.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | OrderFrequencyWhereInput | No |
| orderBy | OrderFrequencyOrderByWithRelationInput[] | OrderFrequencyOrderByWithRelationInput | No |
| cursor | OrderFrequencyWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | OrderFrequencyScalarFieldEnum | OrderFrequencyScalarFieldEnum[] | No |
Create one OrderFrequency
// Create one OrderFrequency
const OrderFrequency = await prisma.orderFrequency.create({
data: {
// ... data to create a OrderFrequency
}
})
| Name | Type | Required |
|---|---|---|
| data | OrderFrequencyCreateInput | OrderFrequencyUncheckedCreateInput | Yes |
Delete one OrderFrequency
// Delete one OrderFrequency
const OrderFrequency = await prisma.orderFrequency.delete({
where: {
// ... filter to delete one OrderFrequency
}
})
| Name | Type | Required |
|---|---|---|
| where | OrderFrequencyWhereUniqueInput | Yes |
Update one OrderFrequency
// Update one OrderFrequency
const orderFrequency = await prisma.orderFrequency.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | OrderFrequencyUpdateInput | OrderFrequencyUncheckedUpdateInput | Yes |
| where | OrderFrequencyWhereUniqueInput | Yes |
Delete zero or more OrderFrequency
// Delete a few OrderFrequency
const { count } = await prisma.orderFrequency.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | OrderFrequencyWhereInput | No |
Update zero or one OrderFrequency
const { count } = await prisma.orderFrequency.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | OrderFrequencyUpdateManyMutationInput | OrderFrequencyUncheckedUpdateManyInput | Yes |
| where | OrderFrequencyWhereInput | No |
Create or update one OrderFrequency
// Update or create a OrderFrequency
const orderFrequency = await prisma.orderFrequency.upsert({
create: {
// ... data to create a OrderFrequency
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the OrderFrequency we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | OrderFrequencyWhereUniqueInput | Yes |
| create | OrderFrequencyCreateInput | OrderFrequencyUncheckedCreateInput | Yes |
| update | OrderFrequencyUpdateInput | OrderFrequencyUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| uuid | String |
|
Yes | - |
| name | String |
|
Yes | - |
| description | String |
|
Yes | - |
| creator | String |
|
Yes | - |
| dateCreated | DateTime |
|
Yes | - |
| lastChangedBy | String |
|
Yes | - |
| lastChangedDate | DateTime |
|
Yes | - |
| orderList | Order[] |
|
Yes | - |
Find zero or one OrderRoute
// Get one OrderRoute
const orderRoute = await prisma.orderRoute.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | OrderRouteWhereUniqueInput | Yes |
Find first OrderRoute
// Get one OrderRoute
const orderRoute = await prisma.orderRoute.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | OrderRouteWhereInput | No |
| orderBy | OrderRouteOrderByWithRelationInput[] | OrderRouteOrderByWithRelationInput | No |
| cursor | OrderRouteWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | OrderRouteScalarFieldEnum | OrderRouteScalarFieldEnum[] | No |
Find zero or more OrderRoute
// Get all OrderRoute
const OrderRoute = await prisma.orderRoute.findMany()
// Get first 10 OrderRoute
const OrderRoute = await prisma.orderRoute.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | OrderRouteWhereInput | No |
| orderBy | OrderRouteOrderByWithRelationInput[] | OrderRouteOrderByWithRelationInput | No |
| cursor | OrderRouteWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | OrderRouteScalarFieldEnum | OrderRouteScalarFieldEnum[] | No |
Create one OrderRoute
// Create one OrderRoute
const OrderRoute = await prisma.orderRoute.create({
data: {
// ... data to create a OrderRoute
}
})
| Name | Type | Required |
|---|---|---|
| data | OrderRouteCreateInput | OrderRouteUncheckedCreateInput | Yes |
Delete one OrderRoute
// Delete one OrderRoute
const OrderRoute = await prisma.orderRoute.delete({
where: {
// ... filter to delete one OrderRoute
}
})
| Name | Type | Required |
|---|---|---|
| where | OrderRouteWhereUniqueInput | Yes |
Update one OrderRoute
// Update one OrderRoute
const orderRoute = await prisma.orderRoute.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | OrderRouteUpdateInput | OrderRouteUncheckedUpdateInput | Yes |
| where | OrderRouteWhereUniqueInput | Yes |
Delete zero or more OrderRoute
// Delete a few OrderRoute
const { count } = await prisma.orderRoute.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | OrderRouteWhereInput | No |
Update zero or one OrderRoute
const { count } = await prisma.orderRoute.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | OrderRouteUpdateManyMutationInput | OrderRouteUncheckedUpdateManyInput | Yes |
| where | OrderRouteWhereInput | No |
Create or update one OrderRoute
// Update or create a OrderRoute
const orderRoute = await prisma.orderRoute.upsert({
create: {
// ... data to create a OrderRoute
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the OrderRoute we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | OrderRouteWhereUniqueInput | Yes |
| create | OrderRouteCreateInput | OrderRouteUncheckedCreateInput | Yes |
| update | OrderRouteUpdateInput | OrderRouteUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| uuid | String |
|
Yes | - |
| name | String |
|
Yes | - |
| description | String |
|
Yes | - |
| creator | String |
|
Yes | - |
| dateCreated | DateTime |
|
Yes | - |
| lastChangedBy | String |
|
Yes | - |
| lastChangedDate | DateTime |
|
Yes | - |
| orderList | Order[] |
|
Yes | - |
Find zero or one OrderType
// Get one OrderType
const orderType = await prisma.orderType.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | OrderTypeWhereUniqueInput | Yes |
Find first OrderType
// Get one OrderType
const orderType = await prisma.orderType.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | OrderTypeWhereInput | No |
| orderBy | OrderTypeOrderByWithRelationInput[] | OrderTypeOrderByWithRelationInput | No |
| cursor | OrderTypeWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | OrderTypeScalarFieldEnum | OrderTypeScalarFieldEnum[] | No |
Find zero or more OrderType
// Get all OrderType
const OrderType = await prisma.orderType.findMany()
// Get first 10 OrderType
const OrderType = await prisma.orderType.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | OrderTypeWhereInput | No |
| orderBy | OrderTypeOrderByWithRelationInput[] | OrderTypeOrderByWithRelationInput | No |
| cursor | OrderTypeWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | OrderTypeScalarFieldEnum | OrderTypeScalarFieldEnum[] | No |
Create one OrderType
// Create one OrderType
const OrderType = await prisma.orderType.create({
data: {
// ... data to create a OrderType
}
})
| Name | Type | Required |
|---|---|---|
| data | OrderTypeCreateInput | OrderTypeUncheckedCreateInput | Yes |
Delete one OrderType
// Delete one OrderType
const OrderType = await prisma.orderType.delete({
where: {
// ... filter to delete one OrderType
}
})
| Name | Type | Required |
|---|---|---|
| where | OrderTypeWhereUniqueInput | Yes |
Update one OrderType
// Update one OrderType
const orderType = await prisma.orderType.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | OrderTypeUpdateInput | OrderTypeUncheckedUpdateInput | Yes |
| where | OrderTypeWhereUniqueInput | Yes |
Delete zero or more OrderType
// Delete a few OrderType
const { count } = await prisma.orderType.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | OrderTypeWhereInput | No |
Update zero or one OrderType
const { count } = await prisma.orderType.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | OrderTypeUpdateManyMutationInput | OrderTypeUncheckedUpdateManyInput | Yes |
| where | OrderTypeWhereInput | No |
Create or update one OrderType
// Update or create a OrderType
const orderType = await prisma.orderType.upsert({
create: {
// ... data to create a OrderType
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the OrderType we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | OrderTypeWhereUniqueInput | Yes |
| create | OrderTypeCreateInput | OrderTypeUncheckedCreateInput | Yes |
| update | OrderTypeUpdateInput | OrderTypeUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| uuid | String |
|
Yes | - |
| name | String |
|
Yes | - |
| description | String |
|
Yes | - |
| creator | String |
|
Yes | - |
| dateCreated | DateTime |
|
Yes | - |
| lastChangedBy | String |
|
Yes | - |
| lastChangedDate | DateTime |
|
Yes | - |
| orderList | Order[] |
|
Yes | - |
Find zero or one OrderUnit
// Get one OrderUnit
const orderUnit = await prisma.orderUnit.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | OrderUnitWhereUniqueInput | Yes |
Find first OrderUnit
// Get one OrderUnit
const orderUnit = await prisma.orderUnit.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | OrderUnitWhereInput | No |
| orderBy | OrderUnitOrderByWithRelationInput[] | OrderUnitOrderByWithRelationInput | No |
| cursor | OrderUnitWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | OrderUnitScalarFieldEnum | OrderUnitScalarFieldEnum[] | No |
Find zero or more OrderUnit
// Get all OrderUnit
const OrderUnit = await prisma.orderUnit.findMany()
// Get first 10 OrderUnit
const OrderUnit = await prisma.orderUnit.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | OrderUnitWhereInput | No |
| orderBy | OrderUnitOrderByWithRelationInput[] | OrderUnitOrderByWithRelationInput | No |
| cursor | OrderUnitWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | OrderUnitScalarFieldEnum | OrderUnitScalarFieldEnum[] | No |
Create one OrderUnit
// Create one OrderUnit
const OrderUnit = await prisma.orderUnit.create({
data: {
// ... data to create a OrderUnit
}
})
| Name | Type | Required |
|---|---|---|
| data | OrderUnitCreateInput | OrderUnitUncheckedCreateInput | Yes |
Delete one OrderUnit
// Delete one OrderUnit
const OrderUnit = await prisma.orderUnit.delete({
where: {
// ... filter to delete one OrderUnit
}
})
| Name | Type | Required |
|---|---|---|
| where | OrderUnitWhereUniqueInput | Yes |
Update one OrderUnit
// Update one OrderUnit
const orderUnit = await prisma.orderUnit.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | OrderUnitUpdateInput | OrderUnitUncheckedUpdateInput | Yes |
| where | OrderUnitWhereUniqueInput | Yes |
Delete zero or more OrderUnit
// Delete a few OrderUnit
const { count } = await prisma.orderUnit.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | OrderUnitWhereInput | No |
Update zero or one OrderUnit
const { count } = await prisma.orderUnit.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | OrderUnitUpdateManyMutationInput | OrderUnitUncheckedUpdateManyInput | Yes |
| where | OrderUnitWhereInput | No |
Create or update one OrderUnit
// Update or create a OrderUnit
const orderUnit = await prisma.orderUnit.upsert({
create: {
// ... data to create a OrderUnit
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the OrderUnit we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | OrderUnitWhereUniqueInput | Yes |
| create | OrderUnitCreateInput | OrderUnitUncheckedCreateInput | Yes |
| update | OrderUnitUpdateInput | OrderUnitUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| uuid | String |
|
Yes | - |
| name | String |
|
Yes | - |
| description | String |
|
Yes | - |
| dataType | String |
|
Yes | - |
| class | String |
|
Yes | - |
| isRetired | Boolean |
|
Yes | - |
| retiredBy | String |
|
Yes | - |
| dateRetired | DateTime |
|
Yes | - |
| retiredReason | String |
|
Yes | - |
| creator | String |
|
Yes | - |
| dateCreated | DateTime |
|
Yes | - |
| lastChangedBy | String |
|
Yes | - |
| lastChangedDate | DateTime |
|
Yes | - |
| metaList | ConceptAnswer[] |
|
Yes | - |
| answerList | ConceptAnswer[] |
|
Yes | - |
| fieldList | Field[] |
|
Yes | - |
| obsList | Obs[] |
|
Yes | - |
| orderList | Order[] |
|
Yes | - |
| ConceptClass | ConceptClass? |
|
No | - |
| conceptClassId | String? |
|
No | - |
| ConceptDatatype | ConceptDatatype? |
|
No | - |
| conceptDatatypeId | String? |
|
No | - |
| conceptMap | ConceptMap? |
|
No | - |
| conceptMapId | String? |
|
No | - |
| conceptNameList | ConceptName[] |
|
Yes | - |
| conceptNumericList | ConceptNumeric[] |
|
Yes | - |
| conceptProposalList | ConceptProposal[] |
|
Yes | - |
| conceptSet | ConceptSet? |
|
No | - |
| conceptSetId | String? |
|
No | - |
| conceptSource | ConceptSource? |
|
No | - |
| conceptSourceId | String? |
|
No | - |
| conceptWordList | ConceptWord[] |
|
Yes | - |
Find zero or one Concept
// Get one Concept
const concept = await prisma.concept.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ConceptWhereUniqueInput | Yes |
Find first Concept
// Get one Concept
const concept = await prisma.concept.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ConceptWhereInput | No |
| orderBy | ConceptOrderByWithRelationInput[] | ConceptOrderByWithRelationInput | No |
| cursor | ConceptWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ConceptScalarFieldEnum | ConceptScalarFieldEnum[] | No |
Find zero or more Concept
// Get all Concept
const Concept = await prisma.concept.findMany()
// Get first 10 Concept
const Concept = await prisma.concept.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | ConceptWhereInput | No |
| orderBy | ConceptOrderByWithRelationInput[] | ConceptOrderByWithRelationInput | No |
| cursor | ConceptWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ConceptScalarFieldEnum | ConceptScalarFieldEnum[] | No |
Create one Concept
// Create one Concept
const Concept = await prisma.concept.create({
data: {
// ... data to create a Concept
}
})
| Name | Type | Required |
|---|---|---|
| data | ConceptCreateInput | ConceptUncheckedCreateInput | Yes |
Delete one Concept
// Delete one Concept
const Concept = await prisma.concept.delete({
where: {
// ... filter to delete one Concept
}
})
| Name | Type | Required |
|---|---|---|
| where | ConceptWhereUniqueInput | Yes |
Update one Concept
// Update one Concept
const concept = await prisma.concept.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ConceptUpdateInput | ConceptUncheckedUpdateInput | Yes |
| where | ConceptWhereUniqueInput | Yes |
Delete zero or more Concept
// Delete a few Concept
const { count } = await prisma.concept.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ConceptWhereInput | No |
Update zero or one Concept
const { count } = await prisma.concept.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ConceptUpdateManyMutationInput | ConceptUncheckedUpdateManyInput | Yes |
| where | ConceptWhereInput | No |
Create or update one Concept
// Update or create a Concept
const concept = await prisma.concept.upsert({
create: {
// ... data to create a Concept
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Concept we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | ConceptWhereUniqueInput | Yes |
| create | ConceptCreateInput | ConceptUncheckedCreateInput | Yes |
| update | ConceptUpdateInput | ConceptUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| uuid | String |
|
Yes | - |
| conceptId | String |
|
Yes | - |
| concept | Concept |
|
Yes | - |
| answerConceptId | String |
|
Yes | - |
| answerConcept | Concept |
|
Yes | - |
| creator | String |
|
Yes | - |
| dateCreated | DateTime |
|
Yes | - |
| lastChangedBy | String |
|
Yes | - |
| lastChangedDate | DateTime |
|
Yes | - |
Find zero or one ConceptAnswer
// Get one ConceptAnswer
const conceptAnswer = await prisma.conceptAnswer.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ConceptAnswerWhereUniqueInput | Yes |
Find first ConceptAnswer
// Get one ConceptAnswer
const conceptAnswer = await prisma.conceptAnswer.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ConceptAnswerWhereInput | No |
| orderBy | ConceptAnswerOrderByWithRelationInput[] | ConceptAnswerOrderByWithRelationInput | No |
| cursor | ConceptAnswerWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ConceptAnswerScalarFieldEnum | ConceptAnswerScalarFieldEnum[] | No |
Find zero or more ConceptAnswer
// Get all ConceptAnswer
const ConceptAnswer = await prisma.conceptAnswer.findMany()
// Get first 10 ConceptAnswer
const ConceptAnswer = await prisma.conceptAnswer.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | ConceptAnswerWhereInput | No |
| orderBy | ConceptAnswerOrderByWithRelationInput[] | ConceptAnswerOrderByWithRelationInput | No |
| cursor | ConceptAnswerWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ConceptAnswerScalarFieldEnum | ConceptAnswerScalarFieldEnum[] | No |
Create one ConceptAnswer
// Create one ConceptAnswer
const ConceptAnswer = await prisma.conceptAnswer.create({
data: {
// ... data to create a ConceptAnswer
}
})
| Name | Type | Required |
|---|---|---|
| data | ConceptAnswerCreateInput | ConceptAnswerUncheckedCreateInput | Yes |
Delete one ConceptAnswer
// Delete one ConceptAnswer
const ConceptAnswer = await prisma.conceptAnswer.delete({
where: {
// ... filter to delete one ConceptAnswer
}
})
| Name | Type | Required |
|---|---|---|
| where | ConceptAnswerWhereUniqueInput | Yes |
Update one ConceptAnswer
// Update one ConceptAnswer
const conceptAnswer = await prisma.conceptAnswer.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ConceptAnswerUpdateInput | ConceptAnswerUncheckedUpdateInput | Yes |
| where | ConceptAnswerWhereUniqueInput | Yes |
Delete zero or more ConceptAnswer
// Delete a few ConceptAnswer
const { count } = await prisma.conceptAnswer.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ConceptAnswerWhereInput | No |
Update zero or one ConceptAnswer
const { count } = await prisma.conceptAnswer.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ConceptAnswerUpdateManyMutationInput | ConceptAnswerUncheckedUpdateManyInput | Yes |
| where | ConceptAnswerWhereInput | No |
Create or update one ConceptAnswer
// Update or create a ConceptAnswer
const conceptAnswer = await prisma.conceptAnswer.upsert({
create: {
// ... data to create a ConceptAnswer
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the ConceptAnswer we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | ConceptAnswerWhereUniqueInput | Yes |
| create | ConceptAnswerCreateInput | ConceptAnswerUncheckedCreateInput | Yes |
| update | ConceptAnswerUpdateInput | ConceptAnswerUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| uuid | String |
|
Yes | - |
| name | String |
|
Yes | - |
| description | String |
|
Yes | - |
| creator | String |
|
Yes | - |
| dateCreated | DateTime |
|
Yes | - |
| lastChangedBy | String |
|
Yes | - |
| lastChangedDate | DateTime |
|
Yes | - |
| conceptList | Concept[] |
|
Yes | - |
Find zero or one ConceptClass
// Get one ConceptClass
const conceptClass = await prisma.conceptClass.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ConceptClassWhereUniqueInput | Yes |
Find first ConceptClass
// Get one ConceptClass
const conceptClass = await prisma.conceptClass.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ConceptClassWhereInput | No |
| orderBy | ConceptClassOrderByWithRelationInput[] | ConceptClassOrderByWithRelationInput | No |
| cursor | ConceptClassWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ConceptClassScalarFieldEnum | ConceptClassScalarFieldEnum[] | No |
Find zero or more ConceptClass
// Get all ConceptClass
const ConceptClass = await prisma.conceptClass.findMany()
// Get first 10 ConceptClass
const ConceptClass = await prisma.conceptClass.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | ConceptClassWhereInput | No |
| orderBy | ConceptClassOrderByWithRelationInput[] | ConceptClassOrderByWithRelationInput | No |
| cursor | ConceptClassWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ConceptClassScalarFieldEnum | ConceptClassScalarFieldEnum[] | No |
Create one ConceptClass
// Create one ConceptClass
const ConceptClass = await prisma.conceptClass.create({
data: {
// ... data to create a ConceptClass
}
})
| Name | Type | Required |
|---|---|---|
| data | ConceptClassCreateInput | ConceptClassUncheckedCreateInput | Yes |
Delete one ConceptClass
// Delete one ConceptClass
const ConceptClass = await prisma.conceptClass.delete({
where: {
// ... filter to delete one ConceptClass
}
})
| Name | Type | Required |
|---|---|---|
| where | ConceptClassWhereUniqueInput | Yes |
Update one ConceptClass
// Update one ConceptClass
const conceptClass = await prisma.conceptClass.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ConceptClassUpdateInput | ConceptClassUncheckedUpdateInput | Yes |
| where | ConceptClassWhereUniqueInput | Yes |
Delete zero or more ConceptClass
// Delete a few ConceptClass
const { count } = await prisma.conceptClass.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ConceptClassWhereInput | No |
Update zero or one ConceptClass
const { count } = await prisma.conceptClass.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ConceptClassUpdateManyMutationInput | ConceptClassUncheckedUpdateManyInput | Yes |
| where | ConceptClassWhereInput | No |
Create or update one ConceptClass
// Update or create a ConceptClass
const conceptClass = await prisma.conceptClass.upsert({
create: {
// ... data to create a ConceptClass
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the ConceptClass we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | ConceptClassWhereUniqueInput | Yes |
| create | ConceptClassCreateInput | ConceptClassUncheckedCreateInput | Yes |
| update | ConceptClassUpdateInput | ConceptClassUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| uuid | String |
|
Yes | - |
| name | String |
|
Yes | - |
| description | String |
|
Yes | - |
| creator | String |
|
Yes | - |
| dateCreated | DateTime |
|
Yes | - |
| lastChangedBy | String |
|
Yes | - |
| lastChangedDate | DateTime |
|
Yes | - |
| conceptList | Concept[] |
|
Yes | - |
Find zero or one ConceptDatatype
// Get one ConceptDatatype
const conceptDatatype = await prisma.conceptDatatype.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ConceptDatatypeWhereUniqueInput | Yes |
Find first ConceptDatatype
// Get one ConceptDatatype
const conceptDatatype = await prisma.conceptDatatype.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ConceptDatatypeWhereInput | No |
| orderBy | ConceptDatatypeOrderByWithRelationInput[] | ConceptDatatypeOrderByWithRelationInput | No |
| cursor | ConceptDatatypeWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ConceptDatatypeScalarFieldEnum | ConceptDatatypeScalarFieldEnum[] | No |
Find zero or more ConceptDatatype
// Get all ConceptDatatype
const ConceptDatatype = await prisma.conceptDatatype.findMany()
// Get first 10 ConceptDatatype
const ConceptDatatype = await prisma.conceptDatatype.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | ConceptDatatypeWhereInput | No |
| orderBy | ConceptDatatypeOrderByWithRelationInput[] | ConceptDatatypeOrderByWithRelationInput | No |
| cursor | ConceptDatatypeWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ConceptDatatypeScalarFieldEnum | ConceptDatatypeScalarFieldEnum[] | No |
Create one ConceptDatatype
// Create one ConceptDatatype
const ConceptDatatype = await prisma.conceptDatatype.create({
data: {
// ... data to create a ConceptDatatype
}
})
| Name | Type | Required |
|---|---|---|
| data | ConceptDatatypeCreateInput | ConceptDatatypeUncheckedCreateInput | Yes |
Delete one ConceptDatatype
// Delete one ConceptDatatype
const ConceptDatatype = await prisma.conceptDatatype.delete({
where: {
// ... filter to delete one ConceptDatatype
}
})
| Name | Type | Required |
|---|---|---|
| where | ConceptDatatypeWhereUniqueInput | Yes |
Update one ConceptDatatype
// Update one ConceptDatatype
const conceptDatatype = await prisma.conceptDatatype.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ConceptDatatypeUpdateInput | ConceptDatatypeUncheckedUpdateInput | Yes |
| where | ConceptDatatypeWhereUniqueInput | Yes |
Delete zero or more ConceptDatatype
// Delete a few ConceptDatatype
const { count } = await prisma.conceptDatatype.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ConceptDatatypeWhereInput | No |
Update zero or one ConceptDatatype
const { count } = await prisma.conceptDatatype.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ConceptDatatypeUpdateManyMutationInput | ConceptDatatypeUncheckedUpdateManyInput | Yes |
| where | ConceptDatatypeWhereInput | No |
Create or update one ConceptDatatype
// Update or create a ConceptDatatype
const conceptDatatype = await prisma.conceptDatatype.upsert({
create: {
// ... data to create a ConceptDatatype
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the ConceptDatatype we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | ConceptDatatypeWhereUniqueInput | Yes |
| create | ConceptDatatypeCreateInput | ConceptDatatypeUncheckedCreateInput | Yes |
| update | ConceptDatatypeUpdateInput | ConceptDatatypeUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| uuid | String |
|
Yes | - |
| name | String |
|
Yes | - |
| description | String |
|
Yes | - |
| creator | String |
|
Yes | - |
| dateCreated | DateTime |
|
Yes | - |
| lastChangedBy | String |
|
Yes | - |
| lastChangedDate | DateTime |
|
Yes | - |
| conceptList | Concept[] |
|
Yes | - |
Find zero or one ConceptMap
// Get one ConceptMap
const conceptMap = await prisma.conceptMap.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ConceptMapWhereUniqueInput | Yes |
Find first ConceptMap
// Get one ConceptMap
const conceptMap = await prisma.conceptMap.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ConceptMapWhereInput | No |
| orderBy | ConceptMapOrderByWithRelationInput[] | ConceptMapOrderByWithRelationInput | No |
| cursor | ConceptMapWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ConceptMapScalarFieldEnum | ConceptMapScalarFieldEnum[] | No |
Find zero or more ConceptMap
// Get all ConceptMap
const ConceptMap = await prisma.conceptMap.findMany()
// Get first 10 ConceptMap
const ConceptMap = await prisma.conceptMap.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | ConceptMapWhereInput | No |
| orderBy | ConceptMapOrderByWithRelationInput[] | ConceptMapOrderByWithRelationInput | No |
| cursor | ConceptMapWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ConceptMapScalarFieldEnum | ConceptMapScalarFieldEnum[] | No |
Create one ConceptMap
// Create one ConceptMap
const ConceptMap = await prisma.conceptMap.create({
data: {
// ... data to create a ConceptMap
}
})
| Name | Type | Required |
|---|---|---|
| data | ConceptMapCreateInput | ConceptMapUncheckedCreateInput | Yes |
Delete one ConceptMap
// Delete one ConceptMap
const ConceptMap = await prisma.conceptMap.delete({
where: {
// ... filter to delete one ConceptMap
}
})
| Name | Type | Required |
|---|---|---|
| where | ConceptMapWhereUniqueInput | Yes |
Update one ConceptMap
// Update one ConceptMap
const conceptMap = await prisma.conceptMap.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ConceptMapUpdateInput | ConceptMapUncheckedUpdateInput | Yes |
| where | ConceptMapWhereUniqueInput | Yes |
Delete zero or more ConceptMap
// Delete a few ConceptMap
const { count } = await prisma.conceptMap.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ConceptMapWhereInput | No |
Update zero or one ConceptMap
const { count } = await prisma.conceptMap.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ConceptMapUpdateManyMutationInput | ConceptMapUncheckedUpdateManyInput | Yes |
| where | ConceptMapWhereInput | No |
Create or update one ConceptMap
// Update or create a ConceptMap
const conceptMap = await prisma.conceptMap.upsert({
create: {
// ... data to create a ConceptMap
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the ConceptMap we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | ConceptMapWhereUniqueInput | Yes |
| create | ConceptMapCreateInput | ConceptMapUncheckedCreateInput | Yes |
| update | ConceptMapUpdateInput | ConceptMapUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| uuid | String |
|
Yes | - |
| conceptId | String |
|
Yes | - |
| concept | Concept |
|
Yes | - |
| name | String |
|
Yes | - |
| locale | String |
|
Yes | - |
| creator | String |
|
Yes | - |
| dateCreated | DateTime |
|
Yes | - |
| lastChangedBy | String |
|
Yes | - |
| lastChangedDate | DateTime |
|
Yes | - |
Find zero or one ConceptName
// Get one ConceptName
const conceptName = await prisma.conceptName.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ConceptNameWhereUniqueInput | Yes |
Find first ConceptName
// Get one ConceptName
const conceptName = await prisma.conceptName.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ConceptNameWhereInput | No |
| orderBy | ConceptNameOrderByWithRelationInput[] | ConceptNameOrderByWithRelationInput | No |
| cursor | ConceptNameWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ConceptNameScalarFieldEnum | ConceptNameScalarFieldEnum[] | No |
Find zero or more ConceptName
// Get all ConceptName
const ConceptName = await prisma.conceptName.findMany()
// Get first 10 ConceptName
const ConceptName = await prisma.conceptName.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | ConceptNameWhereInput | No |
| orderBy | ConceptNameOrderByWithRelationInput[] | ConceptNameOrderByWithRelationInput | No |
| cursor | ConceptNameWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ConceptNameScalarFieldEnum | ConceptNameScalarFieldEnum[] | No |
Create one ConceptName
// Create one ConceptName
const ConceptName = await prisma.conceptName.create({
data: {
// ... data to create a ConceptName
}
})
| Name | Type | Required |
|---|---|---|
| data | ConceptNameCreateInput | ConceptNameUncheckedCreateInput | Yes |
Delete one ConceptName
// Delete one ConceptName
const ConceptName = await prisma.conceptName.delete({
where: {
// ... filter to delete one ConceptName
}
})
| Name | Type | Required |
|---|---|---|
| where | ConceptNameWhereUniqueInput | Yes |
Update one ConceptName
// Update one ConceptName
const conceptName = await prisma.conceptName.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ConceptNameUpdateInput | ConceptNameUncheckedUpdateInput | Yes |
| where | ConceptNameWhereUniqueInput | Yes |
Delete zero or more ConceptName
// Delete a few ConceptName
const { count } = await prisma.conceptName.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ConceptNameWhereInput | No |
Update zero or one ConceptName
const { count } = await prisma.conceptName.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ConceptNameUpdateManyMutationInput | ConceptNameUncheckedUpdateManyInput | Yes |
| where | ConceptNameWhereInput | No |
Create or update one ConceptName
// Update or create a ConceptName
const conceptName = await prisma.conceptName.upsert({
create: {
// ... data to create a ConceptName
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the ConceptName we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | ConceptNameWhereUniqueInput | Yes |
| create | ConceptNameCreateInput | ConceptNameUncheckedCreateInput | Yes |
| update | ConceptNameUpdateInput | ConceptNameUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| uuid | String |
|
Yes | - |
| conceptId | String |
|
Yes | - |
| concept | Concept |
|
Yes | - |
| hiAbsolute | Float |
|
Yes | - |
| hiCritical | Float |
|
Yes | - |
| hiNormal | Float |
|
Yes | - |
| lowAbsolute | Float |
|
Yes | - |
| lowCritical | Float |
|
Yes | - |
| lowNormal | Float |
|
Yes | - |
| units | String |
|
Yes | - |
| creator | String |
|
Yes | - |
| dateCreated | DateTime |
|
Yes | - |
| lastChangedBy | String |
|
Yes | - |
| lastChangedDate | DateTime |
|
Yes | - |
Find zero or one ConceptNumeric
// Get one ConceptNumeric
const conceptNumeric = await prisma.conceptNumeric.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ConceptNumericWhereUniqueInput | Yes |
Find first ConceptNumeric
// Get one ConceptNumeric
const conceptNumeric = await prisma.conceptNumeric.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ConceptNumericWhereInput | No |
| orderBy | ConceptNumericOrderByWithRelationInput[] | ConceptNumericOrderByWithRelationInput | No |
| cursor | ConceptNumericWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ConceptNumericScalarFieldEnum | ConceptNumericScalarFieldEnum[] | No |
Find zero or more ConceptNumeric
// Get all ConceptNumeric
const ConceptNumeric = await prisma.conceptNumeric.findMany()
// Get first 10 ConceptNumeric
const ConceptNumeric = await prisma.conceptNumeric.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | ConceptNumericWhereInput | No |
| orderBy | ConceptNumericOrderByWithRelationInput[] | ConceptNumericOrderByWithRelationInput | No |
| cursor | ConceptNumericWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ConceptNumericScalarFieldEnum | ConceptNumericScalarFieldEnum[] | No |
Create one ConceptNumeric
// Create one ConceptNumeric
const ConceptNumeric = await prisma.conceptNumeric.create({
data: {
// ... data to create a ConceptNumeric
}
})
| Name | Type | Required |
|---|---|---|
| data | ConceptNumericCreateInput | ConceptNumericUncheckedCreateInput | Yes |
Delete one ConceptNumeric
// Delete one ConceptNumeric
const ConceptNumeric = await prisma.conceptNumeric.delete({
where: {
// ... filter to delete one ConceptNumeric
}
})
| Name | Type | Required |
|---|---|---|
| where | ConceptNumericWhereUniqueInput | Yes |
Update one ConceptNumeric
// Update one ConceptNumeric
const conceptNumeric = await prisma.conceptNumeric.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ConceptNumericUpdateInput | ConceptNumericUncheckedUpdateInput | Yes |
| where | ConceptNumericWhereUniqueInput | Yes |
Delete zero or more ConceptNumeric
// Delete a few ConceptNumeric
const { count } = await prisma.conceptNumeric.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ConceptNumericWhereInput | No |
Update zero or one ConceptNumeric
const { count } = await prisma.conceptNumeric.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ConceptNumericUpdateManyMutationInput | ConceptNumericUncheckedUpdateManyInput | Yes |
| where | ConceptNumericWhereInput | No |
Create or update one ConceptNumeric
// Update or create a ConceptNumeric
const conceptNumeric = await prisma.conceptNumeric.upsert({
create: {
// ... data to create a ConceptNumeric
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the ConceptNumeric we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | ConceptNumericWhereUniqueInput | Yes |
| create | ConceptNumericCreateInput | ConceptNumericUncheckedCreateInput | Yes |
| update | ConceptNumericUpdateInput | ConceptNumericUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| uuid | String |
|
Yes | - |
| conceptId | String |
|
Yes | - |
| concept | Concept |
|
Yes | - |
| name | String |
|
Yes | - |
| description | String |
|
Yes | - |
| creator | String |
|
Yes | - |
| dateCreated | DateTime |
|
Yes | - |
| lastChangedBy | String |
|
Yes | - |
| lastChangedDate | DateTime |
|
Yes | - |
Find zero or one ConceptProposal
// Get one ConceptProposal
const conceptProposal = await prisma.conceptProposal.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ConceptProposalWhereUniqueInput | Yes |
Find first ConceptProposal
// Get one ConceptProposal
const conceptProposal = await prisma.conceptProposal.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ConceptProposalWhereInput | No |
| orderBy | ConceptProposalOrderByWithRelationInput[] | ConceptProposalOrderByWithRelationInput | No |
| cursor | ConceptProposalWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ConceptProposalScalarFieldEnum | ConceptProposalScalarFieldEnum[] | No |
Find zero or more ConceptProposal
// Get all ConceptProposal
const ConceptProposal = await prisma.conceptProposal.findMany()
// Get first 10 ConceptProposal
const ConceptProposal = await prisma.conceptProposal.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | ConceptProposalWhereInput | No |
| orderBy | ConceptProposalOrderByWithRelationInput[] | ConceptProposalOrderByWithRelationInput | No |
| cursor | ConceptProposalWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ConceptProposalScalarFieldEnum | ConceptProposalScalarFieldEnum[] | No |
Create one ConceptProposal
// Create one ConceptProposal
const ConceptProposal = await prisma.conceptProposal.create({
data: {
// ... data to create a ConceptProposal
}
})
| Name | Type | Required |
|---|---|---|
| data | ConceptProposalCreateInput | ConceptProposalUncheckedCreateInput | Yes |
Delete one ConceptProposal
// Delete one ConceptProposal
const ConceptProposal = await prisma.conceptProposal.delete({
where: {
// ... filter to delete one ConceptProposal
}
})
| Name | Type | Required |
|---|---|---|
| where | ConceptProposalWhereUniqueInput | Yes |
Update one ConceptProposal
// Update one ConceptProposal
const conceptProposal = await prisma.conceptProposal.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ConceptProposalUpdateInput | ConceptProposalUncheckedUpdateInput | Yes |
| where | ConceptProposalWhereUniqueInput | Yes |
Delete zero or more ConceptProposal
// Delete a few ConceptProposal
const { count } = await prisma.conceptProposal.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ConceptProposalWhereInput | No |
Update zero or one ConceptProposal
const { count } = await prisma.conceptProposal.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ConceptProposalUpdateManyMutationInput | ConceptProposalUncheckedUpdateManyInput | Yes |
| where | ConceptProposalWhereInput | No |
Create or update one ConceptProposal
// Update or create a ConceptProposal
const conceptProposal = await prisma.conceptProposal.upsert({
create: {
// ... data to create a ConceptProposal
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the ConceptProposal we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | ConceptProposalWhereUniqueInput | Yes |
| create | ConceptProposalCreateInput | ConceptProposalUncheckedCreateInput | Yes |
| update | ConceptProposalUpdateInput | ConceptProposalUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| uuid | String |
|
Yes | - |
| name | String |
|
Yes | - |
| description | String |
|
Yes | - |
| creator | String |
|
Yes | - |
| dateCreated | DateTime |
|
Yes | - |
| lastChangedBy | String |
|
Yes | - |
| lastChangedDate | DateTime |
|
Yes | - |
| conceptList | Concept[] |
|
Yes | - |
Find zero or one ConceptSet
// Get one ConceptSet
const conceptSet = await prisma.conceptSet.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ConceptSetWhereUniqueInput | Yes |
Find first ConceptSet
// Get one ConceptSet
const conceptSet = await prisma.conceptSet.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ConceptSetWhereInput | No |
| orderBy | ConceptSetOrderByWithRelationInput[] | ConceptSetOrderByWithRelationInput | No |
| cursor | ConceptSetWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ConceptSetScalarFieldEnum | ConceptSetScalarFieldEnum[] | No |
Find zero or more ConceptSet
// Get all ConceptSet
const ConceptSet = await prisma.conceptSet.findMany()
// Get first 10 ConceptSet
const ConceptSet = await prisma.conceptSet.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | ConceptSetWhereInput | No |
| orderBy | ConceptSetOrderByWithRelationInput[] | ConceptSetOrderByWithRelationInput | No |
| cursor | ConceptSetWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ConceptSetScalarFieldEnum | ConceptSetScalarFieldEnum[] | No |
Create one ConceptSet
// Create one ConceptSet
const ConceptSet = await prisma.conceptSet.create({
data: {
// ... data to create a ConceptSet
}
})
| Name | Type | Required |
|---|---|---|
| data | ConceptSetCreateInput | ConceptSetUncheckedCreateInput | Yes |
Delete one ConceptSet
// Delete one ConceptSet
const ConceptSet = await prisma.conceptSet.delete({
where: {
// ... filter to delete one ConceptSet
}
})
| Name | Type | Required |
|---|---|---|
| where | ConceptSetWhereUniqueInput | Yes |
Update one ConceptSet
// Update one ConceptSet
const conceptSet = await prisma.conceptSet.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ConceptSetUpdateInput | ConceptSetUncheckedUpdateInput | Yes |
| where | ConceptSetWhereUniqueInput | Yes |
Delete zero or more ConceptSet
// Delete a few ConceptSet
const { count } = await prisma.conceptSet.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ConceptSetWhereInput | No |
Update zero or one ConceptSet
const { count } = await prisma.conceptSet.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ConceptSetUpdateManyMutationInput | ConceptSetUncheckedUpdateManyInput | Yes |
| where | ConceptSetWhereInput | No |
Create or update one ConceptSet
// Update or create a ConceptSet
const conceptSet = await prisma.conceptSet.upsert({
create: {
// ... data to create a ConceptSet
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the ConceptSet we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | ConceptSetWhereUniqueInput | Yes |
| create | ConceptSetCreateInput | ConceptSetUncheckedCreateInput | Yes |
| update | ConceptSetUpdateInput | ConceptSetUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| uuid | String |
|
Yes | - |
| name | String |
|
Yes | - |
| description | String |
|
Yes | - |
| creator | String |
|
Yes | - |
| dateCreated | DateTime |
|
Yes | - |
| lastChangedBy | String |
|
Yes | - |
| lastChangedDate | DateTime |
|
Yes | - |
| conceptList | Concept[] |
|
Yes | - |
Find zero or one ConceptSource
// Get one ConceptSource
const conceptSource = await prisma.conceptSource.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ConceptSourceWhereUniqueInput | Yes |
Find first ConceptSource
// Get one ConceptSource
const conceptSource = await prisma.conceptSource.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ConceptSourceWhereInput | No |
| orderBy | ConceptSourceOrderByWithRelationInput[] | ConceptSourceOrderByWithRelationInput | No |
| cursor | ConceptSourceWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ConceptSourceScalarFieldEnum | ConceptSourceScalarFieldEnum[] | No |
Find zero or more ConceptSource
// Get all ConceptSource
const ConceptSource = await prisma.conceptSource.findMany()
// Get first 10 ConceptSource
const ConceptSource = await prisma.conceptSource.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | ConceptSourceWhereInput | No |
| orderBy | ConceptSourceOrderByWithRelationInput[] | ConceptSourceOrderByWithRelationInput | No |
| cursor | ConceptSourceWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ConceptSourceScalarFieldEnum | ConceptSourceScalarFieldEnum[] | No |
Create one ConceptSource
// Create one ConceptSource
const ConceptSource = await prisma.conceptSource.create({
data: {
// ... data to create a ConceptSource
}
})
| Name | Type | Required |
|---|---|---|
| data | ConceptSourceCreateInput | ConceptSourceUncheckedCreateInput | Yes |
Delete one ConceptSource
// Delete one ConceptSource
const ConceptSource = await prisma.conceptSource.delete({
where: {
// ... filter to delete one ConceptSource
}
})
| Name | Type | Required |
|---|---|---|
| where | ConceptSourceWhereUniqueInput | Yes |
Update one ConceptSource
// Update one ConceptSource
const conceptSource = await prisma.conceptSource.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ConceptSourceUpdateInput | ConceptSourceUncheckedUpdateInput | Yes |
| where | ConceptSourceWhereUniqueInput | Yes |
Delete zero or more ConceptSource
// Delete a few ConceptSource
const { count } = await prisma.conceptSource.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ConceptSourceWhereInput | No |
Update zero or one ConceptSource
const { count } = await prisma.conceptSource.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ConceptSourceUpdateManyMutationInput | ConceptSourceUncheckedUpdateManyInput | Yes |
| where | ConceptSourceWhereInput | No |
Create or update one ConceptSource
// Update or create a ConceptSource
const conceptSource = await prisma.conceptSource.upsert({
create: {
// ... data to create a ConceptSource
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the ConceptSource we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | ConceptSourceWhereUniqueInput | Yes |
| create | ConceptSourceCreateInput | ConceptSourceUncheckedCreateInput | Yes |
| update | ConceptSourceUpdateInput | ConceptSourceUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| uuid | String |
|
Yes | - |
| conceptId | String |
|
Yes | - |
| concept | Concept |
|
Yes | - |
| word | String |
|
Yes | - |
| locale | String |
|
Yes | - |
| creator | String |
|
Yes | - |
| dateCreated | DateTime |
|
Yes | - |
| lastChangedBy | String |
|
Yes | - |
| lastChangedDate | DateTime |
|
Yes | - |
Find zero or one ConceptWord
// Get one ConceptWord
const conceptWord = await prisma.conceptWord.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ConceptWordWhereUniqueInput | Yes |
Find first ConceptWord
// Get one ConceptWord
const conceptWord = await prisma.conceptWord.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ConceptWordWhereInput | No |
| orderBy | ConceptWordOrderByWithRelationInput[] | ConceptWordOrderByWithRelationInput | No |
| cursor | ConceptWordWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ConceptWordScalarFieldEnum | ConceptWordScalarFieldEnum[] | No |
Find zero or more ConceptWord
// Get all ConceptWord
const ConceptWord = await prisma.conceptWord.findMany()
// Get first 10 ConceptWord
const ConceptWord = await prisma.conceptWord.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | ConceptWordWhereInput | No |
| orderBy | ConceptWordOrderByWithRelationInput[] | ConceptWordOrderByWithRelationInput | No |
| cursor | ConceptWordWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ConceptWordScalarFieldEnum | ConceptWordScalarFieldEnum[] | No |
Create one ConceptWord
// Create one ConceptWord
const ConceptWord = await prisma.conceptWord.create({
data: {
// ... data to create a ConceptWord
}
})
| Name | Type | Required |
|---|---|---|
| data | ConceptWordCreateInput | ConceptWordUncheckedCreateInput | Yes |
Delete one ConceptWord
// Delete one ConceptWord
const ConceptWord = await prisma.conceptWord.delete({
where: {
// ... filter to delete one ConceptWord
}
})
| Name | Type | Required |
|---|---|---|
| where | ConceptWordWhereUniqueInput | Yes |
Update one ConceptWord
// Update one ConceptWord
const conceptWord = await prisma.conceptWord.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ConceptWordUpdateInput | ConceptWordUncheckedUpdateInput | Yes |
| where | ConceptWordWhereUniqueInput | Yes |
Delete zero or more ConceptWord
// Delete a few ConceptWord
const { count } = await prisma.conceptWord.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ConceptWordWhereInput | No |
Update zero or one ConceptWord
const { count } = await prisma.conceptWord.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ConceptWordUpdateManyMutationInput | ConceptWordUncheckedUpdateManyInput | Yes |
| where | ConceptWordWhereInput | No |
Create or update one ConceptWord
// Update or create a ConceptWord
const conceptWord = await prisma.conceptWord.upsert({
create: {
// ... data to create a ConceptWord
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the ConceptWord we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | ConceptWordWhereUniqueInput | Yes |
| create | ConceptWordCreateInput | ConceptWordUncheckedCreateInput | Yes |
| update | ConceptWordUpdateInput | ConceptWordUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| uuid | String |
|
Yes | - |
| name | String |
|
Yes | - |
| description | String |
|
Yes | - |
| creator | String |
|
Yes | - |
| dateCreated | DateTime |
|
Yes | - |
| lastChangedBy | String |
|
Yes | - |
| lastChangedDate | DateTime |
|
Yes | - |
| formResourceList | FormResource[] |
|
Yes | - |
Find zero or one Resource
// Get one Resource
const resource = await prisma.resource.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ResourceWhereUniqueInput | Yes |
Find first Resource
// Get one Resource
const resource = await prisma.resource.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ResourceWhereInput | No |
| orderBy | ResourceOrderByWithRelationInput[] | ResourceOrderByWithRelationInput | No |
| cursor | ResourceWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ResourceScalarFieldEnum | ResourceScalarFieldEnum[] | No |
Find zero or more Resource
// Get all Resource
const Resource = await prisma.resource.findMany()
// Get first 10 Resource
const Resource = await prisma.resource.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | ResourceWhereInput | No |
| orderBy | ResourceOrderByWithRelationInput[] | ResourceOrderByWithRelationInput | No |
| cursor | ResourceWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ResourceScalarFieldEnum | ResourceScalarFieldEnum[] | No |
Create one Resource
// Create one Resource
const Resource = await prisma.resource.create({
data: {
// ... data to create a Resource
}
})
| Name | Type | Required |
|---|---|---|
| data | ResourceCreateInput | ResourceUncheckedCreateInput | Yes |
Delete one Resource
// Delete one Resource
const Resource = await prisma.resource.delete({
where: {
// ... filter to delete one Resource
}
})
| Name | Type | Required |
|---|---|---|
| where | ResourceWhereUniqueInput | Yes |
Update one Resource
// Update one Resource
const resource = await prisma.resource.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ResourceUpdateInput | ResourceUncheckedUpdateInput | Yes |
| where | ResourceWhereUniqueInput | Yes |
Delete zero or more Resource
// Delete a few Resource
const { count } = await prisma.resource.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ResourceWhereInput | No |
Update zero or one Resource
const { count } = await prisma.resource.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ResourceUpdateManyMutationInput | ResourceUncheckedUpdateManyInput | Yes |
| where | ResourceWhereInput | No |
Create or update one Resource
// Update or create a Resource
const resource = await prisma.resource.upsert({
create: {
// ... data to create a Resource
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Resource we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | ResourceWhereUniqueInput | Yes |
| create | ResourceCreateInput | ResourceUncheckedCreateInput | Yes |
| update | ResourceUpdateInput | ResourceUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| title | String |
|
Yes | - |
| content | String |
|
Yes | - |
| context | Json |
|
Yes | - |
| authorId | String |
|
Yes | - |
| author | BlogPostAuthor |
|
Yes | - |
| spaceTimeCoordinatesId | String |
|
Yes | - |
| spaceTimeCoordinates | SpaceTimeCoordinates |
|
Yes | - |
| tagArrowList | BlogPostTagArrow[] |
|
Yes | - |
Find zero or one BlogPost
// Get one BlogPost
const blogPost = await prisma.blogPost.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | BlogPostWhereUniqueInput | Yes |
Find first BlogPost
// Get one BlogPost
const blogPost = await prisma.blogPost.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | BlogPostWhereInput | No |
| orderBy | BlogPostOrderByWithRelationInput[] | BlogPostOrderByWithRelationInput | No |
| cursor | BlogPostWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | BlogPostScalarFieldEnum | BlogPostScalarFieldEnum[] | No |
Find zero or more BlogPost
// Get all BlogPost
const BlogPost = await prisma.blogPost.findMany()
// Get first 10 BlogPost
const BlogPost = await prisma.blogPost.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | BlogPostWhereInput | No |
| orderBy | BlogPostOrderByWithRelationInput[] | BlogPostOrderByWithRelationInput | No |
| cursor | BlogPostWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | BlogPostScalarFieldEnum | BlogPostScalarFieldEnum[] | No |
Create one BlogPost
// Create one BlogPost
const BlogPost = await prisma.blogPost.create({
data: {
// ... data to create a BlogPost
}
})
| Name | Type | Required |
|---|---|---|
| data | BlogPostCreateInput | BlogPostUncheckedCreateInput | Yes |
Delete one BlogPost
// Delete one BlogPost
const BlogPost = await prisma.blogPost.delete({
where: {
// ... filter to delete one BlogPost
}
})
| Name | Type | Required |
|---|---|---|
| where | BlogPostWhereUniqueInput | Yes |
Update one BlogPost
// Update one BlogPost
const blogPost = await prisma.blogPost.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | BlogPostUpdateInput | BlogPostUncheckedUpdateInput | Yes |
| where | BlogPostWhereUniqueInput | Yes |
Delete zero or more BlogPost
// Delete a few BlogPost
const { count } = await prisma.blogPost.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | BlogPostWhereInput | No |
Update zero or one BlogPost
const { count } = await prisma.blogPost.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | BlogPostUpdateManyMutationInput | BlogPostUncheckedUpdateManyInput | Yes |
| where | BlogPostWhereInput | No |
Create or update one BlogPost
// Update or create a BlogPost
const blogPost = await prisma.blogPost.upsert({
create: {
// ... data to create a BlogPost
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the BlogPost we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | BlogPostWhereUniqueInput | Yes |
| create | BlogPostCreateInput | BlogPostUncheckedCreateInput | Yes |
| update | BlogPostUpdateInput | BlogPostUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| name | String |
|
Yes | - |
| descriptor | String? |
|
No | - |
| postArrowList | BlogPostTagArrow[] |
|
Yes | - |
Find zero or one BlogPostTag
// Get one BlogPostTag
const blogPostTag = await prisma.blogPostTag.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | BlogPostTagWhereUniqueInput | Yes |
Find first BlogPostTag
// Get one BlogPostTag
const blogPostTag = await prisma.blogPostTag.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | BlogPostTagWhereInput | No |
| orderBy | BlogPostTagOrderByWithRelationInput[] | BlogPostTagOrderByWithRelationInput | No |
| cursor | BlogPostTagWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | BlogPostTagScalarFieldEnum | BlogPostTagScalarFieldEnum[] | No |
Find zero or more BlogPostTag
// Get all BlogPostTag
const BlogPostTag = await prisma.blogPostTag.findMany()
// Get first 10 BlogPostTag
const BlogPostTag = await prisma.blogPostTag.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | BlogPostTagWhereInput | No |
| orderBy | BlogPostTagOrderByWithRelationInput[] | BlogPostTagOrderByWithRelationInput | No |
| cursor | BlogPostTagWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | BlogPostTagScalarFieldEnum | BlogPostTagScalarFieldEnum[] | No |
Create one BlogPostTag
// Create one BlogPostTag
const BlogPostTag = await prisma.blogPostTag.create({
data: {
// ... data to create a BlogPostTag
}
})
| Name | Type | Required |
|---|---|---|
| data | BlogPostTagCreateInput | BlogPostTagUncheckedCreateInput | Yes |
Delete one BlogPostTag
// Delete one BlogPostTag
const BlogPostTag = await prisma.blogPostTag.delete({
where: {
// ... filter to delete one BlogPostTag
}
})
| Name | Type | Required |
|---|---|---|
| where | BlogPostTagWhereUniqueInput | Yes |
Update one BlogPostTag
// Update one BlogPostTag
const blogPostTag = await prisma.blogPostTag.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | BlogPostTagUpdateInput | BlogPostTagUncheckedUpdateInput | Yes |
| where | BlogPostTagWhereUniqueInput | Yes |
Delete zero or more BlogPostTag
// Delete a few BlogPostTag
const { count } = await prisma.blogPostTag.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | BlogPostTagWhereInput | No |
Update zero or one BlogPostTag
const { count } = await prisma.blogPostTag.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | BlogPostTagUpdateManyMutationInput | BlogPostTagUncheckedUpdateManyInput | Yes |
| where | BlogPostTagWhereInput | No |
Create or update one BlogPostTag
// Update or create a BlogPostTag
const blogPostTag = await prisma.blogPostTag.upsert({
create: {
// ... data to create a BlogPostTag
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the BlogPostTag we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | BlogPostTagWhereUniqueInput | Yes |
| create | BlogPostTagCreateInput | BlogPostTagUncheckedCreateInput | Yes |
| update | BlogPostTagUpdateInput | BlogPostTagUncheckedUpdateInput | Yes |
| Name | Value |
|---|---|
| @@unique |
|
| @@index |
|
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| postId | String |
|
Yes | - |
| post | BlogPost |
|
Yes | - |
| tagId | String |
|
Yes | - |
| tag | BlogPostTag |
|
Yes | - |
Find zero or one BlogPostTagArrow
// Get one BlogPostTagArrow
const blogPostTagArrow = await prisma.blogPostTagArrow.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | BlogPostTagArrowWhereUniqueInput | Yes |
Find first BlogPostTagArrow
// Get one BlogPostTagArrow
const blogPostTagArrow = await prisma.blogPostTagArrow.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | BlogPostTagArrowWhereInput | No |
| orderBy | BlogPostTagArrowOrderByWithRelationInput[] | BlogPostTagArrowOrderByWithRelationInput | No |
| cursor | BlogPostTagArrowWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | BlogPostTagArrowScalarFieldEnum | BlogPostTagArrowScalarFieldEnum[] | No |
Find zero or more BlogPostTagArrow
// Get all BlogPostTagArrow
const BlogPostTagArrow = await prisma.blogPostTagArrow.findMany()
// Get first 10 BlogPostTagArrow
const BlogPostTagArrow = await prisma.blogPostTagArrow.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | BlogPostTagArrowWhereInput | No |
| orderBy | BlogPostTagArrowOrderByWithRelationInput[] | BlogPostTagArrowOrderByWithRelationInput | No |
| cursor | BlogPostTagArrowWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | BlogPostTagArrowScalarFieldEnum | BlogPostTagArrowScalarFieldEnum[] | No |
Create one BlogPostTagArrow
// Create one BlogPostTagArrow
const BlogPostTagArrow = await prisma.blogPostTagArrow.create({
data: {
// ... data to create a BlogPostTagArrow
}
})
| Name | Type | Required |
|---|---|---|
| data | BlogPostTagArrowCreateInput | BlogPostTagArrowUncheckedCreateInput | Yes |
Delete one BlogPostTagArrow
// Delete one BlogPostTagArrow
const BlogPostTagArrow = await prisma.blogPostTagArrow.delete({
where: {
// ... filter to delete one BlogPostTagArrow
}
})
| Name | Type | Required |
|---|---|---|
| where | BlogPostTagArrowWhereUniqueInput | Yes |
Update one BlogPostTagArrow
// Update one BlogPostTagArrow
const blogPostTagArrow = await prisma.blogPostTagArrow.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | BlogPostTagArrowUpdateInput | BlogPostTagArrowUncheckedUpdateInput | Yes |
| where | BlogPostTagArrowWhereUniqueInput | Yes |
Delete zero or more BlogPostTagArrow
// Delete a few BlogPostTagArrow
const { count } = await prisma.blogPostTagArrow.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | BlogPostTagArrowWhereInput | No |
Update zero or one BlogPostTagArrow
const { count } = await prisma.blogPostTagArrow.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | BlogPostTagArrowUpdateManyMutationInput | BlogPostTagArrowUncheckedUpdateManyInput | Yes |
| where | BlogPostTagArrowWhereInput | No |
Create or update one BlogPostTagArrow
// Update or create a BlogPostTagArrow
const blogPostTagArrow = await prisma.blogPostTagArrow.upsert({
create: {
// ... data to create a BlogPostTagArrow
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the BlogPostTagArrow we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | BlogPostTagArrowWhereUniqueInput | Yes |
| create | BlogPostTagArrowCreateInput | BlogPostTagArrowUncheckedCreateInput | Yes |
| update | BlogPostTagArrowUpdateInput | BlogPostTagArrowUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| name | String |
|
Yes | - |
| blogPostList | BlogPost[] |
|
Yes | - |
Find zero or one BlogPostAuthor
// Get one BlogPostAuthor
const blogPostAuthor = await prisma.blogPostAuthor.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | BlogPostAuthorWhereUniqueInput | Yes |
Find first BlogPostAuthor
// Get one BlogPostAuthor
const blogPostAuthor = await prisma.blogPostAuthor.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | BlogPostAuthorWhereInput | No |
| orderBy | BlogPostAuthorOrderByWithRelationInput[] | BlogPostAuthorOrderByWithRelationInput | No |
| cursor | BlogPostAuthorWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | BlogPostAuthorScalarFieldEnum | BlogPostAuthorScalarFieldEnum[] | No |
Find zero or more BlogPostAuthor
// Get all BlogPostAuthor
const BlogPostAuthor = await prisma.blogPostAuthor.findMany()
// Get first 10 BlogPostAuthor
const BlogPostAuthor = await prisma.blogPostAuthor.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | BlogPostAuthorWhereInput | No |
| orderBy | BlogPostAuthorOrderByWithRelationInput[] | BlogPostAuthorOrderByWithRelationInput | No |
| cursor | BlogPostAuthorWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | BlogPostAuthorScalarFieldEnum | BlogPostAuthorScalarFieldEnum[] | No |
Create one BlogPostAuthor
// Create one BlogPostAuthor
const BlogPostAuthor = await prisma.blogPostAuthor.create({
data: {
// ... data to create a BlogPostAuthor
}
})
| Name | Type | Required |
|---|---|---|
| data | BlogPostAuthorCreateInput | BlogPostAuthorUncheckedCreateInput | Yes |
Delete one BlogPostAuthor
// Delete one BlogPostAuthor
const BlogPostAuthor = await prisma.blogPostAuthor.delete({
where: {
// ... filter to delete one BlogPostAuthor
}
})
| Name | Type | Required |
|---|---|---|
| where | BlogPostAuthorWhereUniqueInput | Yes |
Update one BlogPostAuthor
// Update one BlogPostAuthor
const blogPostAuthor = await prisma.blogPostAuthor.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | BlogPostAuthorUpdateInput | BlogPostAuthorUncheckedUpdateInput | Yes |
| where | BlogPostAuthorWhereUniqueInput | Yes |
Delete zero or more BlogPostAuthor
// Delete a few BlogPostAuthor
const { count } = await prisma.blogPostAuthor.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | BlogPostAuthorWhereInput | No |
Update zero or one BlogPostAuthor
const { count } = await prisma.blogPostAuthor.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | BlogPostAuthorUpdateManyMutationInput | BlogPostAuthorUncheckedUpdateManyInput | Yes |
| where | BlogPostAuthorWhereInput | No |
Create or update one BlogPostAuthor
// Update or create a BlogPostAuthor
const blogPostAuthor = await prisma.blogPostAuthor.upsert({
create: {
// ... data to create a BlogPostAuthor
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the BlogPostAuthor we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | BlogPostAuthorWhereUniqueInput | Yes |
| create | BlogPostAuthorCreateInput | BlogPostAuthorUncheckedCreateInput | Yes |
| update | BlogPostAuthorUpdateInput | BlogPostAuthorUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| latitude | Float |
|
Yes | - |
| longitude | Float |
|
Yes | - |
| startTime | Float |
|
Yes | - |
| pauseTime | Float? |
|
No | - |
| stopTime | Float |
|
Yes | - |
| timezone | String |
|
Yes | - |
| blogPostId | String |
|
Yes | - |
| BlogPost | BlogPost? |
|
No | - |
Find zero or one SpaceTimeCoordinates
// Get one SpaceTimeCoordinates
const spaceTimeCoordinates = await prisma.spaceTimeCoordinates.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | SpaceTimeCoordinatesWhereUniqueInput | Yes |
Find first SpaceTimeCoordinates
// Get one SpaceTimeCoordinates
const spaceTimeCoordinates = await prisma.spaceTimeCoordinates.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | SpaceTimeCoordinatesWhereInput | No |
| orderBy | SpaceTimeCoordinatesOrderByWithRelationInput[] | SpaceTimeCoordinatesOrderByWithRelationInput | No |
| cursor | SpaceTimeCoordinatesWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | SpaceTimeCoordinatesScalarFieldEnum | SpaceTimeCoordinatesScalarFieldEnum[] | No |
Find zero or more SpaceTimeCoordinates
// Get all SpaceTimeCoordinates
const SpaceTimeCoordinates = await prisma.spaceTimeCoordinates.findMany()
// Get first 10 SpaceTimeCoordinates
const SpaceTimeCoordinates = await prisma.spaceTimeCoordinates.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | SpaceTimeCoordinatesWhereInput | No |
| orderBy | SpaceTimeCoordinatesOrderByWithRelationInput[] | SpaceTimeCoordinatesOrderByWithRelationInput | No |
| cursor | SpaceTimeCoordinatesWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | SpaceTimeCoordinatesScalarFieldEnum | SpaceTimeCoordinatesScalarFieldEnum[] | No |
Create one SpaceTimeCoordinates
// Create one SpaceTimeCoordinates
const SpaceTimeCoordinates = await prisma.spaceTimeCoordinates.create({
data: {
// ... data to create a SpaceTimeCoordinates
}
})
| Name | Type | Required |
|---|---|---|
| data | SpaceTimeCoordinatesCreateInput | SpaceTimeCoordinatesUncheckedCreateInput | Yes |
Delete one SpaceTimeCoordinates
// Delete one SpaceTimeCoordinates
const SpaceTimeCoordinates = await prisma.spaceTimeCoordinates.delete({
where: {
// ... filter to delete one SpaceTimeCoordinates
}
})
| Name | Type | Required |
|---|---|---|
| where | SpaceTimeCoordinatesWhereUniqueInput | Yes |
Update one SpaceTimeCoordinates
// Update one SpaceTimeCoordinates
const spaceTimeCoordinates = await prisma.spaceTimeCoordinates.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | SpaceTimeCoordinatesUpdateInput | SpaceTimeCoordinatesUncheckedUpdateInput | Yes |
| where | SpaceTimeCoordinatesWhereUniqueInput | Yes |
Delete zero or more SpaceTimeCoordinates
// Delete a few SpaceTimeCoordinates
const { count } = await prisma.spaceTimeCoordinates.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | SpaceTimeCoordinatesWhereInput | No |
Update zero or one SpaceTimeCoordinates
const { count } = await prisma.spaceTimeCoordinates.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | SpaceTimeCoordinatesUpdateManyMutationInput | SpaceTimeCoordinatesUncheckedUpdateManyInput | Yes |
| where | SpaceTimeCoordinatesWhereInput | No |
Create or update one SpaceTimeCoordinates
// Update or create a SpaceTimeCoordinates
const spaceTimeCoordinates = await prisma.spaceTimeCoordinates.upsert({
create: {
// ... data to create a SpaceTimeCoordinates
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the SpaceTimeCoordinates we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | SpaceTimeCoordinatesWhereUniqueInput | Yes |
| create | SpaceTimeCoordinatesCreateInput | SpaceTimeCoordinatesUncheckedCreateInput | Yes |
| update | SpaceTimeCoordinatesUpdateInput | SpaceTimeCoordinatesUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| serviceId | String |
|
Yes | - |
| service | Service |
|
Yes | - |
| cost | Float |
|
Yes | - |
| discount | Float |
|
Yes | - |
| promotion | Float |
|
Yes | - |
| subtotal | Float |
|
Yes | - |
| percentChange | Float |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
| budgetId | String |
|
Yes | - |
| budget | Budget |
|
Yes | - |
Find zero or one BudgetEntry
// Get one BudgetEntry
const budgetEntry = await prisma.budgetEntry.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | BudgetEntryWhereUniqueInput | Yes |
Find first BudgetEntry
// Get one BudgetEntry
const budgetEntry = await prisma.budgetEntry.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | BudgetEntryWhereInput | No |
| orderBy | BudgetEntryOrderByWithRelationInput[] | BudgetEntryOrderByWithRelationInput | No |
| cursor | BudgetEntryWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | BudgetEntryScalarFieldEnum | BudgetEntryScalarFieldEnum[] | No |
Find zero or more BudgetEntry
// Get all BudgetEntry
const BudgetEntry = await prisma.budgetEntry.findMany()
// Get first 10 BudgetEntry
const BudgetEntry = await prisma.budgetEntry.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | BudgetEntryWhereInput | No |
| orderBy | BudgetEntryOrderByWithRelationInput[] | BudgetEntryOrderByWithRelationInput | No |
| cursor | BudgetEntryWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | BudgetEntryScalarFieldEnum | BudgetEntryScalarFieldEnum[] | No |
Create one BudgetEntry
// Create one BudgetEntry
const BudgetEntry = await prisma.budgetEntry.create({
data: {
// ... data to create a BudgetEntry
}
})
| Name | Type | Required |
|---|---|---|
| data | BudgetEntryCreateInput | BudgetEntryUncheckedCreateInput | Yes |
Delete one BudgetEntry
// Delete one BudgetEntry
const BudgetEntry = await prisma.budgetEntry.delete({
where: {
// ... filter to delete one BudgetEntry
}
})
| Name | Type | Required |
|---|---|---|
| where | BudgetEntryWhereUniqueInput | Yes |
Update one BudgetEntry
// Update one BudgetEntry
const budgetEntry = await prisma.budgetEntry.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | BudgetEntryUpdateInput | BudgetEntryUncheckedUpdateInput | Yes |
| where | BudgetEntryWhereUniqueInput | Yes |
Delete zero or more BudgetEntry
// Delete a few BudgetEntry
const { count } = await prisma.budgetEntry.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | BudgetEntryWhereInput | No |
Update zero or one BudgetEntry
const { count } = await prisma.budgetEntry.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | BudgetEntryUpdateManyMutationInput | BudgetEntryUncheckedUpdateManyInput | Yes |
| where | BudgetEntryWhereInput | No |
Create or update one BudgetEntry
// Update or create a BudgetEntry
const budgetEntry = await prisma.budgetEntry.upsert({
create: {
// ... data to create a BudgetEntry
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the BudgetEntry we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | BudgetEntryWhereUniqueInput | Yes |
| create | BudgetEntryCreateInput | BudgetEntryUncheckedCreateInput | Yes |
| update | BudgetEntryUpdateInput | BudgetEntryUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| description | String |
|
Yes | - |
| category | String |
|
Yes | - |
| metadata | Json |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
| entryList | BudgetEntry[] |
|
Yes | - |
Find zero or one Service
// Get one Service
const service = await prisma.service.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ServiceWhereUniqueInput | Yes |
Find first Service
// Get one Service
const service = await prisma.service.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ServiceWhereInput | No |
| orderBy | ServiceOrderByWithRelationInput[] | ServiceOrderByWithRelationInput | No |
| cursor | ServiceWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ServiceScalarFieldEnum | ServiceScalarFieldEnum[] | No |
Find zero or more Service
// Get all Service
const Service = await prisma.service.findMany()
// Get first 10 Service
const Service = await prisma.service.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | ServiceWhereInput | No |
| orderBy | ServiceOrderByWithRelationInput[] | ServiceOrderByWithRelationInput | No |
| cursor | ServiceWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ServiceScalarFieldEnum | ServiceScalarFieldEnum[] | No |
Create one Service
// Create one Service
const Service = await prisma.service.create({
data: {
// ... data to create a Service
}
})
| Name | Type | Required |
|---|---|---|
| data | ServiceCreateInput | ServiceUncheckedCreateInput | Yes |
Delete one Service
// Delete one Service
const Service = await prisma.service.delete({
where: {
// ... filter to delete one Service
}
})
| Name | Type | Required |
|---|---|---|
| where | ServiceWhereUniqueInput | Yes |
Update one Service
// Update one Service
const service = await prisma.service.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ServiceUpdateInput | ServiceUncheckedUpdateInput | Yes |
| where | ServiceWhereUniqueInput | Yes |
Delete zero or more Service
// Delete a few Service
const { count } = await prisma.service.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ServiceWhereInput | No |
Update zero or one Service
const { count } = await prisma.service.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ServiceUpdateManyMutationInput | ServiceUncheckedUpdateManyInput | Yes |
| where | ServiceWhereInput | No |
Create or update one Service
// Update or create a Service
const service = await prisma.service.upsert({
create: {
// ... data to create a Service
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Service we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | ServiceWhereUniqueInput | Yes |
| create | ServiceCreateInput | ServiceUncheckedCreateInput | Yes |
| update | ServiceUpdateInput | ServiceUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| entryList | BudgetEntry[] |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
| fiscalYear | Int |
|
Yes | - |
| reportId | String? |
|
No | - |
| report | Report? |
|
No | - |
| userList | BudgetBudUser[] |
|
Yes | - |
Find zero or one Budget
// Get one Budget
const budget = await prisma.budget.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | BudgetWhereUniqueInput | Yes |
Find first Budget
// Get one Budget
const budget = await prisma.budget.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | BudgetWhereInput | No |
| orderBy | BudgetOrderByWithRelationInput[] | BudgetOrderByWithRelationInput | No |
| cursor | BudgetWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | BudgetScalarFieldEnum | BudgetScalarFieldEnum[] | No |
Find zero or more Budget
// Get all Budget
const Budget = await prisma.budget.findMany()
// Get first 10 Budget
const Budget = await prisma.budget.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | BudgetWhereInput | No |
| orderBy | BudgetOrderByWithRelationInput[] | BudgetOrderByWithRelationInput | No |
| cursor | BudgetWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | BudgetScalarFieldEnum | BudgetScalarFieldEnum[] | No |
Create one Budget
// Create one Budget
const Budget = await prisma.budget.create({
data: {
// ... data to create a Budget
}
})
| Name | Type | Required |
|---|---|---|
| data | BudgetCreateInput | BudgetUncheckedCreateInput | Yes |
Delete one Budget
// Delete one Budget
const Budget = await prisma.budget.delete({
where: {
// ... filter to delete one Budget
}
})
| Name | Type | Required |
|---|---|---|
| where | BudgetWhereUniqueInput | Yes |
Update one Budget
// Update one Budget
const budget = await prisma.budget.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | BudgetUpdateInput | BudgetUncheckedUpdateInput | Yes |
| where | BudgetWhereUniqueInput | Yes |
Delete zero or more Budget
// Delete a few Budget
const { count } = await prisma.budget.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | BudgetWhereInput | No |
Update zero or one Budget
const { count } = await prisma.budget.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | BudgetUpdateManyMutationInput | BudgetUncheckedUpdateManyInput | Yes |
| where | BudgetWhereInput | No |
Create or update one Budget
// Update or create a Budget
const budget = await prisma.budget.upsert({
create: {
// ... data to create a Budget
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Budget we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | BudgetWhereUniqueInput | Yes |
| create | BudgetCreateInput | BudgetUncheckedCreateInput | Yes |
| update | BudgetUpdateInput | BudgetUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| budgetId | String |
|
Yes | - |
| budget | Budget |
|
Yes | - |
| totalCost | Float |
|
Yes | - |
| totalDiscount | Float |
|
Yes | - |
| totalPromotion | Float |
|
Yes | - |
| totalSubtotal | Float |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
Find zero or one Report
// Get one Report
const report = await prisma.report.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ReportWhereUniqueInput | Yes |
Find first Report
// Get one Report
const report = await prisma.report.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ReportWhereInput | No |
| orderBy | ReportOrderByWithRelationInput[] | ReportOrderByWithRelationInput | No |
| cursor | ReportWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ReportScalarFieldEnum | ReportScalarFieldEnum[] | No |
Find zero or more Report
// Get all Report
const Report = await prisma.report.findMany()
// Get first 10 Report
const Report = await prisma.report.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | ReportWhereInput | No |
| orderBy | ReportOrderByWithRelationInput[] | ReportOrderByWithRelationInput | No |
| cursor | ReportWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ReportScalarFieldEnum | ReportScalarFieldEnum[] | No |
Create one Report
// Create one Report
const Report = await prisma.report.create({
data: {
// ... data to create a Report
}
})
| Name | Type | Required |
|---|---|---|
| data | ReportCreateInput | ReportUncheckedCreateInput | Yes |
Delete one Report
// Delete one Report
const Report = await prisma.report.delete({
where: {
// ... filter to delete one Report
}
})
| Name | Type | Required |
|---|---|---|
| where | ReportWhereUniqueInput | Yes |
Update one Report
// Update one Report
const report = await prisma.report.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ReportUpdateInput | ReportUncheckedUpdateInput | Yes |
| where | ReportWhereUniqueInput | Yes |
Delete zero or more Report
// Delete a few Report
const { count } = await prisma.report.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ReportWhereInput | No |
Update zero or one Report
const { count } = await prisma.report.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ReportUpdateManyMutationInput | ReportUncheckedUpdateManyInput | Yes |
| where | ReportWhereInput | No |
Create or update one Report
// Update or create a Report
const report = await prisma.report.upsert({
create: {
// ... data to create a Report
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Report we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | ReportWhereUniqueInput | Yes |
| create | ReportCreateInput | ReportUncheckedCreateInput | Yes |
| update | ReportUpdateInput | ReportUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| name | String |
|
Yes | - |
| String |
|
Yes | - | |
| password | String |
|
Yes | - |
| budgetList | BudgetBudUser[] |
|
Yes | - |
| eventList | BudEvent[] |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
Find zero or one BudUser
// Get one BudUser
const budUser = await prisma.budUser.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | BudUserWhereUniqueInput | Yes |
Find first BudUser
// Get one BudUser
const budUser = await prisma.budUser.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | BudUserWhereInput | No |
| orderBy | BudUserOrderByWithRelationInput[] | BudUserOrderByWithRelationInput | No |
| cursor | BudUserWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | BudUserScalarFieldEnum | BudUserScalarFieldEnum[] | No |
Find zero or more BudUser
// Get all BudUser
const BudUser = await prisma.budUser.findMany()
// Get first 10 BudUser
const BudUser = await prisma.budUser.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | BudUserWhereInput | No |
| orderBy | BudUserOrderByWithRelationInput[] | BudUserOrderByWithRelationInput | No |
| cursor | BudUserWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | BudUserScalarFieldEnum | BudUserScalarFieldEnum[] | No |
Create one BudUser
// Create one BudUser
const BudUser = await prisma.budUser.create({
data: {
// ... data to create a BudUser
}
})
| Name | Type | Required |
|---|---|---|
| data | BudUserCreateInput | BudUserUncheckedCreateInput | Yes |
Delete one BudUser
// Delete one BudUser
const BudUser = await prisma.budUser.delete({
where: {
// ... filter to delete one BudUser
}
})
| Name | Type | Required |
|---|---|---|
| where | BudUserWhereUniqueInput | Yes |
Update one BudUser
// Update one BudUser
const budUser = await prisma.budUser.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | BudUserUpdateInput | BudUserUncheckedUpdateInput | Yes |
| where | BudUserWhereUniqueInput | Yes |
Delete zero or more BudUser
// Delete a few BudUser
const { count } = await prisma.budUser.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | BudUserWhereInput | No |
Update zero or one BudUser
const { count } = await prisma.budUser.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | BudUserUpdateManyMutationInput | BudUserUncheckedUpdateManyInput | Yes |
| where | BudUserWhereInput | No |
Create or update one BudUser
// Update or create a BudUser
const budUser = await prisma.budUser.upsert({
create: {
// ... data to create a BudUser
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the BudUser we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | BudUserWhereUniqueInput | Yes |
| create | BudUserCreateInput | BudUserUncheckedCreateInput | Yes |
| update | BudUserUpdateInput | BudUserUncheckedUpdateInput | Yes |
| Name | Value |
|---|---|
| @@id |
|
Find zero or one BudgetBudUser
// Get one BudgetBudUser
const budgetBudUser = await prisma.budgetBudUser.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | BudgetBudUserWhereUniqueInput | Yes |
Find first BudgetBudUser
// Get one BudgetBudUser
const budgetBudUser = await prisma.budgetBudUser.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | BudgetBudUserWhereInput | No |
| orderBy | BudgetBudUserOrderByWithRelationInput[] | BudgetBudUserOrderByWithRelationInput | No |
| cursor | BudgetBudUserWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | BudgetBudUserScalarFieldEnum | BudgetBudUserScalarFieldEnum[] | No |
Find zero or more BudgetBudUser
// Get all BudgetBudUser
const BudgetBudUser = await prisma.budgetBudUser.findMany()
// Get first 10 BudgetBudUser
const BudgetBudUser = await prisma.budgetBudUser.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | BudgetBudUserWhereInput | No |
| orderBy | BudgetBudUserOrderByWithRelationInput[] | BudgetBudUserOrderByWithRelationInput | No |
| cursor | BudgetBudUserWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | BudgetBudUserScalarFieldEnum | BudgetBudUserScalarFieldEnum[] | No |
Create one BudgetBudUser
// Create one BudgetBudUser
const BudgetBudUser = await prisma.budgetBudUser.create({
data: {
// ... data to create a BudgetBudUser
}
})
| Name | Type | Required |
|---|---|---|
| data | BudgetBudUserCreateInput | BudgetBudUserUncheckedCreateInput | Yes |
Delete one BudgetBudUser
// Delete one BudgetBudUser
const BudgetBudUser = await prisma.budgetBudUser.delete({
where: {
// ... filter to delete one BudgetBudUser
}
})
| Name | Type | Required |
|---|---|---|
| where | BudgetBudUserWhereUniqueInput | Yes |
Update one BudgetBudUser
// Update one BudgetBudUser
const budgetBudUser = await prisma.budgetBudUser.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | BudgetBudUserUpdateInput | BudgetBudUserUncheckedUpdateInput | Yes |
| where | BudgetBudUserWhereUniqueInput | Yes |
Delete zero or more BudgetBudUser
// Delete a few BudgetBudUser
const { count } = await prisma.budgetBudUser.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | BudgetBudUserWhereInput | No |
Update zero or one BudgetBudUser
const { count } = await prisma.budgetBudUser.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | BudgetBudUserUpdateManyMutationInput | BudgetBudUserUncheckedUpdateManyInput | Yes |
| where | BudgetBudUserWhereInput | No |
Create or update one BudgetBudUser
// Update or create a BudgetBudUser
const budgetBudUser = await prisma.budgetBudUser.upsert({
create: {
// ... data to create a BudgetBudUser
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the BudgetBudUser we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | BudgetBudUserWhereUniqueInput | Yes |
| create | BudgetBudUserCreateInput | BudgetBudUserUncheckedCreateInput | Yes |
| update | BudgetBudUserUpdateInput | BudgetBudUserUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| type | String |
|
Yes | - |
| description | String |
|
Yes | - |
| categoryList | String[] |
|
Yes | - |
| metadata | Json |
|
Yes | - |
| budUserId | String |
|
Yes | - |
| budUser | BudUser |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
Find zero or one BudEvent
// Get one BudEvent
const budEvent = await prisma.budEvent.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | BudEventWhereUniqueInput | Yes |
Find first BudEvent
// Get one BudEvent
const budEvent = await prisma.budEvent.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | BudEventWhereInput | No |
| orderBy | BudEventOrderByWithRelationInput[] | BudEventOrderByWithRelationInput | No |
| cursor | BudEventWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | BudEventScalarFieldEnum | BudEventScalarFieldEnum[] | No |
Find zero or more BudEvent
// Get all BudEvent
const BudEvent = await prisma.budEvent.findMany()
// Get first 10 BudEvent
const BudEvent = await prisma.budEvent.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | BudEventWhereInput | No |
| orderBy | BudEventOrderByWithRelationInput[] | BudEventOrderByWithRelationInput | No |
| cursor | BudEventWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | BudEventScalarFieldEnum | BudEventScalarFieldEnum[] | No |
Create one BudEvent
// Create one BudEvent
const BudEvent = await prisma.budEvent.create({
data: {
// ... data to create a BudEvent
}
})
| Name | Type | Required |
|---|---|---|
| data | BudEventCreateInput | BudEventUncheckedCreateInput | Yes |
Delete one BudEvent
// Delete one BudEvent
const BudEvent = await prisma.budEvent.delete({
where: {
// ... filter to delete one BudEvent
}
})
| Name | Type | Required |
|---|---|---|
| where | BudEventWhereUniqueInput | Yes |
Update one BudEvent
// Update one BudEvent
const budEvent = await prisma.budEvent.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | BudEventUpdateInput | BudEventUncheckedUpdateInput | Yes |
| where | BudEventWhereUniqueInput | Yes |
Delete zero or more BudEvent
// Delete a few BudEvent
const { count } = await prisma.budEvent.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | BudEventWhereInput | No |
Update zero or one BudEvent
const { count } = await prisma.budEvent.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | BudEventUpdateManyMutationInput | BudEventUncheckedUpdateManyInput | Yes |
| where | BudEventWhereInput | No |
Create or update one BudEvent
// Update or create a BudEvent
const budEvent = await prisma.budEvent.upsert({
create: {
// ... data to create a BudEvent
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the BudEvent we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | BudEventWhereUniqueInput | Yes |
| create | BudEventCreateInput | BudEventUncheckedCreateInput | Yes |
| update | BudEventUpdateInput | BudEventUncheckedUpdateInput | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | AppointmentWhereInput | AppointmentWhereInput[] | No |
| OR | AppointmentWhereInput[] | No |
| NOT | AppointmentWhereInput | AppointmentWhereInput[] | No |
| id | StringFilter | String | No |
| uuid | StringFilter | String | No |
| appointmentTypeId | StringFilter | String | No |
| patientId | StringFilter | String | No |
| locationId | StringFilter | String | No |
| providerId | StringFilter | String | No |
| startDatetime | DateTimeFilter | DateTime | No |
| endDatetime | DateTimeFilter | DateTime | No |
| voided | BoolFilter | Boolean | No |
| voidedBy | StringFilter | String | No |
| dateVoided | DateTimeFilter | DateTime | No |
| voidReason | StringFilter | String | No |
| creator | StringFilter | String | No |
| dateCreated | DateTimeFilter | DateTime | No |
| lastChangedBy | StringFilter | String | No |
| lastChangedDate | DateTimeFilter | DateTime | No |
| appointmentType | AppointmentTypeRelationFilter | AppointmentTypeWhereInput | No |
| patient | PatientRelationFilter | PatientWhereInput | No |
| location | LocationRelationFilter | LocationWhereInput | No |
| provider | ProviderRelationFilter | ProviderWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| appointmentTypeId | SortOrder | No |
| patientId | SortOrder | No |
| locationId | SortOrder | No |
| providerId | SortOrder | No |
| startDatetime | SortOrder | No |
| endDatetime | SortOrder | No |
| voided | SortOrder | No |
| voidedBy | SortOrder | No |
| dateVoided | SortOrder | No |
| voidReason | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| appointmentType | AppointmentTypeOrderByWithRelationInput | No |
| patient | PatientOrderByWithRelationInput | No |
| location | LocationOrderByWithRelationInput | No |
| provider | ProviderOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| patientId_locationId_providerId | AppointmentPatientIdLocationIdProviderIdCompoundUniqueInput | No |
| AND | AppointmentWhereInput | AppointmentWhereInput[] | No |
| OR | AppointmentWhereInput[] | No |
| NOT | AppointmentWhereInput | AppointmentWhereInput[] | No |
| appointmentTypeId | StringFilter | String | No |
| patientId | StringFilter | String | No |
| locationId | StringFilter | String | No |
| providerId | StringFilter | String | No |
| startDatetime | DateTimeFilter | DateTime | No |
| endDatetime | DateTimeFilter | DateTime | No |
| voided | BoolFilter | Boolean | No |
| voidedBy | StringFilter | String | No |
| dateVoided | DateTimeFilter | DateTime | No |
| voidReason | StringFilter | String | No |
| creator | StringFilter | String | No |
| dateCreated | DateTimeFilter | DateTime | No |
| lastChangedBy | StringFilter | String | No |
| lastChangedDate | DateTimeFilter | DateTime | No |
| appointmentType | AppointmentTypeRelationFilter | AppointmentTypeWhereInput | No |
| patient | PatientRelationFilter | PatientWhereInput | No |
| location | LocationRelationFilter | LocationWhereInput | No |
| provider | ProviderRelationFilter | ProviderWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| appointmentTypeId | SortOrder | No |
| patientId | SortOrder | No |
| locationId | SortOrder | No |
| providerId | SortOrder | No |
| startDatetime | SortOrder | No |
| endDatetime | SortOrder | No |
| voided | SortOrder | No |
| voidedBy | SortOrder | No |
| dateVoided | SortOrder | No |
| voidReason | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| _count | AppointmentCountOrderByAggregateInput | No |
| _max | AppointmentMaxOrderByAggregateInput | No |
| _min | AppointmentMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | AppointmentTypeWhereInput | AppointmentTypeWhereInput[] | No |
| OR | AppointmentTypeWhereInput[] | No |
| NOT | AppointmentTypeWhereInput | AppointmentTypeWhereInput[] | No |
| id | StringFilter | String | No |
| uuid | StringFilter | String | No |
| name | StringFilter | String | No |
| description | StringFilter | String | No |
| duration | IntFilter | Int | No |
| creator | StringFilter | String | No |
| dateCreated | DateTimeFilter | DateTime | No |
| lastChangedBy | StringFilter | String | No |
| lastChangedDate | DateTimeFilter | DateTime | No |
| appointmentList | AppointmentListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| duration | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| appointmentList | AppointmentOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| AND | AppointmentTypeWhereInput | AppointmentTypeWhereInput[] | No |
| OR | AppointmentTypeWhereInput[] | No |
| NOT | AppointmentTypeWhereInput | AppointmentTypeWhereInput[] | No |
| name | StringFilter | String | No |
| description | StringFilter | String | No |
| duration | IntFilter | Int | No |
| creator | StringFilter | String | No |
| dateCreated | DateTimeFilter | DateTime | No |
| lastChangedBy | StringFilter | String | No |
| lastChangedDate | DateTimeFilter | DateTime | No |
| appointmentList | AppointmentListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| duration | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| _count | AppointmentTypeCountOrderByAggregateInput | No |
| _avg | AppointmentTypeAvgOrderByAggregateInput | No |
| _max | AppointmentTypeMaxOrderByAggregateInput | No |
| _min | AppointmentTypeMinOrderByAggregateInput | No |
| _sum | AppointmentTypeSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | AppointmentTypeScalarWhereWithAggregatesInput | AppointmentTypeScalarWhereWithAggregatesInput[] | No |
| OR | AppointmentTypeScalarWhereWithAggregatesInput[] | No |
| NOT | AppointmentTypeScalarWhereWithAggregatesInput | AppointmentTypeScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| uuid | StringWithAggregatesFilter | String | No |
| name | StringWithAggregatesFilter | String | No |
| description | StringWithAggregatesFilter | String | No |
| duration | IntWithAggregatesFilter | Int | No |
| creator | StringWithAggregatesFilter | String | No |
| dateCreated | DateTimeWithAggregatesFilter | DateTime | No |
| lastChangedBy | StringWithAggregatesFilter | String | No |
| lastChangedDate | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | LocationWhereInput | LocationWhereInput[] | No |
| OR | LocationWhereInput[] | No |
| NOT | LocationWhereInput | LocationWhereInput[] | No |
| id | StringFilter | String | No |
| uuid | StringFilter | String | No |
| name | StringFilter | String | No |
| description | StringFilter | String | No |
| address1 | StringFilter | String | No |
| address2 | StringFilter | String | No |
| city | StringFilter | String | No |
| stateProvince | StringFilter | String | No |
| country | StringFilter | String | No |
| postalCode | StringFilter | String | No |
| latitude | FloatFilter | Float | No |
| longitude | FloatFilter | Float | No |
| creator | StringFilter | String | No |
| dateCreated | DateTimeFilter | DateTime | No |
| lastChangedBy | StringFilter | String | No |
| lastChangedDate | DateTimeFilter | DateTime | No |
| appointmentList | AppointmentListRelationFilter | No |
| encounterList | EncounterListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| address1 | SortOrder | No |
| address2 | SortOrder | No |
| city | SortOrder | No |
| stateProvince | SortOrder | No |
| country | SortOrder | No |
| postalCode | SortOrder | No |
| latitude | SortOrder | No |
| longitude | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| appointmentList | AppointmentOrderByRelationAggregateInput | No |
| encounterList | EncounterOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| AND | LocationWhereInput | LocationWhereInput[] | No |
| OR | LocationWhereInput[] | No |
| NOT | LocationWhereInput | LocationWhereInput[] | No |
| name | StringFilter | String | No |
| description | StringFilter | String | No |
| address1 | StringFilter | String | No |
| address2 | StringFilter | String | No |
| city | StringFilter | String | No |
| stateProvince | StringFilter | String | No |
| country | StringFilter | String | No |
| postalCode | StringFilter | String | No |
| latitude | FloatFilter | Float | No |
| longitude | FloatFilter | Float | No |
| creator | StringFilter | String | No |
| dateCreated | DateTimeFilter | DateTime | No |
| lastChangedBy | StringFilter | String | No |
| lastChangedDate | DateTimeFilter | DateTime | No |
| appointmentList | AppointmentListRelationFilter | No |
| encounterList | EncounterListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| address1 | SortOrder | No |
| address2 | SortOrder | No |
| city | SortOrder | No |
| stateProvince | SortOrder | No |
| country | SortOrder | No |
| postalCode | SortOrder | No |
| latitude | SortOrder | No |
| longitude | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| _count | LocationCountOrderByAggregateInput | No |
| _avg | LocationAvgOrderByAggregateInput | No |
| _max | LocationMaxOrderByAggregateInput | No |
| _min | LocationMinOrderByAggregateInput | No |
| _sum | LocationSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PatientWhereInput | PatientWhereInput[] | No |
| OR | PatientWhereInput[] | No |
| NOT | PatientWhereInput | PatientWhereInput[] | No |
| id | StringFilter | String | No |
| uuid | StringFilter | String | No |
| givenName | StringFilter | String | No |
| middleName | StringFilter | String | No |
| familyName | StringFilter | String | No |
| gender | StringFilter | String | No |
| birthdate | DateTimeFilter | DateTime | No |
| dead | BoolFilter | Boolean | No |
| deathDate | DateTimeFilter | DateTime | No |
| causeOfDeath | StringFilter | String | No |
| creator | StringFilter | String | No |
| dateCreated | DateTimeFilter | DateTime | No |
| lastChangedBy | StringFilter | String | No |
| lastChangedDate | DateTimeFilter | DateTime | No |
| appointmentList | AppointmentListRelationFilter | No |
| encounterList | EncounterListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| givenName | SortOrder | No |
| middleName | SortOrder | No |
| familyName | SortOrder | No |
| gender | SortOrder | No |
| birthdate | SortOrder | No |
| dead | SortOrder | No |
| deathDate | SortOrder | No |
| causeOfDeath | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| appointmentList | AppointmentOrderByRelationAggregateInput | No |
| encounterList | EncounterOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| AND | PatientWhereInput | PatientWhereInput[] | No |
| OR | PatientWhereInput[] | No |
| NOT | PatientWhereInput | PatientWhereInput[] | No |
| givenName | StringFilter | String | No |
| middleName | StringFilter | String | No |
| familyName | StringFilter | String | No |
| gender | StringFilter | String | No |
| birthdate | DateTimeFilter | DateTime | No |
| dead | BoolFilter | Boolean | No |
| deathDate | DateTimeFilter | DateTime | No |
| causeOfDeath | StringFilter | String | No |
| creator | StringFilter | String | No |
| dateCreated | DateTimeFilter | DateTime | No |
| lastChangedBy | StringFilter | String | No |
| lastChangedDate | DateTimeFilter | DateTime | No |
| appointmentList | AppointmentListRelationFilter | No |
| encounterList | EncounterListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| givenName | SortOrder | No |
| middleName | SortOrder | No |
| familyName | SortOrder | No |
| gender | SortOrder | No |
| birthdate | SortOrder | No |
| dead | SortOrder | No |
| deathDate | SortOrder | No |
| causeOfDeath | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| _count | PatientCountOrderByAggregateInput | No |
| _max | PatientMaxOrderByAggregateInput | No |
| _min | PatientMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PatientScalarWhereWithAggregatesInput | PatientScalarWhereWithAggregatesInput[] | No |
| OR | PatientScalarWhereWithAggregatesInput[] | No |
| NOT | PatientScalarWhereWithAggregatesInput | PatientScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| uuid | StringWithAggregatesFilter | String | No |
| givenName | StringWithAggregatesFilter | String | No |
| middleName | StringWithAggregatesFilter | String | No |
| familyName | StringWithAggregatesFilter | String | No |
| gender | StringWithAggregatesFilter | String | No |
| birthdate | DateTimeWithAggregatesFilter | DateTime | No |
| dead | BoolWithAggregatesFilter | Boolean | No |
| deathDate | DateTimeWithAggregatesFilter | DateTime | No |
| causeOfDeath | StringWithAggregatesFilter | String | No |
| creator | StringWithAggregatesFilter | String | No |
| dateCreated | DateTimeWithAggregatesFilter | DateTime | No |
| lastChangedBy | StringWithAggregatesFilter | String | No |
| lastChangedDate | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ProviderWhereInput | ProviderWhereInput[] | No |
| OR | ProviderWhereInput[] | No |
| NOT | ProviderWhereInput | ProviderWhereInput[] | No |
| id | StringFilter | String | No |
| uuid | StringFilter | String | No |
| name | StringFilter | String | No |
| identifier | StringFilter | String | No |
| description | StringFilter | String | No |
| voided | BoolFilter | Boolean | No |
| voidedBy | StringFilter | String | No |
| dateVoided | DateTimeFilter | DateTime | No |
| voidReason | StringFilter | String | No |
| creator | StringFilter | String | No |
| dateCreated | DateTimeFilter | DateTime | No |
| lastChangedBy | StringFilter | String | No |
| lastChangedDate | DateTimeFilter | DateTime | No |
| appointmentList | AppointmentListRelationFilter | No |
| encounterList | EncounterListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| name | SortOrder | No |
| identifier | SortOrder | No |
| description | SortOrder | No |
| voided | SortOrder | No |
| voidedBy | SortOrder | No |
| dateVoided | SortOrder | No |
| voidReason | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| appointmentList | AppointmentOrderByRelationAggregateInput | No |
| encounterList | EncounterOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| AND | ProviderWhereInput | ProviderWhereInput[] | No |
| OR | ProviderWhereInput[] | No |
| NOT | ProviderWhereInput | ProviderWhereInput[] | No |
| name | StringFilter | String | No |
| identifier | StringFilter | String | No |
| description | StringFilter | String | No |
| voided | BoolFilter | Boolean | No |
| voidedBy | StringFilter | String | No |
| dateVoided | DateTimeFilter | DateTime | No |
| voidReason | StringFilter | String | No |
| creator | StringFilter | String | No |
| dateCreated | DateTimeFilter | DateTime | No |
| lastChangedBy | StringFilter | String | No |
| lastChangedDate | DateTimeFilter | DateTime | No |
| appointmentList | AppointmentListRelationFilter | No |
| encounterList | EncounterListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| name | SortOrder | No |
| identifier | SortOrder | No |
| description | SortOrder | No |
| voided | SortOrder | No |
| voidedBy | SortOrder | No |
| dateVoided | SortOrder | No |
| voidReason | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| _count | ProviderCountOrderByAggregateInput | No |
| _max | ProviderMaxOrderByAggregateInput | No |
| _min | ProviderMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ProviderScalarWhereWithAggregatesInput | ProviderScalarWhereWithAggregatesInput[] | No |
| OR | ProviderScalarWhereWithAggregatesInput[] | No |
| NOT | ProviderScalarWhereWithAggregatesInput | ProviderScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| uuid | StringWithAggregatesFilter | String | No |
| name | StringWithAggregatesFilter | String | No |
| identifier | StringWithAggregatesFilter | String | No |
| description | StringWithAggregatesFilter | String | No |
| voided | BoolWithAggregatesFilter | Boolean | No |
| voidedBy | StringWithAggregatesFilter | String | No |
| dateVoided | DateTimeWithAggregatesFilter | DateTime | No |
| voidReason | StringWithAggregatesFilter | String | No |
| creator | StringWithAggregatesFilter | String | No |
| dateCreated | DateTimeWithAggregatesFilter | DateTime | No |
| lastChangedBy | StringWithAggregatesFilter | String | No |
| lastChangedDate | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | FormWhereInput | FormWhereInput[] | No |
| OR | FormWhereInput[] | No |
| NOT | FormWhereInput | FormWhereInput[] | No |
| id | StringFilter | String | No |
| uuid | StringFilter | String | No |
| name | StringFilter | String | No |
| description | StringFilter | String | No |
| version | StringFilter | String | No |
| retired | BoolFilter | Boolean | No |
| retiredBy | StringFilter | String | No |
| dateRetired | DateTimeFilter | DateTime | No |
| retiredReason | StringFilter | String | No |
| creator | StringFilter | String | No |
| dateCreated | DateTimeFilter | DateTime | No |
| lastChangedBy | StringFilter | String | No |
| lastChangedDate | DateTimeFilter | DateTime | No |
| fieldId | StringNullableFilter | String | Null | Yes |
| formEncounterList | FormEncounterListRelationFilter | No |
| formResourceList | FormResourceListRelationFilter | No |
| formSubmissionList | FormSubmissionListRelationFilter | No |
| dield | FieldNullableRelationFilter | FieldWhereInput | Null | Yes |
| encounterList | EncounterListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| version | SortOrder | No |
| retired | SortOrder | No |
| retiredBy | SortOrder | No |
| dateRetired | SortOrder | No |
| retiredReason | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| fieldId | SortOrder | SortOrderInput | No |
| formEncounterList | FormEncounterOrderByRelationAggregateInput | No |
| formResourceList | FormResourceOrderByRelationAggregateInput | No |
| formSubmissionList | FormSubmissionOrderByRelationAggregateInput | No |
| dield | FieldOrderByWithRelationInput | No |
| encounterList | EncounterOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| AND | FormWhereInput | FormWhereInput[] | No |
| OR | FormWhereInput[] | No |
| NOT | FormWhereInput | FormWhereInput[] | No |
| name | StringFilter | String | No |
| description | StringFilter | String | No |
| version | StringFilter | String | No |
| retired | BoolFilter | Boolean | No |
| retiredBy | StringFilter | String | No |
| dateRetired | DateTimeFilter | DateTime | No |
| retiredReason | StringFilter | String | No |
| creator | StringFilter | String | No |
| dateCreated | DateTimeFilter | DateTime | No |
| lastChangedBy | StringFilter | String | No |
| lastChangedDate | DateTimeFilter | DateTime | No |
| fieldId | StringNullableFilter | String | Null | Yes |
| formEncounterList | FormEncounterListRelationFilter | No |
| formResourceList | FormResourceListRelationFilter | No |
| formSubmissionList | FormSubmissionListRelationFilter | No |
| dield | FieldNullableRelationFilter | FieldWhereInput | Null | Yes |
| encounterList | EncounterListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| version | SortOrder | No |
| retired | SortOrder | No |
| retiredBy | SortOrder | No |
| dateRetired | SortOrder | No |
| retiredReason | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| fieldId | SortOrder | SortOrderInput | No |
| _count | FormCountOrderByAggregateInput | No |
| _max | FormMaxOrderByAggregateInput | No |
| _min | FormMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | FormScalarWhereWithAggregatesInput | FormScalarWhereWithAggregatesInput[] | No |
| OR | FormScalarWhereWithAggregatesInput[] | No |
| NOT | FormScalarWhereWithAggregatesInput | FormScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| uuid | StringWithAggregatesFilter | String | No |
| name | StringWithAggregatesFilter | String | No |
| description | StringWithAggregatesFilter | String | No |
| version | StringWithAggregatesFilter | String | No |
| retired | BoolWithAggregatesFilter | Boolean | No |
| retiredBy | StringWithAggregatesFilter | String | No |
| dateRetired | DateTimeWithAggregatesFilter | DateTime | No |
| retiredReason | StringWithAggregatesFilter | String | No |
| creator | StringWithAggregatesFilter | String | No |
| dateCreated | DateTimeWithAggregatesFilter | DateTime | No |
| lastChangedBy | StringWithAggregatesFilter | String | No |
| lastChangedDate | DateTimeWithAggregatesFilter | DateTime | No |
| fieldId | StringNullableWithAggregatesFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | FormEncounterWhereInput | FormEncounterWhereInput[] | No |
| OR | FormEncounterWhereInput[] | No |
| NOT | FormEncounterWhereInput | FormEncounterWhereInput[] | No |
| id | StringFilter | String | No |
| uuid | StringFilter | String | No |
| formId | StringFilter | String | No |
| encounterId | StringFilter | String | No |
| creator | StringFilter | String | No |
| dateCreated | DateTimeFilter | DateTime | No |
| lastChangedBy | StringFilter | String | No |
| lastChangedDate | DateTimeFilter | DateTime | No |
| form | FormRelationFilter | FormWhereInput | No |
| encounter | EncounterRelationFilter | EncounterWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| formId | SortOrder | No |
| encounterId | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| form | FormOrderByWithRelationInput | No |
| encounter | EncounterOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| AND | FormEncounterWhereInput | FormEncounterWhereInput[] | No |
| OR | FormEncounterWhereInput[] | No |
| NOT | FormEncounterWhereInput | FormEncounterWhereInput[] | No |
| formId | StringFilter | String | No |
| encounterId | StringFilter | String | No |
| creator | StringFilter | String | No |
| dateCreated | DateTimeFilter | DateTime | No |
| lastChangedBy | StringFilter | String | No |
| lastChangedDate | DateTimeFilter | DateTime | No |
| form | FormRelationFilter | FormWhereInput | No |
| encounter | EncounterRelationFilter | EncounterWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| formId | SortOrder | No |
| encounterId | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| _count | FormEncounterCountOrderByAggregateInput | No |
| _max | FormEncounterMaxOrderByAggregateInput | No |
| _min | FormEncounterMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | FormEncounterScalarWhereWithAggregatesInput | FormEncounterScalarWhereWithAggregatesInput[] | No |
| OR | FormEncounterScalarWhereWithAggregatesInput[] | No |
| NOT | FormEncounterScalarWhereWithAggregatesInput | FormEncounterScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| uuid | StringWithAggregatesFilter | String | No |
| formId | StringWithAggregatesFilter | String | No |
| encounterId | StringWithAggregatesFilter | String | No |
| creator | StringWithAggregatesFilter | String | No |
| dateCreated | DateTimeWithAggregatesFilter | DateTime | No |
| lastChangedBy | StringWithAggregatesFilter | String | No |
| lastChangedDate | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | FormResourceWhereInput | FormResourceWhereInput[] | No |
| OR | FormResourceWhereInput[] | No |
| NOT | FormResourceWhereInput | FormResourceWhereInput[] | No |
| id | StringFilter | String | No |
| uuid | StringFilter | String | No |
| formId | StringFilter | String | No |
| resourceId | StringFilter | String | No |
| creator | StringFilter | String | No |
| dateCreated | DateTimeFilter | DateTime | No |
| lastChangedBy | StringFilter | String | No |
| lastChangedDate | DateTimeFilter | DateTime | No |
| form | FormRelationFilter | FormWhereInput | No |
| resource | ResourceRelationFilter | ResourceWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| formId | SortOrder | No |
| resourceId | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| form | FormOrderByWithRelationInput | No |
| resource | ResourceOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| AND | FormResourceWhereInput | FormResourceWhereInput[] | No |
| OR | FormResourceWhereInput[] | No |
| NOT | FormResourceWhereInput | FormResourceWhereInput[] | No |
| formId | StringFilter | String | No |
| resourceId | StringFilter | String | No |
| creator | StringFilter | String | No |
| dateCreated | DateTimeFilter | DateTime | No |
| lastChangedBy | StringFilter | String | No |
| lastChangedDate | DateTimeFilter | DateTime | No |
| form | FormRelationFilter | FormWhereInput | No |
| resource | ResourceRelationFilter | ResourceWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| formId | SortOrder | No |
| resourceId | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| _count | FormResourceCountOrderByAggregateInput | No |
| _max | FormResourceMaxOrderByAggregateInput | No |
| _min | FormResourceMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | FormResourceScalarWhereWithAggregatesInput | FormResourceScalarWhereWithAggregatesInput[] | No |
| OR | FormResourceScalarWhereWithAggregatesInput[] | No |
| NOT | FormResourceScalarWhereWithAggregatesInput | FormResourceScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| uuid | StringWithAggregatesFilter | String | No |
| formId | StringWithAggregatesFilter | String | No |
| resourceId | StringWithAggregatesFilter | String | No |
| creator | StringWithAggregatesFilter | String | No |
| dateCreated | DateTimeWithAggregatesFilter | DateTime | No |
| lastChangedBy | StringWithAggregatesFilter | String | No |
| lastChangedDate | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | FormSubmissionWhereInput | FormSubmissionWhereInput[] | No |
| OR | FormSubmissionWhereInput[] | No |
| NOT | FormSubmissionWhereInput | FormSubmissionWhereInput[] | No |
| id | StringFilter | String | No |
| uuid | StringFilter | String | No |
| formId | StringFilter | String | No |
| encounterId | StringFilter | String | No |
| submissionDate | DateTimeFilter | DateTime | No |
| creator | StringFilter | String | No |
| dateCreated | DateTimeFilter | DateTime | No |
| lastChangedBy | StringFilter | String | No |
| lastChangedDate | DateTimeFilter | DateTime | No |
| form | FormRelationFilter | FormWhereInput | No |
| encounter | EncounterRelationFilter | EncounterWhereInput | No |
| fieldAnswerList | FieldAnswerListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| formId | SortOrder | No |
| encounterId | SortOrder | No |
| submissionDate | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| form | FormOrderByWithRelationInput | No |
| encounter | EncounterOrderByWithRelationInput | No |
| fieldAnswerList | FieldAnswerOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| AND | FormSubmissionWhereInput | FormSubmissionWhereInput[] | No |
| OR | FormSubmissionWhereInput[] | No |
| NOT | FormSubmissionWhereInput | FormSubmissionWhereInput[] | No |
| formId | StringFilter | String | No |
| encounterId | StringFilter | String | No |
| submissionDate | DateTimeFilter | DateTime | No |
| creator | StringFilter | String | No |
| dateCreated | DateTimeFilter | DateTime | No |
| lastChangedBy | StringFilter | String | No |
| lastChangedDate | DateTimeFilter | DateTime | No |
| form | FormRelationFilter | FormWhereInput | No |
| encounter | EncounterRelationFilter | EncounterWhereInput | No |
| fieldAnswerList | FieldAnswerListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| formId | SortOrder | No |
| encounterId | SortOrder | No |
| submissionDate | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| _count | FormSubmissionCountOrderByAggregateInput | No |
| _max | FormSubmissionMaxOrderByAggregateInput | No |
| _min | FormSubmissionMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | FormSubmissionScalarWhereWithAggregatesInput | FormSubmissionScalarWhereWithAggregatesInput[] | No |
| OR | FormSubmissionScalarWhereWithAggregatesInput[] | No |
| NOT | FormSubmissionScalarWhereWithAggregatesInput | FormSubmissionScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| uuid | StringWithAggregatesFilter | String | No |
| formId | StringWithAggregatesFilter | String | No |
| encounterId | StringWithAggregatesFilter | String | No |
| submissionDate | DateTimeWithAggregatesFilter | DateTime | No |
| creator | StringWithAggregatesFilter | String | No |
| dateCreated | DateTimeWithAggregatesFilter | DateTime | No |
| lastChangedBy | StringWithAggregatesFilter | String | No |
| lastChangedDate | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | FieldWhereInput | FieldWhereInput[] | No |
| OR | FieldWhereInput[] | No |
| NOT | FieldWhereInput | FieldWhereInput[] | No |
| id | StringFilter | String | No |
| uuid | StringFilter | String | No |
| name | StringFilter | String | No |
| description | StringFilter | String | No |
| fieldType | StringFilter | String | No |
| conceptId | StringFilter | String | No |
| creator | StringFilter | String | No |
| dateCreated | DateTimeFilter | DateTime | No |
| lastChangedBy | StringFilter | String | No |
| lastChangedDate | DateTimeFilter | DateTime | No |
| concept | ConceptRelationFilter | ConceptWhereInput | No |
| formList | FormListRelationFilter | No |
| fieldAnswerList | FieldAnswerListRelationFilter | No |
| fieldOptionList | FieldOptionListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| fieldType | SortOrder | No |
| conceptId | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| concept | ConceptOrderByWithRelationInput | No |
| formList | FormOrderByRelationAggregateInput | No |
| fieldAnswerList | FieldAnswerOrderByRelationAggregateInput | No |
| fieldOptionList | FieldOptionOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| AND | FieldWhereInput | FieldWhereInput[] | No |
| OR | FieldWhereInput[] | No |
| NOT | FieldWhereInput | FieldWhereInput[] | No |
| name | StringFilter | String | No |
| description | StringFilter | String | No |
| fieldType | StringFilter | String | No |
| conceptId | StringFilter | String | No |
| creator | StringFilter | String | No |
| dateCreated | DateTimeFilter | DateTime | No |
| lastChangedBy | StringFilter | String | No |
| lastChangedDate | DateTimeFilter | DateTime | No |
| concept | ConceptRelationFilter | ConceptWhereInput | No |
| formList | FormListRelationFilter | No |
| fieldAnswerList | FieldAnswerListRelationFilter | No |
| fieldOptionList | FieldOptionListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| fieldType | SortOrder | No |
| conceptId | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| _count | FieldCountOrderByAggregateInput | No |
| _max | FieldMaxOrderByAggregateInput | No |
| _min | FieldMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | FieldScalarWhereWithAggregatesInput | FieldScalarWhereWithAggregatesInput[] | No |
| OR | FieldScalarWhereWithAggregatesInput[] | No |
| NOT | FieldScalarWhereWithAggregatesInput | FieldScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| uuid | StringWithAggregatesFilter | String | No |
| name | StringWithAggregatesFilter | String | No |
| description | StringWithAggregatesFilter | String | No |
| fieldType | StringWithAggregatesFilter | String | No |
| conceptId | StringWithAggregatesFilter | String | No |
| creator | StringWithAggregatesFilter | String | No |
| dateCreated | DateTimeWithAggregatesFilter | DateTime | No |
| lastChangedBy | StringWithAggregatesFilter | String | No |
| lastChangedDate | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | FieldAnswerWhereInput | FieldAnswerWhereInput[] | No |
| OR | FieldAnswerWhereInput[] | No |
| NOT | FieldAnswerWhereInput | FieldAnswerWhereInput[] | No |
| id | StringFilter | String | No |
| uuid | StringFilter | String | No |
| formSubmissionId | StringFilter | String | No |
| fieldId | StringFilter | String | No |
| value | StringFilter | String | No |
| creator | StringFilter | String | No |
| dateCreated | DateTimeFilter | DateTime | No |
| lastChangedBy | StringFilter | String | No |
| lastChangedDate | DateTimeFilter | DateTime | No |
| formSubmission | FormSubmissionRelationFilter | FormSubmissionWhereInput | No |
| field | FieldRelationFilter | FieldWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| formSubmissionId | SortOrder | No |
| fieldId | SortOrder | No |
| value | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| formSubmission | FormSubmissionOrderByWithRelationInput | No |
| field | FieldOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| AND | FieldAnswerWhereInput | FieldAnswerWhereInput[] | No |
| OR | FieldAnswerWhereInput[] | No |
| NOT | FieldAnswerWhereInput | FieldAnswerWhereInput[] | No |
| formSubmissionId | StringFilter | String | No |
| fieldId | StringFilter | String | No |
| value | StringFilter | String | No |
| creator | StringFilter | String | No |
| dateCreated | DateTimeFilter | DateTime | No |
| lastChangedBy | StringFilter | String | No |
| lastChangedDate | DateTimeFilter | DateTime | No |
| formSubmission | FormSubmissionRelationFilter | FormSubmissionWhereInput | No |
| field | FieldRelationFilter | FieldWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| formSubmissionId | SortOrder | No |
| fieldId | SortOrder | No |
| value | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| _count | FieldAnswerCountOrderByAggregateInput | No |
| _max | FieldAnswerMaxOrderByAggregateInput | No |
| _min | FieldAnswerMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | FieldAnswerScalarWhereWithAggregatesInput | FieldAnswerScalarWhereWithAggregatesInput[] | No |
| OR | FieldAnswerScalarWhereWithAggregatesInput[] | No |
| NOT | FieldAnswerScalarWhereWithAggregatesInput | FieldAnswerScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| uuid | StringWithAggregatesFilter | String | No |
| formSubmissionId | StringWithAggregatesFilter | String | No |
| fieldId | StringWithAggregatesFilter | String | No |
| value | StringWithAggregatesFilter | String | No |
| creator | StringWithAggregatesFilter | String | No |
| dateCreated | DateTimeWithAggregatesFilter | DateTime | No |
| lastChangedBy | StringWithAggregatesFilter | String | No |
| lastChangedDate | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | FieldOptionWhereInput | FieldOptionWhereInput[] | No |
| OR | FieldOptionWhereInput[] | No |
| NOT | FieldOptionWhereInput | FieldOptionWhereInput[] | No |
| id | StringFilter | String | No |
| uuid | StringFilter | String | No |
| fieldId | StringFilter | String | No |
| name | StringFilter | String | No |
| description | StringFilter | String | No |
| creator | StringFilter | String | No |
| dateCreated | DateTimeFilter | DateTime | No |
| lastChangedBy | StringFilter | String | No |
| lastChangedDate | DateTimeFilter | DateTime | No |
| field | FieldRelationFilter | FieldWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| fieldId | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| field | FieldOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| AND | FieldOptionWhereInput | FieldOptionWhereInput[] | No |
| OR | FieldOptionWhereInput[] | No |
| NOT | FieldOptionWhereInput | FieldOptionWhereInput[] | No |
| fieldId | StringFilter | String | No |
| name | StringFilter | String | No |
| description | StringFilter | String | No |
| creator | StringFilter | String | No |
| dateCreated | DateTimeFilter | DateTime | No |
| lastChangedBy | StringFilter | String | No |
| lastChangedDate | DateTimeFilter | DateTime | No |
| field | FieldRelationFilter | FieldWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| fieldId | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| _count | FieldOptionCountOrderByAggregateInput | No |
| _max | FieldOptionMaxOrderByAggregateInput | No |
| _min | FieldOptionMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | FieldOptionScalarWhereWithAggregatesInput | FieldOptionScalarWhereWithAggregatesInput[] | No |
| OR | FieldOptionScalarWhereWithAggregatesInput[] | No |
| NOT | FieldOptionScalarWhereWithAggregatesInput | FieldOptionScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| uuid | StringWithAggregatesFilter | String | No |
| fieldId | StringWithAggregatesFilter | String | No |
| name | StringWithAggregatesFilter | String | No |
| description | StringWithAggregatesFilter | String | No |
| creator | StringWithAggregatesFilter | String | No |
| dateCreated | DateTimeWithAggregatesFilter | DateTime | No |
| lastChangedBy | StringWithAggregatesFilter | String | No |
| lastChangedDate | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| encounterTypeId | SortOrder | No |
| patientId | SortOrder | No |
| locationId | SortOrder | No |
| formId | SortOrder | No |
| providerId | SortOrder | No |
| startDatetime | SortOrder | No |
| endDatetime | SortOrder | No |
| voided | SortOrder | No |
| voidedBy | SortOrder | No |
| dateVoided | SortOrder | No |
| voidReason | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| encounterType | EncounterTypeOrderByWithRelationInput | No |
| patient | PatientOrderByWithRelationInput | No |
| location | LocationOrderByWithRelationInput | No |
| form | FormOrderByWithRelationInput | No |
| provider | ProviderOrderByWithRelationInput | No |
| formEncounterList | FormEncounterOrderByRelationAggregateInput | No |
| formSubmissionList | FormSubmissionOrderByRelationAggregateInput | No |
| obsList | ObsOrderByRelationAggregateInput | No |
| orderList | OrderOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| AND | EncounterWhereInput | EncounterWhereInput[] | No |
| OR | EncounterWhereInput[] | No |
| NOT | EncounterWhereInput | EncounterWhereInput[] | No |
| encounterTypeId | StringFilter | String | No |
| patientId | StringFilter | String | No |
| locationId | StringFilter | String | No |
| formId | StringFilter | String | No |
| providerId | StringFilter | String | No |
| startDatetime | DateTimeFilter | DateTime | No |
| endDatetime | DateTimeFilter | DateTime | No |
| voided | BoolFilter | Boolean | No |
| voidedBy | StringFilter | String | No |
| dateVoided | DateTimeFilter | DateTime | No |
| voidReason | StringFilter | String | No |
| creator | StringFilter | String | No |
| dateCreated | DateTimeFilter | DateTime | No |
| lastChangedBy | StringFilter | String | No |
| lastChangedDate | DateTimeFilter | DateTime | No |
| encounterType | EncounterTypeRelationFilter | EncounterTypeWhereInput | No |
| patient | PatientRelationFilter | PatientWhereInput | No |
| location | LocationRelationFilter | LocationWhereInput | No |
| form | FormRelationFilter | FormWhereInput | No |
| provider | ProviderRelationFilter | ProviderWhereInput | No |
| formEncounterList | FormEncounterListRelationFilter | No |
| formSubmissionList | FormSubmissionListRelationFilter | No |
| obsList | ObsListRelationFilter | No |
| orderList | OrderListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| encounterTypeId | SortOrder | No |
| patientId | SortOrder | No |
| locationId | SortOrder | No |
| formId | SortOrder | No |
| providerId | SortOrder | No |
| startDatetime | SortOrder | No |
| endDatetime | SortOrder | No |
| voided | SortOrder | No |
| voidedBy | SortOrder | No |
| dateVoided | SortOrder | No |
| voidReason | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| _count | EncounterCountOrderByAggregateInput | No |
| _max | EncounterMaxOrderByAggregateInput | No |
| _min | EncounterMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | EncounterTypeWhereInput | EncounterTypeWhereInput[] | No |
| OR | EncounterTypeWhereInput[] | No |
| NOT | EncounterTypeWhereInput | EncounterTypeWhereInput[] | No |
| id | StringFilter | String | No |
| uuid | StringFilter | String | No |
| name | StringFilter | String | No |
| description | StringFilter | String | No |
| creator | StringFilter | String | No |
| dateCreated | DateTimeFilter | DateTime | No |
| lastChangedBy | StringFilter | String | No |
| lastChangedDate | DateTimeFilter | DateTime | No |
| encounterList | EncounterListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| encounterList | EncounterOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| AND | EncounterTypeWhereInput | EncounterTypeWhereInput[] | No |
| OR | EncounterTypeWhereInput[] | No |
| NOT | EncounterTypeWhereInput | EncounterTypeWhereInput[] | No |
| name | StringFilter | String | No |
| description | StringFilter | String | No |
| creator | StringFilter | String | No |
| dateCreated | DateTimeFilter | DateTime | No |
| lastChangedBy | StringFilter | String | No |
| lastChangedDate | DateTimeFilter | DateTime | No |
| encounterList | EncounterListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| _count | EncounterTypeCountOrderByAggregateInput | No |
| _max | EncounterTypeMaxOrderByAggregateInput | No |
| _min | EncounterTypeMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | EncounterTypeScalarWhereWithAggregatesInput | EncounterTypeScalarWhereWithAggregatesInput[] | No |
| OR | EncounterTypeScalarWhereWithAggregatesInput[] | No |
| NOT | EncounterTypeScalarWhereWithAggregatesInput | EncounterTypeScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| uuid | StringWithAggregatesFilter | String | No |
| name | StringWithAggregatesFilter | String | No |
| description | StringWithAggregatesFilter | String | No |
| creator | StringWithAggregatesFilter | String | No |
| dateCreated | DateTimeWithAggregatesFilter | DateTime | No |
| lastChangedBy | StringWithAggregatesFilter | String | No |
| lastChangedDate | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ObsWhereInput | ObsWhereInput[] | No |
| OR | ObsWhereInput[] | No |
| NOT | ObsWhereInput | ObsWhereInput[] | No |
| id | StringFilter | String | No |
| uuid | StringFilter | String | No |
| conceptId | StringFilter | String | No |
| encounterId | StringFilter | String | No |
| obsDatetime | DateTimeFilter | DateTime | No |
| valueDatetime | DateTimeFilter | DateTime | No |
| valueNumeric | FloatFilter | Float | No |
| valueText | StringFilter | String | No |
| creator | StringFilter | String | No |
| dateCreated | DateTimeFilter | DateTime | No |
| lastChangedBy | StringFilter | String | No |
| lastChangedDate | DateTimeFilter | DateTime | No |
| concept | ConceptRelationFilter | ConceptWhereInput | No |
| encounter | EncounterRelationFilter | EncounterWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| conceptId | SortOrder | No |
| encounterId | SortOrder | No |
| obsDatetime | SortOrder | No |
| valueDatetime | SortOrder | No |
| valueNumeric | SortOrder | No |
| valueText | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| concept | ConceptOrderByWithRelationInput | No |
| encounter | EncounterOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| AND | ObsWhereInput | ObsWhereInput[] | No |
| OR | ObsWhereInput[] | No |
| NOT | ObsWhereInput | ObsWhereInput[] | No |
| conceptId | StringFilter | String | No |
| encounterId | StringFilter | String | No |
| obsDatetime | DateTimeFilter | DateTime | No |
| valueDatetime | DateTimeFilter | DateTime | No |
| valueNumeric | FloatFilter | Float | No |
| valueText | StringFilter | String | No |
| creator | StringFilter | String | No |
| dateCreated | DateTimeFilter | DateTime | No |
| lastChangedBy | StringFilter | String | No |
| lastChangedDate | DateTimeFilter | DateTime | No |
| concept | ConceptRelationFilter | ConceptWhereInput | No |
| encounter | EncounterRelationFilter | EncounterWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| conceptId | SortOrder | No |
| encounterId | SortOrder | No |
| obsDatetime | SortOrder | No |
| valueDatetime | SortOrder | No |
| valueNumeric | SortOrder | No |
| valueText | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| _count | ObsCountOrderByAggregateInput | No |
| _avg | ObsAvgOrderByAggregateInput | No |
| _max | ObsMaxOrderByAggregateInput | No |
| _min | ObsMinOrderByAggregateInput | No |
| _sum | ObsSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ObsScalarWhereWithAggregatesInput | ObsScalarWhereWithAggregatesInput[] | No |
| OR | ObsScalarWhereWithAggregatesInput[] | No |
| NOT | ObsScalarWhereWithAggregatesInput | ObsScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| uuid | StringWithAggregatesFilter | String | No |
| conceptId | StringWithAggregatesFilter | String | No |
| encounterId | StringWithAggregatesFilter | String | No |
| obsDatetime | DateTimeWithAggregatesFilter | DateTime | No |
| valueDatetime | DateTimeWithAggregatesFilter | DateTime | No |
| valueNumeric | FloatWithAggregatesFilter | Float | No |
| valueText | StringWithAggregatesFilter | String | No |
| creator | StringWithAggregatesFilter | String | No |
| dateCreated | DateTimeWithAggregatesFilter | DateTime | No |
| lastChangedBy | StringWithAggregatesFilter | String | No |
| lastChangedDate | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | OrderWhereInput | OrderWhereInput[] | No |
| OR | OrderWhereInput[] | No |
| NOT | OrderWhereInput | OrderWhereInput[] | No |
| id | StringFilter | String | No |
| uuid | StringFilter | String | No |
| conceptId | StringFilter | String | No |
| encounterId | StringFilter | String | No |
| orderDatetime | DateTimeFilter | DateTime | No |
| instructions | StringFilter | String | No |
| dosage | StringFilter | String | No |
| route | StringFilter | String | No |
| frequency | StringFilter | String | No |
| asNeeded | BoolFilter | Boolean | No |
| prn | BoolFilter | Boolean | No |
| quantity | IntFilter | Int | No |
| units | StringFilter | String | No |
| creator | StringFilter | String | No |
| dateCreated | DateTimeFilter | DateTime | No |
| lastChangedBy | StringFilter | String | No |
| lastChangedDate | DateTimeFilter | DateTime | No |
| orderFrequencyId | StringNullableFilter | String | Null | Yes |
| orderRouteId | StringNullableFilter | String | Null | Yes |
| orderTypeId | StringNullableFilter | String | Null | Yes |
| orderUnitId | StringNullableFilter | String | Null | Yes |
| concept | ConceptRelationFilter | ConceptWhereInput | No |
| encounter | EncounterRelationFilter | EncounterWhereInput | No |
| OrderFrequency | OrderFrequencyNullableRelationFilter | OrderFrequencyWhereInput | Null | Yes |
| OrderRoute | OrderRouteNullableRelationFilter | OrderRouteWhereInput | Null | Yes |
| OrderType | OrderTypeNullableRelationFilter | OrderTypeWhereInput | Null | Yes |
| OrderUnit | OrderUnitNullableRelationFilter | OrderUnitWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| conceptId | SortOrder | No |
| encounterId | SortOrder | No |
| orderDatetime | SortOrder | No |
| instructions | SortOrder | No |
| dosage | SortOrder | No |
| route | SortOrder | No |
| frequency | SortOrder | No |
| asNeeded | SortOrder | No |
| prn | SortOrder | No |
| quantity | SortOrder | No |
| units | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| orderFrequencyId | SortOrder | SortOrderInput | No |
| orderRouteId | SortOrder | SortOrderInput | No |
| orderTypeId | SortOrder | SortOrderInput | No |
| orderUnitId | SortOrder | SortOrderInput | No |
| concept | ConceptOrderByWithRelationInput | No |
| encounter | EncounterOrderByWithRelationInput | No |
| OrderFrequency | OrderFrequencyOrderByWithRelationInput | No |
| OrderRoute | OrderRouteOrderByWithRelationInput | No |
| OrderType | OrderTypeOrderByWithRelationInput | No |
| OrderUnit | OrderUnitOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| AND | OrderWhereInput | OrderWhereInput[] | No |
| OR | OrderWhereInput[] | No |
| NOT | OrderWhereInput | OrderWhereInput[] | No |
| conceptId | StringFilter | String | No |
| encounterId | StringFilter | String | No |
| orderDatetime | DateTimeFilter | DateTime | No |
| instructions | StringFilter | String | No |
| dosage | StringFilter | String | No |
| route | StringFilter | String | No |
| frequency | StringFilter | String | No |
| asNeeded | BoolFilter | Boolean | No |
| prn | BoolFilter | Boolean | No |
| quantity | IntFilter | Int | No |
| units | StringFilter | String | No |
| creator | StringFilter | String | No |
| dateCreated | DateTimeFilter | DateTime | No |
| lastChangedBy | StringFilter | String | No |
| lastChangedDate | DateTimeFilter | DateTime | No |
| orderFrequencyId | StringNullableFilter | String | Null | Yes |
| orderRouteId | StringNullableFilter | String | Null | Yes |
| orderTypeId | StringNullableFilter | String | Null | Yes |
| orderUnitId | StringNullableFilter | String | Null | Yes |
| concept | ConceptRelationFilter | ConceptWhereInput | No |
| encounter | EncounterRelationFilter | EncounterWhereInput | No |
| OrderFrequency | OrderFrequencyNullableRelationFilter | OrderFrequencyWhereInput | Null | Yes |
| OrderRoute | OrderRouteNullableRelationFilter | OrderRouteWhereInput | Null | Yes |
| OrderType | OrderTypeNullableRelationFilter | OrderTypeWhereInput | Null | Yes |
| OrderUnit | OrderUnitNullableRelationFilter | OrderUnitWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| conceptId | SortOrder | No |
| encounterId | SortOrder | No |
| orderDatetime | SortOrder | No |
| instructions | SortOrder | No |
| dosage | SortOrder | No |
| route | SortOrder | No |
| frequency | SortOrder | No |
| asNeeded | SortOrder | No |
| prn | SortOrder | No |
| quantity | SortOrder | No |
| units | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| orderFrequencyId | SortOrder | SortOrderInput | No |
| orderRouteId | SortOrder | SortOrderInput | No |
| orderTypeId | SortOrder | SortOrderInput | No |
| orderUnitId | SortOrder | SortOrderInput | No |
| _count | OrderCountOrderByAggregateInput | No |
| _avg | OrderAvgOrderByAggregateInput | No |
| _max | OrderMaxOrderByAggregateInput | No |
| _min | OrderMinOrderByAggregateInput | No |
| _sum | OrderSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | OrderFrequencyWhereInput | OrderFrequencyWhereInput[] | No |
| OR | OrderFrequencyWhereInput[] | No |
| NOT | OrderFrequencyWhereInput | OrderFrequencyWhereInput[] | No |
| id | StringFilter | String | No |
| uuid | StringFilter | String | No |
| name | StringFilter | String | No |
| description | StringFilter | String | No |
| creator | StringFilter | String | No |
| dateCreated | DateTimeFilter | DateTime | No |
| lastChangedBy | StringFilter | String | No |
| lastChangedDate | DateTimeFilter | DateTime | No |
| orderList | OrderListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| orderList | OrderOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| AND | OrderFrequencyWhereInput | OrderFrequencyWhereInput[] | No |
| OR | OrderFrequencyWhereInput[] | No |
| NOT | OrderFrequencyWhereInput | OrderFrequencyWhereInput[] | No |
| name | StringFilter | String | No |
| description | StringFilter | String | No |
| creator | StringFilter | String | No |
| dateCreated | DateTimeFilter | DateTime | No |
| lastChangedBy | StringFilter | String | No |
| lastChangedDate | DateTimeFilter | DateTime | No |
| orderList | OrderListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| _count | OrderFrequencyCountOrderByAggregateInput | No |
| _max | OrderFrequencyMaxOrderByAggregateInput | No |
| _min | OrderFrequencyMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | OrderFrequencyScalarWhereWithAggregatesInput | OrderFrequencyScalarWhereWithAggregatesInput[] | No |
| OR | OrderFrequencyScalarWhereWithAggregatesInput[] | No |
| NOT | OrderFrequencyScalarWhereWithAggregatesInput | OrderFrequencyScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| uuid | StringWithAggregatesFilter | String | No |
| name | StringWithAggregatesFilter | String | No |
| description | StringWithAggregatesFilter | String | No |
| creator | StringWithAggregatesFilter | String | No |
| dateCreated | DateTimeWithAggregatesFilter | DateTime | No |
| lastChangedBy | StringWithAggregatesFilter | String | No |
| lastChangedDate | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | OrderRouteWhereInput | OrderRouteWhereInput[] | No |
| OR | OrderRouteWhereInput[] | No |
| NOT | OrderRouteWhereInput | OrderRouteWhereInput[] | No |
| id | StringFilter | String | No |
| uuid | StringFilter | String | No |
| name | StringFilter | String | No |
| description | StringFilter | String | No |
| creator | StringFilter | String | No |
| dateCreated | DateTimeFilter | DateTime | No |
| lastChangedBy | StringFilter | String | No |
| lastChangedDate | DateTimeFilter | DateTime | No |
| orderList | OrderListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| orderList | OrderOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| AND | OrderRouteWhereInput | OrderRouteWhereInput[] | No |
| OR | OrderRouteWhereInput[] | No |
| NOT | OrderRouteWhereInput | OrderRouteWhereInput[] | No |
| name | StringFilter | String | No |
| description | StringFilter | String | No |
| creator | StringFilter | String | No |
| dateCreated | DateTimeFilter | DateTime | No |
| lastChangedBy | StringFilter | String | No |
| lastChangedDate | DateTimeFilter | DateTime | No |
| orderList | OrderListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| _count | OrderRouteCountOrderByAggregateInput | No |
| _max | OrderRouteMaxOrderByAggregateInput | No |
| _min | OrderRouteMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | OrderRouteScalarWhereWithAggregatesInput | OrderRouteScalarWhereWithAggregatesInput[] | No |
| OR | OrderRouteScalarWhereWithAggregatesInput[] | No |
| NOT | OrderRouteScalarWhereWithAggregatesInput | OrderRouteScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| uuid | StringWithAggregatesFilter | String | No |
| name | StringWithAggregatesFilter | String | No |
| description | StringWithAggregatesFilter | String | No |
| creator | StringWithAggregatesFilter | String | No |
| dateCreated | DateTimeWithAggregatesFilter | DateTime | No |
| lastChangedBy | StringWithAggregatesFilter | String | No |
| lastChangedDate | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | OrderTypeWhereInput | OrderTypeWhereInput[] | No |
| OR | OrderTypeWhereInput[] | No |
| NOT | OrderTypeWhereInput | OrderTypeWhereInput[] | No |
| id | StringFilter | String | No |
| uuid | StringFilter | String | No |
| name | StringFilter | String | No |
| description | StringFilter | String | No |
| creator | StringFilter | String | No |
| dateCreated | DateTimeFilter | DateTime | No |
| lastChangedBy | StringFilter | String | No |
| lastChangedDate | DateTimeFilter | DateTime | No |
| orderList | OrderListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| orderList | OrderOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| AND | OrderTypeWhereInput | OrderTypeWhereInput[] | No |
| OR | OrderTypeWhereInput[] | No |
| NOT | OrderTypeWhereInput | OrderTypeWhereInput[] | No |
| name | StringFilter | String | No |
| description | StringFilter | String | No |
| creator | StringFilter | String | No |
| dateCreated | DateTimeFilter | DateTime | No |
| lastChangedBy | StringFilter | String | No |
| lastChangedDate | DateTimeFilter | DateTime | No |
| orderList | OrderListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| _count | OrderTypeCountOrderByAggregateInput | No |
| _max | OrderTypeMaxOrderByAggregateInput | No |
| _min | OrderTypeMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | OrderTypeScalarWhereWithAggregatesInput | OrderTypeScalarWhereWithAggregatesInput[] | No |
| OR | OrderTypeScalarWhereWithAggregatesInput[] | No |
| NOT | OrderTypeScalarWhereWithAggregatesInput | OrderTypeScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| uuid | StringWithAggregatesFilter | String | No |
| name | StringWithAggregatesFilter | String | No |
| description | StringWithAggregatesFilter | String | No |
| creator | StringWithAggregatesFilter | String | No |
| dateCreated | DateTimeWithAggregatesFilter | DateTime | No |
| lastChangedBy | StringWithAggregatesFilter | String | No |
| lastChangedDate | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | OrderUnitWhereInput | OrderUnitWhereInput[] | No |
| OR | OrderUnitWhereInput[] | No |
| NOT | OrderUnitWhereInput | OrderUnitWhereInput[] | No |
| id | StringFilter | String | No |
| uuid | StringFilter | String | No |
| name | StringFilter | String | No |
| description | StringFilter | String | No |
| creator | StringFilter | String | No |
| dateCreated | DateTimeFilter | DateTime | No |
| lastChangedBy | StringFilter | String | No |
| lastChangedDate | DateTimeFilter | DateTime | No |
| orderList | OrderListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| orderList | OrderOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| AND | OrderUnitWhereInput | OrderUnitWhereInput[] | No |
| OR | OrderUnitWhereInput[] | No |
| NOT | OrderUnitWhereInput | OrderUnitWhereInput[] | No |
| name | StringFilter | String | No |
| description | StringFilter | String | No |
| creator | StringFilter | String | No |
| dateCreated | DateTimeFilter | DateTime | No |
| lastChangedBy | StringFilter | String | No |
| lastChangedDate | DateTimeFilter | DateTime | No |
| orderList | OrderListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| _count | OrderUnitCountOrderByAggregateInput | No |
| _max | OrderUnitMaxOrderByAggregateInput | No |
| _min | OrderUnitMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | OrderUnitScalarWhereWithAggregatesInput | OrderUnitScalarWhereWithAggregatesInput[] | No |
| OR | OrderUnitScalarWhereWithAggregatesInput[] | No |
| NOT | OrderUnitScalarWhereWithAggregatesInput | OrderUnitScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| uuid | StringWithAggregatesFilter | String | No |
| name | StringWithAggregatesFilter | String | No |
| description | StringWithAggregatesFilter | String | No |
| creator | StringWithAggregatesFilter | String | No |
| dateCreated | DateTimeWithAggregatesFilter | DateTime | No |
| lastChangedBy | StringWithAggregatesFilter | String | No |
| lastChangedDate | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| dataType | SortOrder | No |
| class | SortOrder | No |
| isRetired | SortOrder | No |
| retiredBy | SortOrder | No |
| dateRetired | SortOrder | No |
| retiredReason | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| conceptClassId | SortOrder | SortOrderInput | No |
| conceptDatatypeId | SortOrder | SortOrderInput | No |
| conceptMapId | SortOrder | SortOrderInput | No |
| conceptSetId | SortOrder | SortOrderInput | No |
| conceptSourceId | SortOrder | SortOrderInput | No |
| _count | ConceptCountOrderByAggregateInput | No |
| _max | ConceptMaxOrderByAggregateInput | No |
| _min | ConceptMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ConceptAnswerWhereInput | ConceptAnswerWhereInput[] | No |
| OR | ConceptAnswerWhereInput[] | No |
| NOT | ConceptAnswerWhereInput | ConceptAnswerWhereInput[] | No |
| id | StringFilter | String | No |
| uuid | StringFilter | String | No |
| conceptId | StringFilter | String | No |
| answerConceptId | StringFilter | String | No |
| creator | StringFilter | String | No |
| dateCreated | DateTimeFilter | DateTime | No |
| lastChangedBy | StringFilter | String | No |
| lastChangedDate | DateTimeFilter | DateTime | No |
| concept | ConceptRelationFilter | ConceptWhereInput | No |
| answerConcept | ConceptRelationFilter | ConceptWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| conceptId | SortOrder | No |
| answerConceptId | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| concept | ConceptOrderByWithRelationInput | No |
| answerConcept | ConceptOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| AND | ConceptAnswerWhereInput | ConceptAnswerWhereInput[] | No |
| OR | ConceptAnswerWhereInput[] | No |
| NOT | ConceptAnswerWhereInput | ConceptAnswerWhereInput[] | No |
| conceptId | StringFilter | String | No |
| answerConceptId | StringFilter | String | No |
| creator | StringFilter | String | No |
| dateCreated | DateTimeFilter | DateTime | No |
| lastChangedBy | StringFilter | String | No |
| lastChangedDate | DateTimeFilter | DateTime | No |
| concept | ConceptRelationFilter | ConceptWhereInput | No |
| answerConcept | ConceptRelationFilter | ConceptWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| conceptId | SortOrder | No |
| answerConceptId | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| _count | ConceptAnswerCountOrderByAggregateInput | No |
| _max | ConceptAnswerMaxOrderByAggregateInput | No |
| _min | ConceptAnswerMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ConceptAnswerScalarWhereWithAggregatesInput | ConceptAnswerScalarWhereWithAggregatesInput[] | No |
| OR | ConceptAnswerScalarWhereWithAggregatesInput[] | No |
| NOT | ConceptAnswerScalarWhereWithAggregatesInput | ConceptAnswerScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| uuid | StringWithAggregatesFilter | String | No |
| conceptId | StringWithAggregatesFilter | String | No |
| answerConceptId | StringWithAggregatesFilter | String | No |
| creator | StringWithAggregatesFilter | String | No |
| dateCreated | DateTimeWithAggregatesFilter | DateTime | No |
| lastChangedBy | StringWithAggregatesFilter | String | No |
| lastChangedDate | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ConceptClassWhereInput | ConceptClassWhereInput[] | No |
| OR | ConceptClassWhereInput[] | No |
| NOT | ConceptClassWhereInput | ConceptClassWhereInput[] | No |
| id | StringFilter | String | No |
| uuid | StringFilter | String | No |
| name | StringFilter | String | No |
| description | StringFilter | String | No |
| creator | StringFilter | String | No |
| dateCreated | DateTimeFilter | DateTime | No |
| lastChangedBy | StringFilter | String | No |
| lastChangedDate | DateTimeFilter | DateTime | No |
| conceptList | ConceptListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| conceptList | ConceptOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| AND | ConceptClassWhereInput | ConceptClassWhereInput[] | No |
| OR | ConceptClassWhereInput[] | No |
| NOT | ConceptClassWhereInput | ConceptClassWhereInput[] | No |
| name | StringFilter | String | No |
| description | StringFilter | String | No |
| creator | StringFilter | String | No |
| dateCreated | DateTimeFilter | DateTime | No |
| lastChangedBy | StringFilter | String | No |
| lastChangedDate | DateTimeFilter | DateTime | No |
| conceptList | ConceptListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| _count | ConceptClassCountOrderByAggregateInput | No |
| _max | ConceptClassMaxOrderByAggregateInput | No |
| _min | ConceptClassMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ConceptClassScalarWhereWithAggregatesInput | ConceptClassScalarWhereWithAggregatesInput[] | No |
| OR | ConceptClassScalarWhereWithAggregatesInput[] | No |
| NOT | ConceptClassScalarWhereWithAggregatesInput | ConceptClassScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| uuid | StringWithAggregatesFilter | String | No |
| name | StringWithAggregatesFilter | String | No |
| description | StringWithAggregatesFilter | String | No |
| creator | StringWithAggregatesFilter | String | No |
| dateCreated | DateTimeWithAggregatesFilter | DateTime | No |
| lastChangedBy | StringWithAggregatesFilter | String | No |
| lastChangedDate | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ConceptDatatypeWhereInput | ConceptDatatypeWhereInput[] | No |
| OR | ConceptDatatypeWhereInput[] | No |
| NOT | ConceptDatatypeWhereInput | ConceptDatatypeWhereInput[] | No |
| id | StringFilter | String | No |
| uuid | StringFilter | String | No |
| name | StringFilter | String | No |
| description | StringFilter | String | No |
| creator | StringFilter | String | No |
| dateCreated | DateTimeFilter | DateTime | No |
| lastChangedBy | StringFilter | String | No |
| lastChangedDate | DateTimeFilter | DateTime | No |
| conceptList | ConceptListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| conceptList | ConceptOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| AND | ConceptDatatypeWhereInput | ConceptDatatypeWhereInput[] | No |
| OR | ConceptDatatypeWhereInput[] | No |
| NOT | ConceptDatatypeWhereInput | ConceptDatatypeWhereInput[] | No |
| name | StringFilter | String | No |
| description | StringFilter | String | No |
| creator | StringFilter | String | No |
| dateCreated | DateTimeFilter | DateTime | No |
| lastChangedBy | StringFilter | String | No |
| lastChangedDate | DateTimeFilter | DateTime | No |
| conceptList | ConceptListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| _count | ConceptDatatypeCountOrderByAggregateInput | No |
| _max | ConceptDatatypeMaxOrderByAggregateInput | No |
| _min | ConceptDatatypeMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ConceptDatatypeScalarWhereWithAggregatesInput | ConceptDatatypeScalarWhereWithAggregatesInput[] | No |
| OR | ConceptDatatypeScalarWhereWithAggregatesInput[] | No |
| NOT | ConceptDatatypeScalarWhereWithAggregatesInput | ConceptDatatypeScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| uuid | StringWithAggregatesFilter | String | No |
| name | StringWithAggregatesFilter | String | No |
| description | StringWithAggregatesFilter | String | No |
| creator | StringWithAggregatesFilter | String | No |
| dateCreated | DateTimeWithAggregatesFilter | DateTime | No |
| lastChangedBy | StringWithAggregatesFilter | String | No |
| lastChangedDate | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ConceptMapWhereInput | ConceptMapWhereInput[] | No |
| OR | ConceptMapWhereInput[] | No |
| NOT | ConceptMapWhereInput | ConceptMapWhereInput[] | No |
| id | StringFilter | String | No |
| uuid | StringFilter | String | No |
| name | StringFilter | String | No |
| description | StringFilter | String | No |
| creator | StringFilter | String | No |
| dateCreated | DateTimeFilter | DateTime | No |
| lastChangedBy | StringFilter | String | No |
| lastChangedDate | DateTimeFilter | DateTime | No |
| conceptList | ConceptListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| conceptList | ConceptOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| AND | ConceptMapWhereInput | ConceptMapWhereInput[] | No |
| OR | ConceptMapWhereInput[] | No |
| NOT | ConceptMapWhereInput | ConceptMapWhereInput[] | No |
| name | StringFilter | String | No |
| description | StringFilter | String | No |
| creator | StringFilter | String | No |
| dateCreated | DateTimeFilter | DateTime | No |
| lastChangedBy | StringFilter | String | No |
| lastChangedDate | DateTimeFilter | DateTime | No |
| conceptList | ConceptListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| _count | ConceptMapCountOrderByAggregateInput | No |
| _max | ConceptMapMaxOrderByAggregateInput | No |
| _min | ConceptMapMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ConceptMapScalarWhereWithAggregatesInput | ConceptMapScalarWhereWithAggregatesInput[] | No |
| OR | ConceptMapScalarWhereWithAggregatesInput[] | No |
| NOT | ConceptMapScalarWhereWithAggregatesInput | ConceptMapScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| uuid | StringWithAggregatesFilter | String | No |
| name | StringWithAggregatesFilter | String | No |
| description | StringWithAggregatesFilter | String | No |
| creator | StringWithAggregatesFilter | String | No |
| dateCreated | DateTimeWithAggregatesFilter | DateTime | No |
| lastChangedBy | StringWithAggregatesFilter | String | No |
| lastChangedDate | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ConceptNameWhereInput | ConceptNameWhereInput[] | No |
| OR | ConceptNameWhereInput[] | No |
| NOT | ConceptNameWhereInput | ConceptNameWhereInput[] | No |
| id | StringFilter | String | No |
| uuid | StringFilter | String | No |
| conceptId | StringFilter | String | No |
| name | StringFilter | String | No |
| locale | StringFilter | String | No |
| creator | StringFilter | String | No |
| dateCreated | DateTimeFilter | DateTime | No |
| lastChangedBy | StringFilter | String | No |
| lastChangedDate | DateTimeFilter | DateTime | No |
| concept | ConceptRelationFilter | ConceptWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| conceptId | SortOrder | No |
| name | SortOrder | No |
| locale | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| concept | ConceptOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| AND | ConceptNameWhereInput | ConceptNameWhereInput[] | No |
| OR | ConceptNameWhereInput[] | No |
| NOT | ConceptNameWhereInput | ConceptNameWhereInput[] | No |
| conceptId | StringFilter | String | No |
| name | StringFilter | String | No |
| locale | StringFilter | String | No |
| creator | StringFilter | String | No |
| dateCreated | DateTimeFilter | DateTime | No |
| lastChangedBy | StringFilter | String | No |
| lastChangedDate | DateTimeFilter | DateTime | No |
| concept | ConceptRelationFilter | ConceptWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| conceptId | SortOrder | No |
| name | SortOrder | No |
| locale | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| _count | ConceptNameCountOrderByAggregateInput | No |
| _max | ConceptNameMaxOrderByAggregateInput | No |
| _min | ConceptNameMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ConceptNameScalarWhereWithAggregatesInput | ConceptNameScalarWhereWithAggregatesInput[] | No |
| OR | ConceptNameScalarWhereWithAggregatesInput[] | No |
| NOT | ConceptNameScalarWhereWithAggregatesInput | ConceptNameScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| uuid | StringWithAggregatesFilter | String | No |
| conceptId | StringWithAggregatesFilter | String | No |
| name | StringWithAggregatesFilter | String | No |
| locale | StringWithAggregatesFilter | String | No |
| creator | StringWithAggregatesFilter | String | No |
| dateCreated | DateTimeWithAggregatesFilter | DateTime | No |
| lastChangedBy | StringWithAggregatesFilter | String | No |
| lastChangedDate | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ConceptNumericWhereInput | ConceptNumericWhereInput[] | No |
| OR | ConceptNumericWhereInput[] | No |
| NOT | ConceptNumericWhereInput | ConceptNumericWhereInput[] | No |
| id | StringFilter | String | No |
| uuid | StringFilter | String | No |
| conceptId | StringFilter | String | No |
| hiAbsolute | FloatFilter | Float | No |
| hiCritical | FloatFilter | Float | No |
| hiNormal | FloatFilter | Float | No |
| lowAbsolute | FloatFilter | Float | No |
| lowCritical | FloatFilter | Float | No |
| lowNormal | FloatFilter | Float | No |
| units | StringFilter | String | No |
| creator | StringFilter | String | No |
| dateCreated | DateTimeFilter | DateTime | No |
| lastChangedBy | StringFilter | String | No |
| lastChangedDate | DateTimeFilter | DateTime | No |
| concept | ConceptRelationFilter | ConceptWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| conceptId | SortOrder | No |
| hiAbsolute | SortOrder | No |
| hiCritical | SortOrder | No |
| hiNormal | SortOrder | No |
| lowAbsolute | SortOrder | No |
| lowCritical | SortOrder | No |
| lowNormal | SortOrder | No |
| units | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| concept | ConceptOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| AND | ConceptNumericWhereInput | ConceptNumericWhereInput[] | No |
| OR | ConceptNumericWhereInput[] | No |
| NOT | ConceptNumericWhereInput | ConceptNumericWhereInput[] | No |
| conceptId | StringFilter | String | No |
| hiAbsolute | FloatFilter | Float | No |
| hiCritical | FloatFilter | Float | No |
| hiNormal | FloatFilter | Float | No |
| lowAbsolute | FloatFilter | Float | No |
| lowCritical | FloatFilter | Float | No |
| lowNormal | FloatFilter | Float | No |
| units | StringFilter | String | No |
| creator | StringFilter | String | No |
| dateCreated | DateTimeFilter | DateTime | No |
| lastChangedBy | StringFilter | String | No |
| lastChangedDate | DateTimeFilter | DateTime | No |
| concept | ConceptRelationFilter | ConceptWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| conceptId | SortOrder | No |
| hiAbsolute | SortOrder | No |
| hiCritical | SortOrder | No |
| hiNormal | SortOrder | No |
| lowAbsolute | SortOrder | No |
| lowCritical | SortOrder | No |
| lowNormal | SortOrder | No |
| units | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| _count | ConceptNumericCountOrderByAggregateInput | No |
| _avg | ConceptNumericAvgOrderByAggregateInput | No |
| _max | ConceptNumericMaxOrderByAggregateInput | No |
| _min | ConceptNumericMinOrderByAggregateInput | No |
| _sum | ConceptNumericSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ConceptNumericScalarWhereWithAggregatesInput | ConceptNumericScalarWhereWithAggregatesInput[] | No |
| OR | ConceptNumericScalarWhereWithAggregatesInput[] | No |
| NOT | ConceptNumericScalarWhereWithAggregatesInput | ConceptNumericScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| uuid | StringWithAggregatesFilter | String | No |
| conceptId | StringWithAggregatesFilter | String | No |
| hiAbsolute | FloatWithAggregatesFilter | Float | No |
| hiCritical | FloatWithAggregatesFilter | Float | No |
| hiNormal | FloatWithAggregatesFilter | Float | No |
| lowAbsolute | FloatWithAggregatesFilter | Float | No |
| lowCritical | FloatWithAggregatesFilter | Float | No |
| lowNormal | FloatWithAggregatesFilter | Float | No |
| units | StringWithAggregatesFilter | String | No |
| creator | StringWithAggregatesFilter | String | No |
| dateCreated | DateTimeWithAggregatesFilter | DateTime | No |
| lastChangedBy | StringWithAggregatesFilter | String | No |
| lastChangedDate | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ConceptProposalWhereInput | ConceptProposalWhereInput[] | No |
| OR | ConceptProposalWhereInput[] | No |
| NOT | ConceptProposalWhereInput | ConceptProposalWhereInput[] | No |
| id | StringFilter | String | No |
| uuid | StringFilter | String | No |
| conceptId | StringFilter | String | No |
| name | StringFilter | String | No |
| description | StringFilter | String | No |
| creator | StringFilter | String | No |
| dateCreated | DateTimeFilter | DateTime | No |
| lastChangedBy | StringFilter | String | No |
| lastChangedDate | DateTimeFilter | DateTime | No |
| concept | ConceptRelationFilter | ConceptWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| conceptId | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| concept | ConceptOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| AND | ConceptProposalWhereInput | ConceptProposalWhereInput[] | No |
| OR | ConceptProposalWhereInput[] | No |
| NOT | ConceptProposalWhereInput | ConceptProposalWhereInput[] | No |
| conceptId | StringFilter | String | No |
| name | StringFilter | String | No |
| description | StringFilter | String | No |
| creator | StringFilter | String | No |
| dateCreated | DateTimeFilter | DateTime | No |
| lastChangedBy | StringFilter | String | No |
| lastChangedDate | DateTimeFilter | DateTime | No |
| concept | ConceptRelationFilter | ConceptWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| conceptId | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| _count | ConceptProposalCountOrderByAggregateInput | No |
| _max | ConceptProposalMaxOrderByAggregateInput | No |
| _min | ConceptProposalMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ConceptProposalScalarWhereWithAggregatesInput | ConceptProposalScalarWhereWithAggregatesInput[] | No |
| OR | ConceptProposalScalarWhereWithAggregatesInput[] | No |
| NOT | ConceptProposalScalarWhereWithAggregatesInput | ConceptProposalScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| uuid | StringWithAggregatesFilter | String | No |
| conceptId | StringWithAggregatesFilter | String | No |
| name | StringWithAggregatesFilter | String | No |
| description | StringWithAggregatesFilter | String | No |
| creator | StringWithAggregatesFilter | String | No |
| dateCreated | DateTimeWithAggregatesFilter | DateTime | No |
| lastChangedBy | StringWithAggregatesFilter | String | No |
| lastChangedDate | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ConceptSetWhereInput | ConceptSetWhereInput[] | No |
| OR | ConceptSetWhereInput[] | No |
| NOT | ConceptSetWhereInput | ConceptSetWhereInput[] | No |
| id | StringFilter | String | No |
| uuid | StringFilter | String | No |
| name | StringFilter | String | No |
| description | StringFilter | String | No |
| creator | StringFilter | String | No |
| dateCreated | DateTimeFilter | DateTime | No |
| lastChangedBy | StringFilter | String | No |
| lastChangedDate | DateTimeFilter | DateTime | No |
| conceptList | ConceptListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| conceptList | ConceptOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| AND | ConceptSetWhereInput | ConceptSetWhereInput[] | No |
| OR | ConceptSetWhereInput[] | No |
| NOT | ConceptSetWhereInput | ConceptSetWhereInput[] | No |
| name | StringFilter | String | No |
| description | StringFilter | String | No |
| creator | StringFilter | String | No |
| dateCreated | DateTimeFilter | DateTime | No |
| lastChangedBy | StringFilter | String | No |
| lastChangedDate | DateTimeFilter | DateTime | No |
| conceptList | ConceptListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| _count | ConceptSetCountOrderByAggregateInput | No |
| _max | ConceptSetMaxOrderByAggregateInput | No |
| _min | ConceptSetMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ConceptSetScalarWhereWithAggregatesInput | ConceptSetScalarWhereWithAggregatesInput[] | No |
| OR | ConceptSetScalarWhereWithAggregatesInput[] | No |
| NOT | ConceptSetScalarWhereWithAggregatesInput | ConceptSetScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| uuid | StringWithAggregatesFilter | String | No |
| name | StringWithAggregatesFilter | String | No |
| description | StringWithAggregatesFilter | String | No |
| creator | StringWithAggregatesFilter | String | No |
| dateCreated | DateTimeWithAggregatesFilter | DateTime | No |
| lastChangedBy | StringWithAggregatesFilter | String | No |
| lastChangedDate | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ConceptSourceWhereInput | ConceptSourceWhereInput[] | No |
| OR | ConceptSourceWhereInput[] | No |
| NOT | ConceptSourceWhereInput | ConceptSourceWhereInput[] | No |
| id | StringFilter | String | No |
| uuid | StringFilter | String | No |
| name | StringFilter | String | No |
| description | StringFilter | String | No |
| creator | StringFilter | String | No |
| dateCreated | DateTimeFilter | DateTime | No |
| lastChangedBy | StringFilter | String | No |
| lastChangedDate | DateTimeFilter | DateTime | No |
| conceptList | ConceptListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| conceptList | ConceptOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| AND | ConceptSourceWhereInput | ConceptSourceWhereInput[] | No |
| OR | ConceptSourceWhereInput[] | No |
| NOT | ConceptSourceWhereInput | ConceptSourceWhereInput[] | No |
| name | StringFilter | String | No |
| description | StringFilter | String | No |
| creator | StringFilter | String | No |
| dateCreated | DateTimeFilter | DateTime | No |
| lastChangedBy | StringFilter | String | No |
| lastChangedDate | DateTimeFilter | DateTime | No |
| conceptList | ConceptListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| _count | ConceptSourceCountOrderByAggregateInput | No |
| _max | ConceptSourceMaxOrderByAggregateInput | No |
| _min | ConceptSourceMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ConceptSourceScalarWhereWithAggregatesInput | ConceptSourceScalarWhereWithAggregatesInput[] | No |
| OR | ConceptSourceScalarWhereWithAggregatesInput[] | No |
| NOT | ConceptSourceScalarWhereWithAggregatesInput | ConceptSourceScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| uuid | StringWithAggregatesFilter | String | No |
| name | StringWithAggregatesFilter | String | No |
| description | StringWithAggregatesFilter | String | No |
| creator | StringWithAggregatesFilter | String | No |
| dateCreated | DateTimeWithAggregatesFilter | DateTime | No |
| lastChangedBy | StringWithAggregatesFilter | String | No |
| lastChangedDate | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ConceptWordWhereInput | ConceptWordWhereInput[] | No |
| OR | ConceptWordWhereInput[] | No |
| NOT | ConceptWordWhereInput | ConceptWordWhereInput[] | No |
| id | StringFilter | String | No |
| uuid | StringFilter | String | No |
| conceptId | StringFilter | String | No |
| word | StringFilter | String | No |
| locale | StringFilter | String | No |
| creator | StringFilter | String | No |
| dateCreated | DateTimeFilter | DateTime | No |
| lastChangedBy | StringFilter | String | No |
| lastChangedDate | DateTimeFilter | DateTime | No |
| concept | ConceptRelationFilter | ConceptWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| conceptId | SortOrder | No |
| word | SortOrder | No |
| locale | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| concept | ConceptOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| AND | ConceptWordWhereInput | ConceptWordWhereInput[] | No |
| OR | ConceptWordWhereInput[] | No |
| NOT | ConceptWordWhereInput | ConceptWordWhereInput[] | No |
| conceptId | StringFilter | String | No |
| word | StringFilter | String | No |
| locale | StringFilter | String | No |
| creator | StringFilter | String | No |
| dateCreated | DateTimeFilter | DateTime | No |
| lastChangedBy | StringFilter | String | No |
| lastChangedDate | DateTimeFilter | DateTime | No |
| concept | ConceptRelationFilter | ConceptWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| conceptId | SortOrder | No |
| word | SortOrder | No |
| locale | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| _count | ConceptWordCountOrderByAggregateInput | No |
| _max | ConceptWordMaxOrderByAggregateInput | No |
| _min | ConceptWordMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ConceptWordScalarWhereWithAggregatesInput | ConceptWordScalarWhereWithAggregatesInput[] | No |
| OR | ConceptWordScalarWhereWithAggregatesInput[] | No |
| NOT | ConceptWordScalarWhereWithAggregatesInput | ConceptWordScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| uuid | StringWithAggregatesFilter | String | No |
| conceptId | StringWithAggregatesFilter | String | No |
| word | StringWithAggregatesFilter | String | No |
| locale | StringWithAggregatesFilter | String | No |
| creator | StringWithAggregatesFilter | String | No |
| dateCreated | DateTimeWithAggregatesFilter | DateTime | No |
| lastChangedBy | StringWithAggregatesFilter | String | No |
| lastChangedDate | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ResourceWhereInput | ResourceWhereInput[] | No |
| OR | ResourceWhereInput[] | No |
| NOT | ResourceWhereInput | ResourceWhereInput[] | No |
| id | StringFilter | String | No |
| uuid | StringFilter | String | No |
| name | StringFilter | String | No |
| description | StringFilter | String | No |
| creator | StringFilter | String | No |
| dateCreated | DateTimeFilter | DateTime | No |
| lastChangedBy | StringFilter | String | No |
| lastChangedDate | DateTimeFilter | DateTime | No |
| formResourceList | FormResourceListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| formResourceList | FormResourceOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| AND | ResourceWhereInput | ResourceWhereInput[] | No |
| OR | ResourceWhereInput[] | No |
| NOT | ResourceWhereInput | ResourceWhereInput[] | No |
| name | StringFilter | String | No |
| description | StringFilter | String | No |
| creator | StringFilter | String | No |
| dateCreated | DateTimeFilter | DateTime | No |
| lastChangedBy | StringFilter | String | No |
| lastChangedDate | DateTimeFilter | DateTime | No |
| formResourceList | FormResourceListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| _count | ResourceCountOrderByAggregateInput | No |
| _max | ResourceMaxOrderByAggregateInput | No |
| _min | ResourceMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ResourceScalarWhereWithAggregatesInput | ResourceScalarWhereWithAggregatesInput[] | No |
| OR | ResourceScalarWhereWithAggregatesInput[] | No |
| NOT | ResourceScalarWhereWithAggregatesInput | ResourceScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| uuid | StringWithAggregatesFilter | String | No |
| name | StringWithAggregatesFilter | String | No |
| description | StringWithAggregatesFilter | String | No |
| creator | StringWithAggregatesFilter | String | No |
| dateCreated | DateTimeWithAggregatesFilter | DateTime | No |
| lastChangedBy | StringWithAggregatesFilter | String | No |
| lastChangedDate | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | BlogPostWhereInput | BlogPostWhereInput[] | No |
| OR | BlogPostWhereInput[] | No |
| NOT | BlogPostWhereInput | BlogPostWhereInput[] | No |
| id | StringFilter | String | No |
| title | StringFilter | String | No |
| content | StringFilter | String | No |
| context | JsonFilter | No |
| authorId | StringFilter | String | No |
| spaceTimeCoordinatesId | StringFilter | String | No |
| author | BlogPostAuthorRelationFilter | BlogPostAuthorWhereInput | No |
| spaceTimeCoordinates | SpaceTimeCoordinatesRelationFilter | SpaceTimeCoordinatesWhereInput | No |
| tagArrowList | BlogPostTagArrowListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| title | SortOrder | No |
| content | SortOrder | No |
| context | SortOrder | No |
| authorId | SortOrder | No |
| spaceTimeCoordinatesId | SortOrder | No |
| author | BlogPostAuthorOrderByWithRelationInput | No |
| spaceTimeCoordinates | SpaceTimeCoordinatesOrderByWithRelationInput | No |
| tagArrowList | BlogPostTagArrowOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| spaceTimeCoordinatesId | String | No |
| AND | BlogPostWhereInput | BlogPostWhereInput[] | No |
| OR | BlogPostWhereInput[] | No |
| NOT | BlogPostWhereInput | BlogPostWhereInput[] | No |
| title | StringFilter | String | No |
| content | StringFilter | String | No |
| context | JsonFilter | No |
| authorId | StringFilter | String | No |
| author | BlogPostAuthorRelationFilter | BlogPostAuthorWhereInput | No |
| spaceTimeCoordinates | SpaceTimeCoordinatesRelationFilter | SpaceTimeCoordinatesWhereInput | No |
| tagArrowList | BlogPostTagArrowListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| title | SortOrder | No |
| content | SortOrder | No |
| context | SortOrder | No |
| authorId | SortOrder | No |
| spaceTimeCoordinatesId | SortOrder | No |
| _count | BlogPostCountOrderByAggregateInput | No |
| _max | BlogPostMaxOrderByAggregateInput | No |
| _min | BlogPostMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | BlogPostScalarWhereWithAggregatesInput | BlogPostScalarWhereWithAggregatesInput[] | No |
| OR | BlogPostScalarWhereWithAggregatesInput[] | No |
| NOT | BlogPostScalarWhereWithAggregatesInput | BlogPostScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| title | StringWithAggregatesFilter | String | No |
| content | StringWithAggregatesFilter | String | No |
| context | JsonWithAggregatesFilter | No |
| authorId | StringWithAggregatesFilter | String | No |
| spaceTimeCoordinatesId | StringWithAggregatesFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| AND | BlogPostTagWhereInput | BlogPostTagWhereInput[] | No |
| OR | BlogPostTagWhereInput[] | No |
| NOT | BlogPostTagWhereInput | BlogPostTagWhereInput[] | No |
| id | StringFilter | String | No |
| name | StringFilter | String | No |
| descriptor | StringNullableFilter | String | Null | Yes |
| postArrowList | BlogPostTagArrowListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| descriptor | SortOrder | SortOrderInput | No |
| postArrowList | BlogPostTagArrowOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| AND | BlogPostTagWhereInput | BlogPostTagWhereInput[] | No |
| OR | BlogPostTagWhereInput[] | No |
| NOT | BlogPostTagWhereInput | BlogPostTagWhereInput[] | No |
| name | StringFilter | String | No |
| descriptor | StringNullableFilter | String | Null | Yes |
| postArrowList | BlogPostTagArrowListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| descriptor | SortOrder | SortOrderInput | No |
| _count | BlogPostTagCountOrderByAggregateInput | No |
| _max | BlogPostTagMaxOrderByAggregateInput | No |
| _min | BlogPostTagMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | BlogPostTagScalarWhereWithAggregatesInput | BlogPostTagScalarWhereWithAggregatesInput[] | No |
| OR | BlogPostTagScalarWhereWithAggregatesInput[] | No |
| NOT | BlogPostTagScalarWhereWithAggregatesInput | BlogPostTagScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| name | StringWithAggregatesFilter | String | No |
| descriptor | StringNullableWithAggregatesFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | BlogPostTagArrowWhereInput | BlogPostTagArrowWhereInput[] | No |
| OR | BlogPostTagArrowWhereInput[] | No |
| NOT | BlogPostTagArrowWhereInput | BlogPostTagArrowWhereInput[] | No |
| id | StringFilter | String | No |
| postId | StringFilter | String | No |
| tagId | StringFilter | String | No |
| post | BlogPostRelationFilter | BlogPostWhereInput | No |
| tag | BlogPostTagRelationFilter | BlogPostTagWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| postId | SortOrder | No |
| tagId | SortOrder | No |
| post | BlogPostOrderByWithRelationInput | No |
| tag | BlogPostTagOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| postId_tagId | BlogPostTagArrowPostIdTagIdCompoundUniqueInput | No |
| AND | BlogPostTagArrowWhereInput | BlogPostTagArrowWhereInput[] | No |
| OR | BlogPostTagArrowWhereInput[] | No |
| NOT | BlogPostTagArrowWhereInput | BlogPostTagArrowWhereInput[] | No |
| postId | StringFilter | String | No |
| tagId | StringFilter | String | No |
| post | BlogPostRelationFilter | BlogPostWhereInput | No |
| tag | BlogPostTagRelationFilter | BlogPostTagWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| postId | SortOrder | No |
| tagId | SortOrder | No |
| _count | BlogPostTagArrowCountOrderByAggregateInput | No |
| _max | BlogPostTagArrowMaxOrderByAggregateInput | No |
| _min | BlogPostTagArrowMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | BlogPostTagArrowScalarWhereWithAggregatesInput | BlogPostTagArrowScalarWhereWithAggregatesInput[] | No |
| OR | BlogPostTagArrowScalarWhereWithAggregatesInput[] | No |
| NOT | BlogPostTagArrowScalarWhereWithAggregatesInput | BlogPostTagArrowScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| postId | StringWithAggregatesFilter | String | No |
| tagId | StringWithAggregatesFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| AND | BlogPostAuthorWhereInput | BlogPostAuthorWhereInput[] | No |
| OR | BlogPostAuthorWhereInput[] | No |
| NOT | BlogPostAuthorWhereInput | BlogPostAuthorWhereInput[] | No |
| id | StringFilter | String | No |
| name | StringFilter | String | No |
| blogPostList | BlogPostListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| blogPostList | BlogPostOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| AND | BlogPostAuthorWhereInput | BlogPostAuthorWhereInput[] | No |
| OR | BlogPostAuthorWhereInput[] | No |
| NOT | BlogPostAuthorWhereInput | BlogPostAuthorWhereInput[] | No |
| name | StringFilter | String | No |
| blogPostList | BlogPostListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| _count | BlogPostAuthorCountOrderByAggregateInput | No |
| _max | BlogPostAuthorMaxOrderByAggregateInput | No |
| _min | BlogPostAuthorMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | BlogPostAuthorScalarWhereWithAggregatesInput | BlogPostAuthorScalarWhereWithAggregatesInput[] | No |
| OR | BlogPostAuthorScalarWhereWithAggregatesInput[] | No |
| NOT | BlogPostAuthorScalarWhereWithAggregatesInput | BlogPostAuthorScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| name | StringWithAggregatesFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| AND | SpaceTimeCoordinatesWhereInput | SpaceTimeCoordinatesWhereInput[] | No |
| OR | SpaceTimeCoordinatesWhereInput[] | No |
| NOT | SpaceTimeCoordinatesWhereInput | SpaceTimeCoordinatesWhereInput[] | No |
| id | StringFilter | String | No |
| latitude | FloatFilter | Float | No |
| longitude | FloatFilter | Float | No |
| startTime | FloatFilter | Float | No |
| pauseTime | FloatNullableFilter | Float | Null | Yes |
| stopTime | FloatFilter | Float | No |
| timezone | StringFilter | String | No |
| blogPostId | UuidFilter | String | No |
| BlogPost | BlogPostNullableRelationFilter | BlogPostWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| latitude | SortOrder | No |
| longitude | SortOrder | No |
| startTime | SortOrder | No |
| pauseTime | SortOrder | SortOrderInput | No |
| stopTime | SortOrder | No |
| timezone | SortOrder | No |
| blogPostId | SortOrder | No |
| BlogPost | BlogPostOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| AND | SpaceTimeCoordinatesWhereInput | SpaceTimeCoordinatesWhereInput[] | No |
| OR | SpaceTimeCoordinatesWhereInput[] | No |
| NOT | SpaceTimeCoordinatesWhereInput | SpaceTimeCoordinatesWhereInput[] | No |
| latitude | FloatFilter | Float | No |
| longitude | FloatFilter | Float | No |
| startTime | FloatFilter | Float | No |
| pauseTime | FloatNullableFilter | Float | Null | Yes |
| stopTime | FloatFilter | Float | No |
| timezone | StringFilter | String | No |
| blogPostId | UuidFilter | String | No |
| BlogPost | BlogPostNullableRelationFilter | BlogPostWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| latitude | SortOrder | No |
| longitude | SortOrder | No |
| startTime | SortOrder | No |
| pauseTime | SortOrder | SortOrderInput | No |
| stopTime | SortOrder | No |
| timezone | SortOrder | No |
| blogPostId | SortOrder | No |
| _count | SpaceTimeCoordinatesCountOrderByAggregateInput | No |
| _avg | SpaceTimeCoordinatesAvgOrderByAggregateInput | No |
| _max | SpaceTimeCoordinatesMaxOrderByAggregateInput | No |
| _min | SpaceTimeCoordinatesMinOrderByAggregateInput | No |
| _sum | SpaceTimeCoordinatesSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | SpaceTimeCoordinatesScalarWhereWithAggregatesInput | SpaceTimeCoordinatesScalarWhereWithAggregatesInput[] | No |
| OR | SpaceTimeCoordinatesScalarWhereWithAggregatesInput[] | No |
| NOT | SpaceTimeCoordinatesScalarWhereWithAggregatesInput | SpaceTimeCoordinatesScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| latitude | FloatWithAggregatesFilter | Float | No |
| longitude | FloatWithAggregatesFilter | Float | No |
| startTime | FloatWithAggregatesFilter | Float | No |
| pauseTime | FloatNullableWithAggregatesFilter | Float | Null | Yes |
| stopTime | FloatWithAggregatesFilter | Float | No |
| timezone | StringWithAggregatesFilter | String | No |
| blogPostId | UuidWithAggregatesFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| AND | BudgetEntryWhereInput | BudgetEntryWhereInput[] | No |
| OR | BudgetEntryWhereInput[] | No |
| NOT | BudgetEntryWhereInput | BudgetEntryWhereInput[] | No |
| id | StringFilter | String | No |
| serviceId | StringFilter | String | No |
| cost | FloatFilter | Float | No |
| discount | FloatFilter | Float | No |
| promotion | FloatFilter | Float | No |
| subtotal | FloatFilter | Float | No |
| percentChange | FloatFilter | Float | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| budgetId | StringFilter | String | No |
| service | ServiceRelationFilter | ServiceWhereInput | No |
| budget | BudgetRelationFilter | BudgetWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| serviceId | SortOrder | No |
| cost | SortOrder | No |
| discount | SortOrder | No |
| promotion | SortOrder | No |
| subtotal | SortOrder | No |
| percentChange | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| budgetId | SortOrder | No |
| service | ServiceOrderByWithRelationInput | No |
| budget | BudgetOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| AND | BudgetEntryWhereInput | BudgetEntryWhereInput[] | No |
| OR | BudgetEntryWhereInput[] | No |
| NOT | BudgetEntryWhereInput | BudgetEntryWhereInput[] | No |
| serviceId | StringFilter | String | No |
| cost | FloatFilter | Float | No |
| discount | FloatFilter | Float | No |
| promotion | FloatFilter | Float | No |
| subtotal | FloatFilter | Float | No |
| percentChange | FloatFilter | Float | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| budgetId | StringFilter | String | No |
| service | ServiceRelationFilter | ServiceWhereInput | No |
| budget | BudgetRelationFilter | BudgetWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| serviceId | SortOrder | No |
| cost | SortOrder | No |
| discount | SortOrder | No |
| promotion | SortOrder | No |
| subtotal | SortOrder | No |
| percentChange | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| budgetId | SortOrder | No |
| _count | BudgetEntryCountOrderByAggregateInput | No |
| _avg | BudgetEntryAvgOrderByAggregateInput | No |
| _max | BudgetEntryMaxOrderByAggregateInput | No |
| _min | BudgetEntryMinOrderByAggregateInput | No |
| _sum | BudgetEntrySumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | BudgetEntryScalarWhereWithAggregatesInput | BudgetEntryScalarWhereWithAggregatesInput[] | No |
| OR | BudgetEntryScalarWhereWithAggregatesInput[] | No |
| NOT | BudgetEntryScalarWhereWithAggregatesInput | BudgetEntryScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| serviceId | StringWithAggregatesFilter | String | No |
| cost | FloatWithAggregatesFilter | Float | No |
| discount | FloatWithAggregatesFilter | Float | No |
| promotion | FloatWithAggregatesFilter | Float | No |
| subtotal | FloatWithAggregatesFilter | Float | No |
| percentChange | FloatWithAggregatesFilter | Float | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| budgetId | StringWithAggregatesFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ServiceWhereInput | ServiceWhereInput[] | No |
| OR | ServiceWhereInput[] | No |
| NOT | ServiceWhereInput | ServiceWhereInput[] | No |
| id | StringFilter | String | No |
| description | StringFilter | String | No |
| category | StringFilter | String | No |
| metadata | JsonFilter | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| entryList | BudgetEntryListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| description | SortOrder | No |
| category | SortOrder | No |
| metadata | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| entryList | BudgetEntryOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| AND | ServiceWhereInput | ServiceWhereInput[] | No |
| OR | ServiceWhereInput[] | No |
| NOT | ServiceWhereInput | ServiceWhereInput[] | No |
| description | StringFilter | String | No |
| category | StringFilter | String | No |
| metadata | JsonFilter | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| entryList | BudgetEntryListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| description | SortOrder | No |
| category | SortOrder | No |
| metadata | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| _count | ServiceCountOrderByAggregateInput | No |
| _max | ServiceMaxOrderByAggregateInput | No |
| _min | ServiceMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ServiceScalarWhereWithAggregatesInput | ServiceScalarWhereWithAggregatesInput[] | No |
| OR | ServiceScalarWhereWithAggregatesInput[] | No |
| NOT | ServiceScalarWhereWithAggregatesInput | ServiceScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| description | StringWithAggregatesFilter | String | No |
| category | StringWithAggregatesFilter | String | No |
| metadata | JsonWithAggregatesFilter | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | BudgetWhereInput | BudgetWhereInput[] | No |
| OR | BudgetWhereInput[] | No |
| NOT | BudgetWhereInput | BudgetWhereInput[] | No |
| id | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| fiscalYear | IntFilter | Int | No |
| reportId | StringNullableFilter | String | Null | Yes |
| entryList | BudgetEntryListRelationFilter | No |
| report | ReportNullableRelationFilter | ReportWhereInput | Null | Yes |
| userList | BudgetBudUserListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| fiscalYear | SortOrder | No |
| reportId | SortOrder | SortOrderInput | No |
| entryList | BudgetEntryOrderByRelationAggregateInput | No |
| report | ReportOrderByWithRelationInput | No |
| userList | BudgetBudUserOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| AND | BudgetWhereInput | BudgetWhereInput[] | No |
| OR | BudgetWhereInput[] | No |
| NOT | BudgetWhereInput | BudgetWhereInput[] | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| fiscalYear | IntFilter | Int | No |
| reportId | StringNullableFilter | String | Null | Yes |
| entryList | BudgetEntryListRelationFilter | No |
| report | ReportNullableRelationFilter | ReportWhereInput | Null | Yes |
| userList | BudgetBudUserListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| fiscalYear | SortOrder | No |
| reportId | SortOrder | SortOrderInput | No |
| _count | BudgetCountOrderByAggregateInput | No |
| _avg | BudgetAvgOrderByAggregateInput | No |
| _max | BudgetMaxOrderByAggregateInput | No |
| _min | BudgetMinOrderByAggregateInput | No |
| _sum | BudgetSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | BudgetScalarWhereWithAggregatesInput | BudgetScalarWhereWithAggregatesInput[] | No |
| OR | BudgetScalarWhereWithAggregatesInput[] | No |
| NOT | BudgetScalarWhereWithAggregatesInput | BudgetScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| fiscalYear | IntWithAggregatesFilter | Int | No |
| reportId | StringNullableWithAggregatesFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | ReportWhereInput | ReportWhereInput[] | No |
| OR | ReportWhereInput[] | No |
| NOT | ReportWhereInput | ReportWhereInput[] | No |
| id | StringFilter | String | No |
| budgetId | StringFilter | String | No |
| totalCost | FloatFilter | Float | No |
| totalDiscount | FloatFilter | Float | No |
| totalPromotion | FloatFilter | Float | No |
| totalSubtotal | FloatFilter | Float | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| budget | BudgetRelationFilter | BudgetWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| budgetId | SortOrder | No |
| totalCost | SortOrder | No |
| totalDiscount | SortOrder | No |
| totalPromotion | SortOrder | No |
| totalSubtotal | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| budget | BudgetOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| budgetId | String | No |
| AND | ReportWhereInput | ReportWhereInput[] | No |
| OR | ReportWhereInput[] | No |
| NOT | ReportWhereInput | ReportWhereInput[] | No |
| totalCost | FloatFilter | Float | No |
| totalDiscount | FloatFilter | Float | No |
| totalPromotion | FloatFilter | Float | No |
| totalSubtotal | FloatFilter | Float | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| budget | BudgetRelationFilter | BudgetWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| budgetId | SortOrder | No |
| totalCost | SortOrder | No |
| totalDiscount | SortOrder | No |
| totalPromotion | SortOrder | No |
| totalSubtotal | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| _count | ReportCountOrderByAggregateInput | No |
| _avg | ReportAvgOrderByAggregateInput | No |
| _max | ReportMaxOrderByAggregateInput | No |
| _min | ReportMinOrderByAggregateInput | No |
| _sum | ReportSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ReportScalarWhereWithAggregatesInput | ReportScalarWhereWithAggregatesInput[] | No |
| OR | ReportScalarWhereWithAggregatesInput[] | No |
| NOT | ReportScalarWhereWithAggregatesInput | ReportScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| budgetId | StringWithAggregatesFilter | String | No |
| totalCost | FloatWithAggregatesFilter | Float | No |
| totalDiscount | FloatWithAggregatesFilter | Float | No |
| totalPromotion | FloatWithAggregatesFilter | Float | No |
| totalSubtotal | FloatWithAggregatesFilter | Float | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | BudUserWhereInput | BudUserWhereInput[] | No |
| OR | BudUserWhereInput[] | No |
| NOT | BudUserWhereInput | BudUserWhereInput[] | No |
| id | StringFilter | String | No |
| name | StringFilter | String | No |
| StringFilter | String | No | |
| password | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| budgetList | BudgetBudUserListRelationFilter | No |
| eventList | BudEventListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| SortOrder | No | |
| password | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| budgetList | BudgetBudUserOrderByRelationAggregateInput | No |
| eventList | BudEventOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| String | No | |
| AND | BudUserWhereInput | BudUserWhereInput[] | No |
| OR | BudUserWhereInput[] | No |
| NOT | BudUserWhereInput | BudUserWhereInput[] | No |
| name | StringFilter | String | No |
| password | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| budgetList | BudgetBudUserListRelationFilter | No |
| eventList | BudEventListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| SortOrder | No | |
| password | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| _count | BudUserCountOrderByAggregateInput | No |
| _max | BudUserMaxOrderByAggregateInput | No |
| _min | BudUserMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | BudUserScalarWhereWithAggregatesInput | BudUserScalarWhereWithAggregatesInput[] | No |
| OR | BudUserScalarWhereWithAggregatesInput[] | No |
| NOT | BudUserScalarWhereWithAggregatesInput | BudUserScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| name | StringWithAggregatesFilter | String | No |
| StringWithAggregatesFilter | String | No | |
| password | StringWithAggregatesFilter | String | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | BudgetBudUserWhereInput | BudgetBudUserWhereInput[] | No |
| OR | BudgetBudUserWhereInput[] | No |
| NOT | BudgetBudUserWhereInput | BudgetBudUserWhereInput[] | No |
| userId | StringFilter | String | No |
| budgetId | StringFilter | String | No |
| role | StringFilter | String | No |
| ability | StringFilter | String | No |
| category | StringFilter | String | No |
| user | BudUserRelationFilter | BudUserWhereInput | No |
| budget | BudgetRelationFilter | BudgetWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId | SortOrder | No |
| budgetId | SortOrder | No |
| role | SortOrder | No |
| ability | SortOrder | No |
| category | SortOrder | No |
| user | BudUserOrderByWithRelationInput | No |
| budget | BudgetOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId_budgetId | BudgetBudUserUserIdBudgetIdCompoundUniqueInput | No |
| AND | BudgetBudUserWhereInput | BudgetBudUserWhereInput[] | No |
| OR | BudgetBudUserWhereInput[] | No |
| NOT | BudgetBudUserWhereInput | BudgetBudUserWhereInput[] | No |
| userId | StringFilter | String | No |
| budgetId | StringFilter | String | No |
| role | StringFilter | String | No |
| ability | StringFilter | String | No |
| category | StringFilter | String | No |
| user | BudUserRelationFilter | BudUserWhereInput | No |
| budget | BudgetRelationFilter | BudgetWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId | SortOrder | No |
| budgetId | SortOrder | No |
| role | SortOrder | No |
| ability | SortOrder | No |
| category | SortOrder | No |
| _count | BudgetBudUserCountOrderByAggregateInput | No |
| _max | BudgetBudUserMaxOrderByAggregateInput | No |
| _min | BudgetBudUserMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | BudgetBudUserScalarWhereWithAggregatesInput | BudgetBudUserScalarWhereWithAggregatesInput[] | No |
| OR | BudgetBudUserScalarWhereWithAggregatesInput[] | No |
| NOT | BudgetBudUserScalarWhereWithAggregatesInput | BudgetBudUserScalarWhereWithAggregatesInput[] | No |
| userId | StringWithAggregatesFilter | String | No |
| budgetId | StringWithAggregatesFilter | String | No |
| role | StringWithAggregatesFilter | String | No |
| ability | StringWithAggregatesFilter | String | No |
| category | StringWithAggregatesFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| AND | BudEventWhereInput | BudEventWhereInput[] | No |
| OR | BudEventWhereInput[] | No |
| NOT | BudEventWhereInput | BudEventWhereInput[] | No |
| id | StringFilter | String | No |
| type | StringFilter | String | No |
| description | StringFilter | String | No |
| categoryList | StringNullableListFilter | No |
| metadata | JsonFilter | No |
| budUserId | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| budUser | BudUserRelationFilter | BudUserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| type | SortOrder | No |
| description | SortOrder | No |
| categoryList | SortOrder | No |
| metadata | SortOrder | No |
| budUserId | SortOrder | No |
| createdAt | SortOrder | No |
| budUser | BudUserOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| AND | BudEventWhereInput | BudEventWhereInput[] | No |
| OR | BudEventWhereInput[] | No |
| NOT | BudEventWhereInput | BudEventWhereInput[] | No |
| type | StringFilter | String | No |
| description | StringFilter | String | No |
| categoryList | StringNullableListFilter | No |
| metadata | JsonFilter | No |
| budUserId | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| budUser | BudUserRelationFilter | BudUserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| type | SortOrder | No |
| description | SortOrder | No |
| categoryList | SortOrder | No |
| metadata | SortOrder | No |
| budUserId | SortOrder | No |
| createdAt | SortOrder | No |
| _count | BudEventCountOrderByAggregateInput | No |
| _max | BudEventMaxOrderByAggregateInput | No |
| _min | BudEventMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | BudEventScalarWhereWithAggregatesInput | BudEventScalarWhereWithAggregatesInput[] | No |
| OR | BudEventScalarWhereWithAggregatesInput[] | No |
| NOT | BudEventScalarWhereWithAggregatesInput | BudEventScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| type | StringWithAggregatesFilter | String | No |
| description | StringWithAggregatesFilter | String | No |
| categoryList | StringNullableListFilter | No |
| metadata | JsonWithAggregatesFilter | No |
| budUserId | StringWithAggregatesFilter | String | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| startDatetime | DateTime | No |
| endDatetime | DateTime | No |
| voided | Boolean | No |
| voidedBy | String | No |
| dateVoided | DateTime | No |
| voidReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| appointmentType | AppointmentTypeCreateNestedOneWithoutAppointmentListInput | No |
| patient | PatientCreateNestedOneWithoutAppointmentListInput | No |
| location | LocationCreateNestedOneWithoutAppointmentListInput | No |
| provider | ProviderCreateNestedOneWithoutAppointmentListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| appointmentTypeId | String | No |
| patientId | String | No |
| locationId | String | No |
| providerId | String | No |
| startDatetime | DateTime | No |
| endDatetime | DateTime | No |
| voided | Boolean | No |
| voidedBy | String | No |
| dateVoided | DateTime | No |
| voidReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| startDatetime | DateTime | DateTimeFieldUpdateOperationsInput | No |
| endDatetime | DateTime | DateTimeFieldUpdateOperationsInput | No |
| voided | Boolean | BoolFieldUpdateOperationsInput | No |
| voidedBy | String | StringFieldUpdateOperationsInput | No |
| dateVoided | DateTime | DateTimeFieldUpdateOperationsInput | No |
| voidReason | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| appointmentType | AppointmentTypeUpdateOneRequiredWithoutAppointmentListNestedInput | No |
| patient | PatientUpdateOneRequiredWithoutAppointmentListNestedInput | No |
| location | LocationUpdateOneRequiredWithoutAppointmentListNestedInput | No |
| provider | ProviderUpdateOneRequiredWithoutAppointmentListNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| appointmentTypeId | String | StringFieldUpdateOperationsInput | No |
| patientId | String | StringFieldUpdateOperationsInput | No |
| locationId | String | StringFieldUpdateOperationsInput | No |
| providerId | String | StringFieldUpdateOperationsInput | No |
| startDatetime | DateTime | DateTimeFieldUpdateOperationsInput | No |
| endDatetime | DateTime | DateTimeFieldUpdateOperationsInput | No |
| voided | Boolean | BoolFieldUpdateOperationsInput | No |
| voidedBy | String | StringFieldUpdateOperationsInput | No |
| dateVoided | DateTime | DateTimeFieldUpdateOperationsInput | No |
| voidReason | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| appointmentTypeId | String | No |
| patientId | String | No |
| locationId | String | No |
| providerId | String | No |
| startDatetime | DateTime | No |
| endDatetime | DateTime | No |
| voided | Boolean | No |
| voidedBy | String | No |
| dateVoided | DateTime | No |
| voidReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| startDatetime | DateTime | DateTimeFieldUpdateOperationsInput | No |
| endDatetime | DateTime | DateTimeFieldUpdateOperationsInput | No |
| voided | Boolean | BoolFieldUpdateOperationsInput | No |
| voidedBy | String | StringFieldUpdateOperationsInput | No |
| dateVoided | DateTime | DateTimeFieldUpdateOperationsInput | No |
| voidReason | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| appointmentTypeId | String | StringFieldUpdateOperationsInput | No |
| patientId | String | StringFieldUpdateOperationsInput | No |
| locationId | String | StringFieldUpdateOperationsInput | No |
| providerId | String | StringFieldUpdateOperationsInput | No |
| startDatetime | DateTime | DateTimeFieldUpdateOperationsInput | No |
| endDatetime | DateTime | DateTimeFieldUpdateOperationsInput | No |
| voided | Boolean | BoolFieldUpdateOperationsInput | No |
| voidedBy | String | StringFieldUpdateOperationsInput | No |
| dateVoided | DateTime | DateTimeFieldUpdateOperationsInput | No |
| voidReason | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| duration | Int | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| appointmentList | AppointmentCreateNestedManyWithoutAppointmentTypeInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| duration | Int | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| appointmentList | AppointmentUncheckedCreateNestedManyWithoutAppointmentTypeInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| duration | Int | IntFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| appointmentList | AppointmentUpdateManyWithoutAppointmentTypeNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| duration | Int | IntFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| appointmentList | AppointmentUncheckedUpdateManyWithoutAppointmentTypeNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| duration | Int | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| duration | Int | IntFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| duration | Int | IntFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| address1 | String | No |
| address2 | String | No |
| city | String | No |
| stateProvince | String | No |
| country | String | No |
| postalCode | String | No |
| latitude | Float | No |
| longitude | Float | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| appointmentList | AppointmentCreateNestedManyWithoutLocationInput | No |
| encounterList | EncounterCreateNestedManyWithoutLocationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| address1 | String | No |
| address2 | String | No |
| city | String | No |
| stateProvince | String | No |
| country | String | No |
| postalCode | String | No |
| latitude | Float | No |
| longitude | Float | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| appointmentList | AppointmentUncheckedCreateNestedManyWithoutLocationInput | No |
| encounterList | EncounterUncheckedCreateNestedManyWithoutLocationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| address1 | String | No |
| address2 | String | No |
| city | String | No |
| stateProvince | String | No |
| country | String | No |
| postalCode | String | No |
| latitude | Float | No |
| longitude | Float | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| address1 | String | StringFieldUpdateOperationsInput | No |
| address2 | String | StringFieldUpdateOperationsInput | No |
| city | String | StringFieldUpdateOperationsInput | No |
| stateProvince | String | StringFieldUpdateOperationsInput | No |
| country | String | StringFieldUpdateOperationsInput | No |
| postalCode | String | StringFieldUpdateOperationsInput | No |
| latitude | Float | FloatFieldUpdateOperationsInput | No |
| longitude | Float | FloatFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| address1 | String | StringFieldUpdateOperationsInput | No |
| address2 | String | StringFieldUpdateOperationsInput | No |
| city | String | StringFieldUpdateOperationsInput | No |
| stateProvince | String | StringFieldUpdateOperationsInput | No |
| country | String | StringFieldUpdateOperationsInput | No |
| postalCode | String | StringFieldUpdateOperationsInput | No |
| latitude | Float | FloatFieldUpdateOperationsInput | No |
| longitude | Float | FloatFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| givenName | String | No |
| middleName | String | No |
| familyName | String | No |
| gender | String | No |
| birthdate | DateTime | No |
| dead | Boolean | No |
| deathDate | DateTime | No |
| causeOfDeath | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| appointmentList | AppointmentCreateNestedManyWithoutPatientInput | No |
| encounterList | EncounterCreateNestedManyWithoutPatientInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| givenName | String | No |
| middleName | String | No |
| familyName | String | No |
| gender | String | No |
| birthdate | DateTime | No |
| dead | Boolean | No |
| deathDate | DateTime | No |
| causeOfDeath | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| appointmentList | AppointmentUncheckedCreateNestedManyWithoutPatientInput | No |
| encounterList | EncounterUncheckedCreateNestedManyWithoutPatientInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| givenName | String | StringFieldUpdateOperationsInput | No |
| middleName | String | StringFieldUpdateOperationsInput | No |
| familyName | String | StringFieldUpdateOperationsInput | No |
| gender | String | StringFieldUpdateOperationsInput | No |
| birthdate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| dead | Boolean | BoolFieldUpdateOperationsInput | No |
| deathDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| causeOfDeath | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| appointmentList | AppointmentUpdateManyWithoutPatientNestedInput | No |
| encounterList | EncounterUpdateManyWithoutPatientNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| givenName | String | StringFieldUpdateOperationsInput | No |
| middleName | String | StringFieldUpdateOperationsInput | No |
| familyName | String | StringFieldUpdateOperationsInput | No |
| gender | String | StringFieldUpdateOperationsInput | No |
| birthdate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| dead | Boolean | BoolFieldUpdateOperationsInput | No |
| deathDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| causeOfDeath | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| appointmentList | AppointmentUncheckedUpdateManyWithoutPatientNestedInput | No |
| encounterList | EncounterUncheckedUpdateManyWithoutPatientNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| givenName | String | No |
| middleName | String | No |
| familyName | String | No |
| gender | String | No |
| birthdate | DateTime | No |
| dead | Boolean | No |
| deathDate | DateTime | No |
| causeOfDeath | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| givenName | String | StringFieldUpdateOperationsInput | No |
| middleName | String | StringFieldUpdateOperationsInput | No |
| familyName | String | StringFieldUpdateOperationsInput | No |
| gender | String | StringFieldUpdateOperationsInput | No |
| birthdate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| dead | Boolean | BoolFieldUpdateOperationsInput | No |
| deathDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| causeOfDeath | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| givenName | String | StringFieldUpdateOperationsInput | No |
| middleName | String | StringFieldUpdateOperationsInput | No |
| familyName | String | StringFieldUpdateOperationsInput | No |
| gender | String | StringFieldUpdateOperationsInput | No |
| birthdate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| dead | Boolean | BoolFieldUpdateOperationsInput | No |
| deathDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| causeOfDeath | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| identifier | String | No |
| description | String | No |
| voided | Boolean | No |
| voidedBy | String | No |
| dateVoided | DateTime | No |
| voidReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| appointmentList | AppointmentCreateNestedManyWithoutProviderInput | No |
| encounterList | EncounterCreateNestedManyWithoutProviderInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| identifier | String | No |
| description | String | No |
| voided | Boolean | No |
| voidedBy | String | No |
| dateVoided | DateTime | No |
| voidReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| appointmentList | AppointmentUncheckedCreateNestedManyWithoutProviderInput | No |
| encounterList | EncounterUncheckedCreateNestedManyWithoutProviderInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| identifier | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| voided | Boolean | BoolFieldUpdateOperationsInput | No |
| voidedBy | String | StringFieldUpdateOperationsInput | No |
| dateVoided | DateTime | DateTimeFieldUpdateOperationsInput | No |
| voidReason | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| appointmentList | AppointmentUpdateManyWithoutProviderNestedInput | No |
| encounterList | EncounterUpdateManyWithoutProviderNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| identifier | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| voided | Boolean | BoolFieldUpdateOperationsInput | No |
| voidedBy | String | StringFieldUpdateOperationsInput | No |
| dateVoided | DateTime | DateTimeFieldUpdateOperationsInput | No |
| voidReason | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| appointmentList | AppointmentUncheckedUpdateManyWithoutProviderNestedInput | No |
| encounterList | EncounterUncheckedUpdateManyWithoutProviderNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| identifier | String | No |
| description | String | No |
| voided | Boolean | No |
| voidedBy | String | No |
| dateVoided | DateTime | No |
| voidReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| identifier | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| voided | Boolean | BoolFieldUpdateOperationsInput | No |
| voidedBy | String | StringFieldUpdateOperationsInput | No |
| dateVoided | DateTime | DateTimeFieldUpdateOperationsInput | No |
| voidReason | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| identifier | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| voided | Boolean | BoolFieldUpdateOperationsInput | No |
| voidedBy | String | StringFieldUpdateOperationsInput | No |
| dateVoided | DateTime | DateTimeFieldUpdateOperationsInput | No |
| voidReason | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| version | String | No |
| retired | Boolean | No |
| retiredBy | String | No |
| dateRetired | DateTime | No |
| retiredReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| formEncounterList | FormEncounterCreateNestedManyWithoutFormInput | No |
| formResourceList | FormResourceCreateNestedManyWithoutFormInput | No |
| formSubmissionList | FormSubmissionCreateNestedManyWithoutFormInput | No |
| dield | FieldCreateNestedOneWithoutFormListInput | No |
| encounterList | EncounterCreateNestedManyWithoutFormInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| version | String | No |
| retired | Boolean | No |
| retiredBy | String | No |
| dateRetired | DateTime | No |
| retiredReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| fieldId | String | Null | Yes |
| formEncounterList | FormEncounterUncheckedCreateNestedManyWithoutFormInput | No |
| formResourceList | FormResourceUncheckedCreateNestedManyWithoutFormInput | No |
| formSubmissionList | FormSubmissionUncheckedCreateNestedManyWithoutFormInput | No |
| encounterList | EncounterUncheckedCreateNestedManyWithoutFormInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| version | String | No |
| retired | Boolean | No |
| retiredBy | String | No |
| dateRetired | DateTime | No |
| retiredReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| fieldId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| retired | Boolean | BoolFieldUpdateOperationsInput | No |
| retiredBy | String | StringFieldUpdateOperationsInput | No |
| dateRetired | DateTime | DateTimeFieldUpdateOperationsInput | No |
| retiredReason | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| retired | Boolean | BoolFieldUpdateOperationsInput | No |
| retiredBy | String | StringFieldUpdateOperationsInput | No |
| dateRetired | DateTime | DateTimeFieldUpdateOperationsInput | No |
| retiredReason | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| fieldId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| form | FormCreateNestedOneWithoutFormEncounterListInput | No |
| encounter | EncounterCreateNestedOneWithoutFormEncounterListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| formId | String | No |
| encounterId | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| form | FormUpdateOneRequiredWithoutFormEncounterListNestedInput | No |
| encounter | EncounterUpdateOneRequiredWithoutFormEncounterListNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| formId | String | StringFieldUpdateOperationsInput | No |
| encounterId | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| formId | String | No |
| encounterId | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| formId | String | StringFieldUpdateOperationsInput | No |
| encounterId | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| form | FormCreateNestedOneWithoutFormResourceListInput | No |
| resource | ResourceCreateNestedOneWithoutFormResourceListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| formId | String | No |
| resourceId | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| form | FormUpdateOneRequiredWithoutFormResourceListNestedInput | No |
| resource | ResourceUpdateOneRequiredWithoutFormResourceListNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| formId | String | StringFieldUpdateOperationsInput | No |
| resourceId | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| formId | String | No |
| resourceId | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| formId | String | StringFieldUpdateOperationsInput | No |
| resourceId | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| submissionDate | DateTime | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| form | FormCreateNestedOneWithoutFormSubmissionListInput | No |
| encounter | EncounterCreateNestedOneWithoutFormSubmissionListInput | No |
| fieldAnswerList | FieldAnswerCreateNestedManyWithoutFormSubmissionInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| formId | String | No |
| encounterId | String | No |
| submissionDate | DateTime | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| fieldAnswerList | FieldAnswerUncheckedCreateNestedManyWithoutFormSubmissionInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| submissionDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| form | FormUpdateOneRequiredWithoutFormSubmissionListNestedInput | No |
| encounter | EncounterUpdateOneRequiredWithoutFormSubmissionListNestedInput | No |
| fieldAnswerList | FieldAnswerUpdateManyWithoutFormSubmissionNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| formId | String | StringFieldUpdateOperationsInput | No |
| encounterId | String | StringFieldUpdateOperationsInput | No |
| submissionDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| fieldAnswerList | FieldAnswerUncheckedUpdateManyWithoutFormSubmissionNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| formId | String | No |
| encounterId | String | No |
| submissionDate | DateTime | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| submissionDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| formId | String | StringFieldUpdateOperationsInput | No |
| encounterId | String | StringFieldUpdateOperationsInput | No |
| submissionDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| fieldType | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| concept | ConceptCreateNestedOneWithoutFieldListInput | No |
| formList | FormCreateNestedManyWithoutDieldInput | No |
| fieldAnswerList | FieldAnswerCreateNestedManyWithoutFieldInput | No |
| fieldOptionList | FieldOptionCreateNestedManyWithoutFieldInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| fieldType | String | No |
| conceptId | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| formList | FormUncheckedCreateNestedManyWithoutDieldInput | No |
| fieldAnswerList | FieldAnswerUncheckedCreateNestedManyWithoutFieldInput | No |
| fieldOptionList | FieldOptionUncheckedCreateNestedManyWithoutFieldInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| fieldType | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| concept | ConceptUpdateOneRequiredWithoutFieldListNestedInput | No |
| formList | FormUpdateManyWithoutDieldNestedInput | No |
| fieldAnswerList | FieldAnswerUpdateManyWithoutFieldNestedInput | No |
| fieldOptionList | FieldOptionUpdateManyWithoutFieldNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| fieldType | String | StringFieldUpdateOperationsInput | No |
| conceptId | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| formList | FormUncheckedUpdateManyWithoutDieldNestedInput | No |
| fieldAnswerList | FieldAnswerUncheckedUpdateManyWithoutFieldNestedInput | No |
| fieldOptionList | FieldOptionUncheckedUpdateManyWithoutFieldNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| fieldType | String | No |
| conceptId | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| fieldType | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| fieldType | String | StringFieldUpdateOperationsInput | No |
| conceptId | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| value | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| formSubmission | FormSubmissionCreateNestedOneWithoutFieldAnswerListInput | No |
| field | FieldCreateNestedOneWithoutFieldAnswerListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| formSubmissionId | String | No |
| fieldId | String | No |
| value | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| value | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| formSubmission | FormSubmissionUpdateOneRequiredWithoutFieldAnswerListNestedInput | No |
| field | FieldUpdateOneRequiredWithoutFieldAnswerListNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| formSubmissionId | String | StringFieldUpdateOperationsInput | No |
| fieldId | String | StringFieldUpdateOperationsInput | No |
| value | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| formSubmissionId | String | No |
| fieldId | String | No |
| value | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| value | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| formSubmissionId | String | StringFieldUpdateOperationsInput | No |
| fieldId | String | StringFieldUpdateOperationsInput | No |
| value | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| field | FieldCreateNestedOneWithoutFieldOptionListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| fieldId | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| field | FieldUpdateOneRequiredWithoutFieldOptionListNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| fieldId | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| fieldId | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| fieldId | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| startDatetime | DateTime | No |
| endDatetime | DateTime | No |
| voided | Boolean | No |
| voidedBy | String | No |
| dateVoided | DateTime | No |
| voidReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| encounterType | EncounterTypeCreateNestedOneWithoutEncounterListInput | No |
| patient | PatientCreateNestedOneWithoutEncounterListInput | No |
| location | LocationCreateNestedOneWithoutEncounterListInput | No |
| form | FormCreateNestedOneWithoutEncounterListInput | No |
| provider | ProviderCreateNestedOneWithoutEncounterListInput | No |
| formEncounterList | FormEncounterCreateNestedManyWithoutEncounterInput | No |
| formSubmissionList | FormSubmissionCreateNestedManyWithoutEncounterInput | No |
| obsList | ObsCreateNestedManyWithoutEncounterInput | No |
| orderList | OrderCreateNestedManyWithoutEncounterInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| encounterTypeId | String | No |
| patientId | String | No |
| locationId | String | No |
| formId | String | No |
| providerId | String | No |
| startDatetime | DateTime | No |
| endDatetime | DateTime | No |
| voided | Boolean | No |
| voidedBy | String | No |
| dateVoided | DateTime | No |
| voidReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| formEncounterList | FormEncounterUncheckedCreateNestedManyWithoutEncounterInput | No |
| formSubmissionList | FormSubmissionUncheckedCreateNestedManyWithoutEncounterInput | No |
| obsList | ObsUncheckedCreateNestedManyWithoutEncounterInput | No |
| orderList | OrderUncheckedCreateNestedManyWithoutEncounterInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| encounterTypeId | String | No |
| patientId | String | No |
| locationId | String | No |
| formId | String | No |
| providerId | String | No |
| startDatetime | DateTime | No |
| endDatetime | DateTime | No |
| voided | Boolean | No |
| voidedBy | String | No |
| dateVoided | DateTime | No |
| voidReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| startDatetime | DateTime | DateTimeFieldUpdateOperationsInput | No |
| endDatetime | DateTime | DateTimeFieldUpdateOperationsInput | No |
| voided | Boolean | BoolFieldUpdateOperationsInput | No |
| voidedBy | String | StringFieldUpdateOperationsInput | No |
| dateVoided | DateTime | DateTimeFieldUpdateOperationsInput | No |
| voidReason | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| encounterTypeId | String | StringFieldUpdateOperationsInput | No |
| patientId | String | StringFieldUpdateOperationsInput | No |
| locationId | String | StringFieldUpdateOperationsInput | No |
| formId | String | StringFieldUpdateOperationsInput | No |
| providerId | String | StringFieldUpdateOperationsInput | No |
| startDatetime | DateTime | DateTimeFieldUpdateOperationsInput | No |
| endDatetime | DateTime | DateTimeFieldUpdateOperationsInput | No |
| voided | Boolean | BoolFieldUpdateOperationsInput | No |
| voidedBy | String | StringFieldUpdateOperationsInput | No |
| dateVoided | DateTime | DateTimeFieldUpdateOperationsInput | No |
| voidReason | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| encounterList | EncounterCreateNestedManyWithoutEncounterTypeInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| encounterList | EncounterUncheckedCreateNestedManyWithoutEncounterTypeInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| encounterList | EncounterUpdateManyWithoutEncounterTypeNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| encounterList | EncounterUncheckedUpdateManyWithoutEncounterTypeNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| obsDatetime | DateTime | No |
| valueDatetime | DateTime | No |
| valueNumeric | Float | No |
| valueText | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| concept | ConceptCreateNestedOneWithoutObsListInput | No |
| encounter | EncounterCreateNestedOneWithoutObsListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| conceptId | String | No |
| encounterId | String | No |
| obsDatetime | DateTime | No |
| valueDatetime | DateTime | No |
| valueNumeric | Float | No |
| valueText | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| obsDatetime | DateTime | DateTimeFieldUpdateOperationsInput | No |
| valueDatetime | DateTime | DateTimeFieldUpdateOperationsInput | No |
| valueNumeric | Float | FloatFieldUpdateOperationsInput | No |
| valueText | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| concept | ConceptUpdateOneRequiredWithoutObsListNestedInput | No |
| encounter | EncounterUpdateOneRequiredWithoutObsListNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| conceptId | String | StringFieldUpdateOperationsInput | No |
| encounterId | String | StringFieldUpdateOperationsInput | No |
| obsDatetime | DateTime | DateTimeFieldUpdateOperationsInput | No |
| valueDatetime | DateTime | DateTimeFieldUpdateOperationsInput | No |
| valueNumeric | Float | FloatFieldUpdateOperationsInput | No |
| valueText | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| conceptId | String | No |
| encounterId | String | No |
| obsDatetime | DateTime | No |
| valueDatetime | DateTime | No |
| valueNumeric | Float | No |
| valueText | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| obsDatetime | DateTime | DateTimeFieldUpdateOperationsInput | No |
| valueDatetime | DateTime | DateTimeFieldUpdateOperationsInput | No |
| valueNumeric | Float | FloatFieldUpdateOperationsInput | No |
| valueText | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| conceptId | String | StringFieldUpdateOperationsInput | No |
| encounterId | String | StringFieldUpdateOperationsInput | No |
| obsDatetime | DateTime | DateTimeFieldUpdateOperationsInput | No |
| valueDatetime | DateTime | DateTimeFieldUpdateOperationsInput | No |
| valueNumeric | Float | FloatFieldUpdateOperationsInput | No |
| valueText | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| orderDatetime | DateTime | No |
| instructions | String | No |
| dosage | String | No |
| route | String | No |
| frequency | String | No |
| asNeeded | Boolean | No |
| prn | Boolean | No |
| quantity | Int | No |
| units | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| concept | ConceptCreateNestedOneWithoutOrderListInput | No |
| encounter | EncounterCreateNestedOneWithoutOrderListInput | No |
| OrderFrequency | OrderFrequencyCreateNestedOneWithoutOrderListInput | No |
| OrderRoute | OrderRouteCreateNestedOneWithoutOrderListInput | No |
| OrderType | OrderTypeCreateNestedOneWithoutOrderListInput | No |
| OrderUnit | OrderUnitCreateNestedOneWithoutOrderListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| conceptId | String | No |
| encounterId | String | No |
| orderDatetime | DateTime | No |
| instructions | String | No |
| dosage | String | No |
| route | String | No |
| frequency | String | No |
| asNeeded | Boolean | No |
| prn | Boolean | No |
| quantity | Int | No |
| units | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| orderFrequencyId | String | Null | Yes |
| orderRouteId | String | Null | Yes |
| orderTypeId | String | Null | Yes |
| orderUnitId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| conceptId | String | No |
| encounterId | String | No |
| orderDatetime | DateTime | No |
| instructions | String | No |
| dosage | String | No |
| route | String | No |
| frequency | String | No |
| asNeeded | Boolean | No |
| prn | Boolean | No |
| quantity | Int | No |
| units | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| orderFrequencyId | String | Null | Yes |
| orderRouteId | String | Null | Yes |
| orderTypeId | String | Null | Yes |
| orderUnitId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| orderDatetime | DateTime | DateTimeFieldUpdateOperationsInput | No |
| instructions | String | StringFieldUpdateOperationsInput | No |
| dosage | String | StringFieldUpdateOperationsInput | No |
| route | String | StringFieldUpdateOperationsInput | No |
| frequency | String | StringFieldUpdateOperationsInput | No |
| asNeeded | Boolean | BoolFieldUpdateOperationsInput | No |
| prn | Boolean | BoolFieldUpdateOperationsInput | No |
| quantity | Int | IntFieldUpdateOperationsInput | No |
| units | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| orderList | OrderCreateNestedManyWithoutOrderFrequencyInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| orderList | OrderUncheckedCreateNestedManyWithoutOrderFrequencyInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| orderList | OrderUpdateManyWithoutOrderFrequencyNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| orderList | OrderUncheckedUpdateManyWithoutOrderFrequencyNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| orderList | OrderCreateNestedManyWithoutOrderRouteInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| orderList | OrderUncheckedCreateNestedManyWithoutOrderRouteInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| orderList | OrderUpdateManyWithoutOrderRouteNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| orderList | OrderUncheckedUpdateManyWithoutOrderRouteNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| orderList | OrderCreateNestedManyWithoutOrderTypeInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| orderList | OrderUncheckedCreateNestedManyWithoutOrderTypeInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| orderList | OrderUpdateManyWithoutOrderTypeNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| orderList | OrderUncheckedUpdateManyWithoutOrderTypeNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| orderList | OrderCreateNestedManyWithoutOrderUnitInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| orderList | OrderUncheckedCreateNestedManyWithoutOrderUnitInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| orderList | OrderUpdateManyWithoutOrderUnitNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| orderList | OrderUncheckedUpdateManyWithoutOrderUnitNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| dataType | String | No |
| class | String | No |
| isRetired | Boolean | No |
| retiredBy | String | No |
| dateRetired | DateTime | No |
| retiredReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| conceptClassId | String | Null | Yes |
| conceptDatatypeId | String | Null | Yes |
| conceptMapId | String | Null | Yes |
| conceptSetId | String | Null | Yes |
| conceptSourceId | String | Null | Yes |
| metaList | ConceptAnswerUncheckedCreateNestedManyWithoutConceptInput | No |
| answerList | ConceptAnswerUncheckedCreateNestedManyWithoutAnswerConceptInput | No |
| fieldList | FieldUncheckedCreateNestedManyWithoutConceptInput | No |
| obsList | ObsUncheckedCreateNestedManyWithoutConceptInput | No |
| orderList | OrderUncheckedCreateNestedManyWithoutConceptInput | No |
| conceptNameList | ConceptNameUncheckedCreateNestedManyWithoutConceptInput | No |
| conceptNumericList | ConceptNumericUncheckedCreateNestedManyWithoutConceptInput | No |
| conceptProposalList | ConceptProposalUncheckedCreateNestedManyWithoutConceptInput | No |
| conceptWordList | ConceptWordUncheckedCreateNestedManyWithoutConceptInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| dataType | String | No |
| class | String | No |
| isRetired | Boolean | No |
| retiredBy | String | No |
| dateRetired | DateTime | No |
| retiredReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| conceptClassId | String | Null | Yes |
| conceptDatatypeId | String | Null | Yes |
| conceptMapId | String | Null | Yes |
| conceptSetId | String | Null | Yes |
| conceptSourceId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| dataType | String | StringFieldUpdateOperationsInput | No |
| class | String | StringFieldUpdateOperationsInput | No |
| isRetired | Boolean | BoolFieldUpdateOperationsInput | No |
| retiredBy | String | StringFieldUpdateOperationsInput | No |
| dateRetired | DateTime | DateTimeFieldUpdateOperationsInput | No |
| retiredReason | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| concept | ConceptCreateNestedOneWithoutMetaListInput | No |
| answerConcept | ConceptCreateNestedOneWithoutAnswerListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| conceptId | String | No |
| answerConceptId | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| concept | ConceptUpdateOneRequiredWithoutMetaListNestedInput | No |
| answerConcept | ConceptUpdateOneRequiredWithoutAnswerListNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| conceptId | String | StringFieldUpdateOperationsInput | No |
| answerConceptId | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| conceptId | String | No |
| answerConceptId | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| conceptId | String | StringFieldUpdateOperationsInput | No |
| answerConceptId | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| conceptList | ConceptCreateNestedManyWithoutConceptClassInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| conceptList | ConceptUncheckedCreateNestedManyWithoutConceptClassInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| conceptList | ConceptUpdateManyWithoutConceptClassNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| conceptList | ConceptUncheckedUpdateManyWithoutConceptClassNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| conceptList | ConceptCreateNestedManyWithoutConceptDatatypeInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| conceptList | ConceptUncheckedCreateNestedManyWithoutConceptDatatypeInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| conceptList | ConceptUpdateManyWithoutConceptDatatypeNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| conceptList | ConceptUncheckedUpdateManyWithoutConceptDatatypeNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| conceptList | ConceptCreateNestedManyWithoutConceptMapInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| conceptList | ConceptUncheckedCreateNestedManyWithoutConceptMapInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| conceptList | ConceptUpdateManyWithoutConceptMapNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| conceptList | ConceptUncheckedUpdateManyWithoutConceptMapNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| locale | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| concept | ConceptCreateNestedOneWithoutConceptNameListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| conceptId | String | No |
| name | String | No |
| locale | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| locale | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| concept | ConceptUpdateOneRequiredWithoutConceptNameListNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| conceptId | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| locale | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| conceptId | String | No |
| name | String | No |
| locale | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| locale | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| conceptId | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| locale | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| hiAbsolute | Float | No |
| hiCritical | Float | No |
| hiNormal | Float | No |
| lowAbsolute | Float | No |
| lowCritical | Float | No |
| lowNormal | Float | No |
| units | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| concept | ConceptCreateNestedOneWithoutConceptNumericListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| conceptId | String | No |
| hiAbsolute | Float | No |
| hiCritical | Float | No |
| hiNormal | Float | No |
| lowAbsolute | Float | No |
| lowCritical | Float | No |
| lowNormal | Float | No |
| units | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| hiAbsolute | Float | FloatFieldUpdateOperationsInput | No |
| hiCritical | Float | FloatFieldUpdateOperationsInput | No |
| hiNormal | Float | FloatFieldUpdateOperationsInput | No |
| lowAbsolute | Float | FloatFieldUpdateOperationsInput | No |
| lowCritical | Float | FloatFieldUpdateOperationsInput | No |
| lowNormal | Float | FloatFieldUpdateOperationsInput | No |
| units | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| concept | ConceptUpdateOneRequiredWithoutConceptNumericListNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| conceptId | String | StringFieldUpdateOperationsInput | No |
| hiAbsolute | Float | FloatFieldUpdateOperationsInput | No |
| hiCritical | Float | FloatFieldUpdateOperationsInput | No |
| hiNormal | Float | FloatFieldUpdateOperationsInput | No |
| lowAbsolute | Float | FloatFieldUpdateOperationsInput | No |
| lowCritical | Float | FloatFieldUpdateOperationsInput | No |
| lowNormal | Float | FloatFieldUpdateOperationsInput | No |
| units | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| conceptId | String | No |
| hiAbsolute | Float | No |
| hiCritical | Float | No |
| hiNormal | Float | No |
| lowAbsolute | Float | No |
| lowCritical | Float | No |
| lowNormal | Float | No |
| units | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| hiAbsolute | Float | FloatFieldUpdateOperationsInput | No |
| hiCritical | Float | FloatFieldUpdateOperationsInput | No |
| hiNormal | Float | FloatFieldUpdateOperationsInput | No |
| lowAbsolute | Float | FloatFieldUpdateOperationsInput | No |
| lowCritical | Float | FloatFieldUpdateOperationsInput | No |
| lowNormal | Float | FloatFieldUpdateOperationsInput | No |
| units | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| conceptId | String | StringFieldUpdateOperationsInput | No |
| hiAbsolute | Float | FloatFieldUpdateOperationsInput | No |
| hiCritical | Float | FloatFieldUpdateOperationsInput | No |
| hiNormal | Float | FloatFieldUpdateOperationsInput | No |
| lowAbsolute | Float | FloatFieldUpdateOperationsInput | No |
| lowCritical | Float | FloatFieldUpdateOperationsInput | No |
| lowNormal | Float | FloatFieldUpdateOperationsInput | No |
| units | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| concept | ConceptCreateNestedOneWithoutConceptProposalListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| conceptId | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| concept | ConceptUpdateOneRequiredWithoutConceptProposalListNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| conceptId | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| conceptId | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| conceptId | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| conceptList | ConceptCreateNestedManyWithoutConceptSetInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| conceptList | ConceptUncheckedCreateNestedManyWithoutConceptSetInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| conceptList | ConceptUpdateManyWithoutConceptSetNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| conceptList | ConceptUncheckedUpdateManyWithoutConceptSetNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| conceptList | ConceptCreateNestedManyWithoutConceptSourceInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| conceptList | ConceptUncheckedCreateNestedManyWithoutConceptSourceInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| conceptList | ConceptUpdateManyWithoutConceptSourceNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| conceptList | ConceptUncheckedUpdateManyWithoutConceptSourceNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| word | String | No |
| locale | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| concept | ConceptCreateNestedOneWithoutConceptWordListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| conceptId | String | No |
| word | String | No |
| locale | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| word | String | StringFieldUpdateOperationsInput | No |
| locale | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| concept | ConceptUpdateOneRequiredWithoutConceptWordListNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| conceptId | String | StringFieldUpdateOperationsInput | No |
| word | String | StringFieldUpdateOperationsInput | No |
| locale | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| conceptId | String | No |
| word | String | No |
| locale | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| word | String | StringFieldUpdateOperationsInput | No |
| locale | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| conceptId | String | StringFieldUpdateOperationsInput | No |
| word | String | StringFieldUpdateOperationsInput | No |
| locale | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| formResourceList | FormResourceCreateNestedManyWithoutResourceInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| formResourceList | FormResourceUncheckedCreateNestedManyWithoutResourceInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| formResourceList | FormResourceUpdateManyWithoutResourceNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| formResourceList | FormResourceUncheckedUpdateManyWithoutResourceNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| title | String | No |
| content | String | No |
| context | JsonNullValueInput | Json | No |
| author | BlogPostAuthorCreateNestedOneWithoutBlogPostListInput | No |
| spaceTimeCoordinates | SpaceTimeCoordinatesCreateNestedOneWithoutBlogPostInput | No |
| tagArrowList | BlogPostTagArrowCreateNestedManyWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| title | String | No |
| content | String | No |
| context | JsonNullValueInput | Json | No |
| authorId | String | No |
| spaceTimeCoordinatesId | String | No |
| tagArrowList | BlogPostTagArrowUncheckedCreateNestedManyWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| content | String | StringFieldUpdateOperationsInput | No |
| context | JsonNullValueInput | Json | No |
| author | BlogPostAuthorUpdateOneRequiredWithoutBlogPostListNestedInput | No |
| spaceTimeCoordinates | SpaceTimeCoordinatesUpdateOneRequiredWithoutBlogPostNestedInput | No |
| tagArrowList | BlogPostTagArrowUpdateManyWithoutPostNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| content | String | StringFieldUpdateOperationsInput | No |
| context | JsonNullValueInput | Json | No |
| authorId | String | StringFieldUpdateOperationsInput | No |
| spaceTimeCoordinatesId | String | StringFieldUpdateOperationsInput | No |
| tagArrowList | BlogPostTagArrowUncheckedUpdateManyWithoutPostNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| title | String | No |
| content | String | No |
| context | JsonNullValueInput | Json | No |
| authorId | String | No |
| spaceTimeCoordinatesId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| content | String | StringFieldUpdateOperationsInput | No |
| context | JsonNullValueInput | Json | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| content | String | StringFieldUpdateOperationsInput | No |
| context | JsonNullValueInput | Json | No |
| authorId | String | StringFieldUpdateOperationsInput | No |
| spaceTimeCoordinatesId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| descriptor | String | Null | Yes |
| postArrowList | BlogPostTagArrowCreateNestedManyWithoutTagInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| descriptor | String | Null | Yes |
| postArrowList | BlogPostTagArrowUncheckedCreateNestedManyWithoutTagInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| descriptor | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| postArrowList | BlogPostTagArrowUpdateManyWithoutTagNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| descriptor | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| postArrowList | BlogPostTagArrowUncheckedUpdateManyWithoutTagNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| descriptor | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| descriptor | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| descriptor | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| post | BlogPostCreateNestedOneWithoutTagArrowListInput | No |
| tag | BlogPostTagCreateNestedOneWithoutPostArrowListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| postId | String | No |
| tagId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| post | BlogPostUpdateOneRequiredWithoutTagArrowListNestedInput | No |
| tag | BlogPostTagUpdateOneRequiredWithoutPostArrowListNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| postId | String | StringFieldUpdateOperationsInput | No |
| tagId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| postId | String | No |
| tagId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| postId | String | StringFieldUpdateOperationsInput | No |
| tagId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| blogPostList | BlogPostCreateNestedManyWithoutAuthorInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| blogPostList | BlogPostUncheckedCreateNestedManyWithoutAuthorInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| blogPostList | BlogPostUpdateManyWithoutAuthorNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| blogPostList | BlogPostUncheckedUpdateManyWithoutAuthorNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| latitude | Float | No |
| longitude | Float | No |
| startTime | Float | No |
| pauseTime | Float | Null | Yes |
| stopTime | Float | No |
| timezone | String | No |
| blogPostId | String | No |
| BlogPost | BlogPostCreateNestedOneWithoutSpaceTimeCoordinatesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| latitude | Float | No |
| longitude | Float | No |
| startTime | Float | No |
| pauseTime | Float | Null | Yes |
| stopTime | Float | No |
| timezone | String | No |
| blogPostId | String | No |
| BlogPost | BlogPostUncheckedCreateNestedOneWithoutSpaceTimeCoordinatesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| latitude | Float | FloatFieldUpdateOperationsInput | No |
| longitude | Float | FloatFieldUpdateOperationsInput | No |
| startTime | Float | FloatFieldUpdateOperationsInput | No |
| pauseTime | Float | NullableFloatFieldUpdateOperationsInput | Null | Yes |
| stopTime | Float | FloatFieldUpdateOperationsInput | No |
| timezone | String | StringFieldUpdateOperationsInput | No |
| blogPostId | String | StringFieldUpdateOperationsInput | No |
| BlogPost | BlogPostUpdateOneWithoutSpaceTimeCoordinatesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| latitude | Float | FloatFieldUpdateOperationsInput | No |
| longitude | Float | FloatFieldUpdateOperationsInput | No |
| startTime | Float | FloatFieldUpdateOperationsInput | No |
| pauseTime | Float | NullableFloatFieldUpdateOperationsInput | Null | Yes |
| stopTime | Float | FloatFieldUpdateOperationsInput | No |
| timezone | String | StringFieldUpdateOperationsInput | No |
| blogPostId | String | StringFieldUpdateOperationsInput | No |
| BlogPost | BlogPostUncheckedUpdateOneWithoutSpaceTimeCoordinatesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| latitude | Float | No |
| longitude | Float | No |
| startTime | Float | No |
| pauseTime | Float | Null | Yes |
| stopTime | Float | No |
| timezone | String | No |
| blogPostId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| latitude | Float | FloatFieldUpdateOperationsInput | No |
| longitude | Float | FloatFieldUpdateOperationsInput | No |
| startTime | Float | FloatFieldUpdateOperationsInput | No |
| pauseTime | Float | NullableFloatFieldUpdateOperationsInput | Null | Yes |
| stopTime | Float | FloatFieldUpdateOperationsInput | No |
| timezone | String | StringFieldUpdateOperationsInput | No |
| blogPostId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| latitude | Float | FloatFieldUpdateOperationsInput | No |
| longitude | Float | FloatFieldUpdateOperationsInput | No |
| startTime | Float | FloatFieldUpdateOperationsInput | No |
| pauseTime | Float | NullableFloatFieldUpdateOperationsInput | Null | Yes |
| stopTime | Float | FloatFieldUpdateOperationsInput | No |
| timezone | String | StringFieldUpdateOperationsInput | No |
| blogPostId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| cost | Float | No |
| discount | Float | No |
| promotion | Float | No |
| subtotal | Float | No |
| percentChange | Float | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| service | ServiceCreateNestedOneWithoutEntryListInput | No |
| budget | BudgetCreateNestedOneWithoutEntryListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| serviceId | String | No |
| cost | Float | No |
| discount | Float | No |
| promotion | Float | No |
| subtotal | Float | No |
| percentChange | Float | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| budgetId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| cost | Float | FloatFieldUpdateOperationsInput | No |
| discount | Float | FloatFieldUpdateOperationsInput | No |
| promotion | Float | FloatFieldUpdateOperationsInput | No |
| subtotal | Float | FloatFieldUpdateOperationsInput | No |
| percentChange | Float | FloatFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| service | ServiceUpdateOneRequiredWithoutEntryListNestedInput | No |
| budget | BudgetUpdateOneRequiredWithoutEntryListNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| serviceId | String | StringFieldUpdateOperationsInput | No |
| cost | Float | FloatFieldUpdateOperationsInput | No |
| discount | Float | FloatFieldUpdateOperationsInput | No |
| promotion | Float | FloatFieldUpdateOperationsInput | No |
| subtotal | Float | FloatFieldUpdateOperationsInput | No |
| percentChange | Float | FloatFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| budgetId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| serviceId | String | No |
| cost | Float | No |
| discount | Float | No |
| promotion | Float | No |
| subtotal | Float | No |
| percentChange | Float | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| budgetId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| cost | Float | FloatFieldUpdateOperationsInput | No |
| discount | Float | FloatFieldUpdateOperationsInput | No |
| promotion | Float | FloatFieldUpdateOperationsInput | No |
| subtotal | Float | FloatFieldUpdateOperationsInput | No |
| percentChange | Float | FloatFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| serviceId | String | StringFieldUpdateOperationsInput | No |
| cost | Float | FloatFieldUpdateOperationsInput | No |
| discount | Float | FloatFieldUpdateOperationsInput | No |
| promotion | Float | FloatFieldUpdateOperationsInput | No |
| subtotal | Float | FloatFieldUpdateOperationsInput | No |
| percentChange | Float | FloatFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| budgetId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| description | String | No |
| category | String | No |
| metadata | JsonNullValueInput | Json | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| entryList | BudgetEntryCreateNestedManyWithoutServiceInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| description | String | No |
| category | String | No |
| metadata | JsonNullValueInput | Json | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| entryList | BudgetEntryUncheckedCreateNestedManyWithoutServiceInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| category | String | StringFieldUpdateOperationsInput | No |
| metadata | JsonNullValueInput | Json | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| entryList | BudgetEntryUpdateManyWithoutServiceNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| category | String | StringFieldUpdateOperationsInput | No |
| metadata | JsonNullValueInput | Json | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| entryList | BudgetEntryUncheckedUpdateManyWithoutServiceNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| description | String | No |
| category | String | No |
| metadata | JsonNullValueInput | Json | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| category | String | StringFieldUpdateOperationsInput | No |
| metadata | JsonNullValueInput | Json | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| category | String | StringFieldUpdateOperationsInput | No |
| metadata | JsonNullValueInput | Json | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| fiscalYear | Int | No |
| reportId | String | Null | Yes |
| entryList | BudgetEntryCreateNestedManyWithoutBudgetInput | No |
| report | ReportCreateNestedOneWithoutBudgetInput | No |
| userList | BudgetBudUserCreateNestedManyWithoutBudgetInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| fiscalYear | Int | No |
| reportId | String | Null | Yes |
| entryList | BudgetEntryUncheckedCreateNestedManyWithoutBudgetInput | No |
| report | ReportUncheckedCreateNestedOneWithoutBudgetInput | No |
| userList | BudgetBudUserUncheckedCreateNestedManyWithoutBudgetInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| fiscalYear | Int | IntFieldUpdateOperationsInput | No |
| reportId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| entryList | BudgetEntryUpdateManyWithoutBudgetNestedInput | No |
| report | ReportUpdateOneWithoutBudgetNestedInput | No |
| userList | BudgetBudUserUpdateManyWithoutBudgetNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| fiscalYear | Int | IntFieldUpdateOperationsInput | No |
| reportId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| entryList | BudgetEntryUncheckedUpdateManyWithoutBudgetNestedInput | No |
| report | ReportUncheckedUpdateOneWithoutBudgetNestedInput | No |
| userList | BudgetBudUserUncheckedUpdateManyWithoutBudgetNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| fiscalYear | Int | No |
| reportId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| fiscalYear | Int | IntFieldUpdateOperationsInput | No |
| reportId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| fiscalYear | Int | IntFieldUpdateOperationsInput | No |
| reportId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| totalCost | Float | No |
| totalDiscount | Float | No |
| totalPromotion | Float | No |
| totalSubtotal | Float | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| budget | BudgetCreateNestedOneWithoutReportInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| budgetId | String | No |
| totalCost | Float | No |
| totalDiscount | Float | No |
| totalPromotion | Float | No |
| totalSubtotal | Float | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| totalCost | Float | FloatFieldUpdateOperationsInput | No |
| totalDiscount | Float | FloatFieldUpdateOperationsInput | No |
| totalPromotion | Float | FloatFieldUpdateOperationsInput | No |
| totalSubtotal | Float | FloatFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| budget | BudgetUpdateOneRequiredWithoutReportNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| budgetId | String | StringFieldUpdateOperationsInput | No |
| totalCost | Float | FloatFieldUpdateOperationsInput | No |
| totalDiscount | Float | FloatFieldUpdateOperationsInput | No |
| totalPromotion | Float | FloatFieldUpdateOperationsInput | No |
| totalSubtotal | Float | FloatFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| budgetId | String | No |
| totalCost | Float | No |
| totalDiscount | Float | No |
| totalPromotion | Float | No |
| totalSubtotal | Float | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| totalCost | Float | FloatFieldUpdateOperationsInput | No |
| totalDiscount | Float | FloatFieldUpdateOperationsInput | No |
| totalPromotion | Float | FloatFieldUpdateOperationsInput | No |
| totalSubtotal | Float | FloatFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| budgetId | String | StringFieldUpdateOperationsInput | No |
| totalCost | Float | FloatFieldUpdateOperationsInput | No |
| totalDiscount | Float | FloatFieldUpdateOperationsInput | No |
| totalPromotion | Float | FloatFieldUpdateOperationsInput | No |
| totalSubtotal | Float | FloatFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| String | No | |
| password | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| budgetList | BudgetBudUserCreateNestedManyWithoutUserInput | No |
| eventList | BudEventCreateNestedManyWithoutBudUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| String | No | |
| password | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| budgetList | BudgetBudUserUncheckedCreateNestedManyWithoutUserInput | No |
| eventList | BudEventUncheckedCreateNestedManyWithoutBudUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| String | StringFieldUpdateOperationsInput | No | |
| password | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| budgetList | BudgetBudUserUpdateManyWithoutUserNestedInput | No |
| eventList | BudEventUpdateManyWithoutBudUserNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| String | StringFieldUpdateOperationsInput | No | |
| password | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| budgetList | BudgetBudUserUncheckedUpdateManyWithoutUserNestedInput | No |
| eventList | BudEventUncheckedUpdateManyWithoutBudUserNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| String | No | |
| password | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| String | StringFieldUpdateOperationsInput | No | |
| password | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| String | StringFieldUpdateOperationsInput | No | |
| password | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| role | String | No |
| ability | String | No |
| category | String | No |
| user | BudUserCreateNestedOneWithoutBudgetListInput | No |
| budget | BudgetCreateNestedOneWithoutUserListInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | No |
| budgetId | String | No |
| role | String | No |
| ability | String | No |
| category | String | No |
| Name | Type | Nullable |
|---|---|---|
| role | String | StringFieldUpdateOperationsInput | No |
| ability | String | StringFieldUpdateOperationsInput | No |
| category | String | StringFieldUpdateOperationsInput | No |
| user | BudUserUpdateOneRequiredWithoutBudgetListNestedInput | No |
| budget | BudgetUpdateOneRequiredWithoutUserListNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | StringFieldUpdateOperationsInput | No |
| budgetId | String | StringFieldUpdateOperationsInput | No |
| role | String | StringFieldUpdateOperationsInput | No |
| ability | String | StringFieldUpdateOperationsInput | No |
| category | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | No |
| budgetId | String | No |
| role | String | No |
| ability | String | No |
| category | String | No |
| Name | Type | Nullable |
|---|---|---|
| role | String | StringFieldUpdateOperationsInput | No |
| ability | String | StringFieldUpdateOperationsInput | No |
| category | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | StringFieldUpdateOperationsInput | No |
| budgetId | String | StringFieldUpdateOperationsInput | No |
| role | String | StringFieldUpdateOperationsInput | No |
| ability | String | StringFieldUpdateOperationsInput | No |
| category | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| type | String | No |
| description | String | No |
| categoryList | BudEventCreatecategoryListInput | String | No |
| metadata | JsonNullValueInput | Json | No |
| createdAt | DateTime | No |
| budUser | BudUserCreateNestedOneWithoutEventListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| type | String | No |
| description | String | No |
| categoryList | BudEventCreatecategoryListInput | String | No |
| metadata | JsonNullValueInput | Json | No |
| budUserId | String | No |
| createdAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| type | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| categoryList | BudEventUpdatecategoryListInput | String | No |
| metadata | JsonNullValueInput | Json | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| budUser | BudUserUpdateOneRequiredWithoutEventListNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| type | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| categoryList | BudEventUpdatecategoryListInput | String | No |
| metadata | JsonNullValueInput | Json | No |
| budUserId | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| type | String | No |
| description | String | No |
| categoryList | BudEventCreatecategoryListInput | String | No |
| metadata | JsonNullValueInput | Json | No |
| budUserId | String | No |
| createdAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| type | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| categoryList | BudEventUpdatecategoryListInput | String | No |
| metadata | JsonNullValueInput | Json | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| type | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| categoryList | BudEventUpdatecategoryListInput | String | No |
| metadata | JsonNullValueInput | Json | No |
| budUserId | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | StringFieldRefInput | No |
| in | String | ListStringFieldRefInput | No |
| notIn | String | ListStringFieldRefInput | 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 |
| mode | QueryMode | No |
| not | String | NestedStringFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | DateTimeFieldRefInput | No |
| in | DateTime | ListDateTimeFieldRefInput | No |
| notIn | DateTime | ListDateTimeFieldRefInput | No |
| lt | DateTime | DateTimeFieldRefInput | No |
| lte | DateTime | DateTimeFieldRefInput | No |
| gt | DateTime | DateTimeFieldRefInput | No |
| gte | DateTime | DateTimeFieldRefInput | No |
| not | DateTime | NestedDateTimeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Boolean | BooleanFieldRefInput | No |
| not | Boolean | NestedBoolFilter | No |
| Name | Type | Nullable |
|---|---|---|
| is | AppointmentTypeWhereInput | No |
| isNot | AppointmentTypeWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| is | PatientWhereInput | No |
| isNot | PatientWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| is | LocationWhereInput | No |
| isNot | LocationWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| is | ProviderWhereInput | No |
| isNot | ProviderWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| patientId | String | No |
| locationId | String | No |
| providerId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| appointmentTypeId | SortOrder | No |
| patientId | SortOrder | No |
| locationId | SortOrder | No |
| providerId | SortOrder | No |
| startDatetime | SortOrder | No |
| endDatetime | SortOrder | No |
| voided | SortOrder | No |
| voidedBy | SortOrder | No |
| dateVoided | SortOrder | No |
| voidReason | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| appointmentTypeId | SortOrder | No |
| patientId | SortOrder | No |
| locationId | SortOrder | No |
| providerId | SortOrder | No |
| startDatetime | SortOrder | No |
| endDatetime | SortOrder | No |
| voided | SortOrder | No |
| voidedBy | SortOrder | No |
| dateVoided | SortOrder | No |
| voidReason | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| appointmentTypeId | SortOrder | No |
| patientId | SortOrder | No |
| locationId | SortOrder | No |
| providerId | SortOrder | No |
| startDatetime | SortOrder | No |
| endDatetime | SortOrder | No |
| voided | SortOrder | No |
| voidedBy | SortOrder | No |
| dateVoided | SortOrder | No |
| voidReason | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | StringFieldRefInput | No |
| in | String | ListStringFieldRefInput | No |
| notIn | String | ListStringFieldRefInput | 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 |
| mode | QueryMode | No |
| not | String | NestedStringWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedStringFilter | No |
| _max | NestedStringFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | DateTimeFieldRefInput | No |
| in | DateTime | ListDateTimeFieldRefInput | No |
| notIn | DateTime | ListDateTimeFieldRefInput | No |
| lt | DateTime | DateTimeFieldRefInput | No |
| lte | DateTime | DateTimeFieldRefInput | No |
| gt | DateTime | DateTimeFieldRefInput | No |
| gte | DateTime | DateTimeFieldRefInput | No |
| not | DateTime | NestedDateTimeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedDateTimeFilter | No |
| _max | NestedDateTimeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Boolean | BooleanFieldRefInput | No |
| not | Boolean | NestedBoolWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedBoolFilter | No |
| _max | NestedBoolFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | IntFieldRefInput | No |
| in | Int | ListIntFieldRefInput | No |
| notIn | Int | ListIntFieldRefInput | No |
| lt | Int | IntFieldRefInput | No |
| lte | Int | IntFieldRefInput | No |
| gt | Int | IntFieldRefInput | No |
| gte | Int | IntFieldRefInput | No |
| not | Int | NestedIntFilter | No |
| Name | Type | Nullable |
|---|---|---|
| every | AppointmentWhereInput | No |
| some | AppointmentWhereInput | No |
| none | AppointmentWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| duration | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| duration | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| duration | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| duration | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| duration | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | IntFieldRefInput | No |
| in | Int | ListIntFieldRefInput | No |
| notIn | Int | ListIntFieldRefInput | No |
| lt | Int | IntFieldRefInput | No |
| lte | Int | IntFieldRefInput | No |
| gt | Int | IntFieldRefInput | No |
| gte | Int | IntFieldRefInput | No |
| not | Int | NestedIntWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _avg | NestedFloatFilter | No |
| _sum | NestedIntFilter | No |
| _min | NestedIntFilter | No |
| _max | NestedIntFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Float | FloatFieldRefInput | No |
| in | Float | ListFloatFieldRefInput | No |
| notIn | Float | ListFloatFieldRefInput | No |
| lt | Float | FloatFieldRefInput | No |
| lte | Float | FloatFieldRefInput | No |
| gt | Float | FloatFieldRefInput | No |
| gte | Float | FloatFieldRefInput | No |
| not | Float | NestedFloatFilter | No |
| Name | Type | Nullable |
|---|---|---|
| every | EncounterWhereInput | No |
| some | EncounterWhereInput | No |
| none | EncounterWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| address1 | SortOrder | No |
| address2 | SortOrder | No |
| city | SortOrder | No |
| stateProvince | SortOrder | No |
| country | SortOrder | No |
| postalCode | SortOrder | No |
| latitude | SortOrder | No |
| longitude | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| address1 | SortOrder | No |
| address2 | SortOrder | No |
| city | SortOrder | No |
| stateProvince | SortOrder | No |
| country | SortOrder | No |
| postalCode | SortOrder | No |
| latitude | SortOrder | No |
| longitude | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| address1 | SortOrder | No |
| address2 | SortOrder | No |
| city | SortOrder | No |
| stateProvince | SortOrder | No |
| country | SortOrder | No |
| postalCode | SortOrder | No |
| latitude | SortOrder | No |
| longitude | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Float | FloatFieldRefInput | No |
| in | Float | ListFloatFieldRefInput | No |
| notIn | Float | ListFloatFieldRefInput | No |
| lt | Float | FloatFieldRefInput | No |
| lte | Float | FloatFieldRefInput | No |
| gt | Float | FloatFieldRefInput | No |
| gte | Float | FloatFieldRefInput | No |
| not | Float | NestedFloatWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _avg | NestedFloatFilter | No |
| _sum | NestedFloatFilter | No |
| _min | NestedFloatFilter | No |
| _max | NestedFloatFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| givenName | SortOrder | No |
| middleName | SortOrder | No |
| familyName | SortOrder | No |
| gender | SortOrder | No |
| birthdate | SortOrder | No |
| dead | SortOrder | No |
| deathDate | SortOrder | No |
| causeOfDeath | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| givenName | SortOrder | No |
| middleName | SortOrder | No |
| familyName | SortOrder | No |
| gender | SortOrder | No |
| birthdate | SortOrder | No |
| dead | SortOrder | No |
| deathDate | SortOrder | No |
| causeOfDeath | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| givenName | SortOrder | No |
| middleName | SortOrder | No |
| familyName | SortOrder | No |
| gender | SortOrder | No |
| birthdate | SortOrder | No |
| dead | SortOrder | No |
| deathDate | SortOrder | No |
| causeOfDeath | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| name | SortOrder | No |
| identifier | SortOrder | No |
| description | SortOrder | No |
| voided | SortOrder | No |
| voidedBy | SortOrder | No |
| dateVoided | SortOrder | No |
| voidReason | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| name | SortOrder | No |
| identifier | SortOrder | No |
| description | SortOrder | No |
| voided | SortOrder | No |
| voidedBy | SortOrder | No |
| dateVoided | SortOrder | No |
| voidReason | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| name | SortOrder | No |
| identifier | SortOrder | No |
| description | SortOrder | No |
| voided | SortOrder | No |
| voidedBy | SortOrder | No |
| dateVoided | SortOrder | No |
| voidReason | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | StringFieldRefInput | Null | Yes |
| in | String | ListStringFieldRefInput | Null | Yes |
| notIn | String | ListStringFieldRefInput | 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 |
| mode | QueryMode | No |
| not | String | NestedStringNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| every | FormEncounterWhereInput | No |
| some | FormEncounterWhereInput | No |
| none | FormEncounterWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | FormResourceWhereInput | No |
| some | FormResourceWhereInput | No |
| none | FormResourceWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | FormSubmissionWhereInput | No |
| some | FormSubmissionWhereInput | No |
| none | FormSubmissionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| is | FieldWhereInput | Null | Yes |
| isNot | FieldWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| sort | SortOrder | No |
| nulls | NullsOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| version | SortOrder | No |
| retired | SortOrder | No |
| retiredBy | SortOrder | No |
| dateRetired | SortOrder | No |
| retiredReason | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| fieldId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| version | SortOrder | No |
| retired | SortOrder | No |
| retiredBy | SortOrder | No |
| dateRetired | SortOrder | No |
| retiredReason | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| fieldId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| version | SortOrder | No |
| retired | SortOrder | No |
| retiredBy | SortOrder | No |
| dateRetired | SortOrder | No |
| retiredReason | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| fieldId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | StringFieldRefInput | Null | Yes |
| in | String | ListStringFieldRefInput | Null | Yes |
| notIn | String | ListStringFieldRefInput | 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 |
| mode | QueryMode | No |
| not | String | NestedStringNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedStringNullableFilter | No |
| _max | NestedStringNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| is | FormWhereInput | No |
| isNot | FormWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| is | EncounterWhereInput | No |
| isNot | EncounterWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| formId | SortOrder | No |
| encounterId | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| formId | SortOrder | No |
| encounterId | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| formId | SortOrder | No |
| encounterId | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| is | ResourceWhereInput | No |
| isNot | ResourceWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| formId | SortOrder | No |
| resourceId | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| formId | SortOrder | No |
| resourceId | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| formId | SortOrder | No |
| resourceId | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| every | FieldAnswerWhereInput | No |
| some | FieldAnswerWhereInput | No |
| none | FieldAnswerWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| formId | SortOrder | No |
| encounterId | SortOrder | No |
| submissionDate | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| formId | SortOrder | No |
| encounterId | SortOrder | No |
| submissionDate | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| formId | SortOrder | No |
| encounterId | SortOrder | No |
| submissionDate | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| is | ConceptWhereInput | No |
| isNot | ConceptWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | FormWhereInput | No |
| some | FormWhereInput | No |
| none | FormWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | FieldOptionWhereInput | No |
| some | FieldOptionWhereInput | No |
| none | FieldOptionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| fieldType | SortOrder | No |
| conceptId | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| fieldType | SortOrder | No |
| conceptId | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| fieldType | SortOrder | No |
| conceptId | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| is | FormSubmissionWhereInput | No |
| isNot | FormSubmissionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| is | FieldWhereInput | No |
| isNot | FieldWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| formSubmissionId | SortOrder | No |
| fieldId | SortOrder | No |
| value | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| formSubmissionId | SortOrder | No |
| fieldId | SortOrder | No |
| value | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| formSubmissionId | SortOrder | No |
| fieldId | SortOrder | No |
| value | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| fieldId | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| fieldId | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| fieldId | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| is | EncounterTypeWhereInput | No |
| isNot | EncounterTypeWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | ObsWhereInput | No |
| some | ObsWhereInput | No |
| none | ObsWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | OrderWhereInput | No |
| some | OrderWhereInput | No |
| none | OrderWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| encounterTypeId | SortOrder | No |
| patientId | SortOrder | No |
| locationId | SortOrder | No |
| formId | SortOrder | No |
| providerId | SortOrder | No |
| startDatetime | SortOrder | No |
| endDatetime | SortOrder | No |
| voided | SortOrder | No |
| voidedBy | SortOrder | No |
| dateVoided | SortOrder | No |
| voidReason | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| encounterTypeId | SortOrder | No |
| patientId | SortOrder | No |
| locationId | SortOrder | No |
| formId | SortOrder | No |
| providerId | SortOrder | No |
| startDatetime | SortOrder | No |
| endDatetime | SortOrder | No |
| voided | SortOrder | No |
| voidedBy | SortOrder | No |
| dateVoided | SortOrder | No |
| voidReason | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| encounterTypeId | SortOrder | No |
| patientId | SortOrder | No |
| locationId | SortOrder | No |
| formId | SortOrder | No |
| providerId | SortOrder | No |
| startDatetime | SortOrder | No |
| endDatetime | SortOrder | No |
| voided | SortOrder | No |
| voidedBy | SortOrder | No |
| dateVoided | SortOrder | No |
| voidReason | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| conceptId | SortOrder | No |
| encounterId | SortOrder | No |
| obsDatetime | SortOrder | No |
| valueDatetime | SortOrder | No |
| valueNumeric | SortOrder | No |
| valueText | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| valueNumeric | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| conceptId | SortOrder | No |
| encounterId | SortOrder | No |
| obsDatetime | SortOrder | No |
| valueDatetime | SortOrder | No |
| valueNumeric | SortOrder | No |
| valueText | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| conceptId | SortOrder | No |
| encounterId | SortOrder | No |
| obsDatetime | SortOrder | No |
| valueDatetime | SortOrder | No |
| valueNumeric | SortOrder | No |
| valueText | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| valueNumeric | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| is | OrderFrequencyWhereInput | Null | Yes |
| isNot | OrderFrequencyWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| is | OrderRouteWhereInput | Null | Yes |
| isNot | OrderRouteWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| is | OrderTypeWhereInput | Null | Yes |
| isNot | OrderTypeWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| is | OrderUnitWhereInput | Null | Yes |
| isNot | OrderUnitWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| conceptId | SortOrder | No |
| encounterId | SortOrder | No |
| orderDatetime | SortOrder | No |
| instructions | SortOrder | No |
| dosage | SortOrder | No |
| route | SortOrder | No |
| frequency | SortOrder | No |
| asNeeded | SortOrder | No |
| prn | SortOrder | No |
| quantity | SortOrder | No |
| units | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| orderFrequencyId | SortOrder | No |
| orderRouteId | SortOrder | No |
| orderTypeId | SortOrder | No |
| orderUnitId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| quantity | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| conceptId | SortOrder | No |
| encounterId | SortOrder | No |
| orderDatetime | SortOrder | No |
| instructions | SortOrder | No |
| dosage | SortOrder | No |
| route | SortOrder | No |
| frequency | SortOrder | No |
| asNeeded | SortOrder | No |
| prn | SortOrder | No |
| quantity | SortOrder | No |
| units | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| orderFrequencyId | SortOrder | No |
| orderRouteId | SortOrder | No |
| orderTypeId | SortOrder | No |
| orderUnitId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| conceptId | SortOrder | No |
| encounterId | SortOrder | No |
| orderDatetime | SortOrder | No |
| instructions | SortOrder | No |
| dosage | SortOrder | No |
| route | SortOrder | No |
| frequency | SortOrder | No |
| asNeeded | SortOrder | No |
| prn | SortOrder | No |
| quantity | SortOrder | No |
| units | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| orderFrequencyId | SortOrder | No |
| orderRouteId | SortOrder | No |
| orderTypeId | SortOrder | No |
| orderUnitId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| quantity | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| every | ConceptAnswerWhereInput | No |
| some | ConceptAnswerWhereInput | No |
| none | ConceptAnswerWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | FieldWhereInput | No |
| some | FieldWhereInput | No |
| none | FieldWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| is | ConceptClassWhereInput | Null | Yes |
| isNot | ConceptClassWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| is | ConceptDatatypeWhereInput | Null | Yes |
| isNot | ConceptDatatypeWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| is | ConceptMapWhereInput | Null | Yes |
| isNot | ConceptMapWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| every | ConceptNameWhereInput | No |
| some | ConceptNameWhereInput | No |
| none | ConceptNameWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | ConceptNumericWhereInput | No |
| some | ConceptNumericWhereInput | No |
| none | ConceptNumericWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | ConceptProposalWhereInput | No |
| some | ConceptProposalWhereInput | No |
| none | ConceptProposalWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| is | ConceptSetWhereInput | Null | Yes |
| isNot | ConceptSetWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| is | ConceptSourceWhereInput | Null | Yes |
| isNot | ConceptSourceWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| every | ConceptWordWhereInput | No |
| some | ConceptWordWhereInput | No |
| none | ConceptWordWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| dataType | SortOrder | No |
| class | SortOrder | No |
| isRetired | SortOrder | No |
| retiredBy | SortOrder | No |
| dateRetired | SortOrder | No |
| retiredReason | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| conceptClassId | SortOrder | No |
| conceptDatatypeId | SortOrder | No |
| conceptMapId | SortOrder | No |
| conceptSetId | SortOrder | No |
| conceptSourceId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| dataType | SortOrder | No |
| class | SortOrder | No |
| isRetired | SortOrder | No |
| retiredBy | SortOrder | No |
| dateRetired | SortOrder | No |
| retiredReason | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| conceptClassId | SortOrder | No |
| conceptDatatypeId | SortOrder | No |
| conceptMapId | SortOrder | No |
| conceptSetId | SortOrder | No |
| conceptSourceId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| dataType | SortOrder | No |
| class | SortOrder | No |
| isRetired | SortOrder | No |
| retiredBy | SortOrder | No |
| dateRetired | SortOrder | No |
| retiredReason | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| conceptClassId | SortOrder | No |
| conceptDatatypeId | SortOrder | No |
| conceptMapId | SortOrder | No |
| conceptSetId | SortOrder | No |
| conceptSourceId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| conceptId | SortOrder | No |
| answerConceptId | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| conceptId | SortOrder | No |
| answerConceptId | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| conceptId | SortOrder | No |
| answerConceptId | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| every | ConceptWhereInput | No |
| some | ConceptWhereInput | No |
| none | ConceptWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| conceptId | SortOrder | No |
| name | SortOrder | No |
| locale | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| conceptId | SortOrder | No |
| name | SortOrder | No |
| locale | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| conceptId | SortOrder | No |
| name | SortOrder | No |
| locale | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| conceptId | SortOrder | No |
| hiAbsolute | SortOrder | No |
| hiCritical | SortOrder | No |
| hiNormal | SortOrder | No |
| lowAbsolute | SortOrder | No |
| lowCritical | SortOrder | No |
| lowNormal | SortOrder | No |
| units | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| hiAbsolute | SortOrder | No |
| hiCritical | SortOrder | No |
| hiNormal | SortOrder | No |
| lowAbsolute | SortOrder | No |
| lowCritical | SortOrder | No |
| lowNormal | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| conceptId | SortOrder | No |
| hiAbsolute | SortOrder | No |
| hiCritical | SortOrder | No |
| hiNormal | SortOrder | No |
| lowAbsolute | SortOrder | No |
| lowCritical | SortOrder | No |
| lowNormal | SortOrder | No |
| units | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| conceptId | SortOrder | No |
| hiAbsolute | SortOrder | No |
| hiCritical | SortOrder | No |
| hiNormal | SortOrder | No |
| lowAbsolute | SortOrder | No |
| lowCritical | SortOrder | No |
| lowNormal | SortOrder | No |
| units | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| hiAbsolute | SortOrder | No |
| hiCritical | SortOrder | No |
| hiNormal | SortOrder | No |
| lowAbsolute | SortOrder | No |
| lowCritical | SortOrder | No |
| lowNormal | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| conceptId | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| conceptId | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| conceptId | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| conceptId | SortOrder | No |
| word | SortOrder | No |
| locale | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| conceptId | SortOrder | No |
| word | SortOrder | No |
| locale | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| conceptId | SortOrder | No |
| word | SortOrder | No |
| locale | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| creator | SortOrder | No |
| dateCreated | SortOrder | No |
| lastChangedBy | SortOrder | No |
| lastChangedDate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Json | JsonFieldRefInput | JsonNullValueFilter | No |
| path | String | No |
| string_contains | String | StringFieldRefInput | No |
| string_starts_with | String | StringFieldRefInput | No |
| string_ends_with | String | StringFieldRefInput | No |
| array_contains | Json | JsonFieldRefInput | Null | Yes |
| array_starts_with | Json | JsonFieldRefInput | Null | Yes |
| array_ends_with | Json | JsonFieldRefInput | Null | Yes |
| lt | Json | JsonFieldRefInput | No |
| lte | Json | JsonFieldRefInput | No |
| gt | Json | JsonFieldRefInput | No |
| gte | Json | JsonFieldRefInput | No |
| not | Json | JsonFieldRefInput | JsonNullValueFilter | No |
| Name | Type | Nullable |
|---|---|---|
| is | BlogPostAuthorWhereInput | No |
| isNot | BlogPostAuthorWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| is | SpaceTimeCoordinatesWhereInput | No |
| isNot | SpaceTimeCoordinatesWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | BlogPostTagArrowWhereInput | No |
| some | BlogPostTagArrowWhereInput | No |
| none | BlogPostTagArrowWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| title | SortOrder | No |
| content | SortOrder | No |
| context | SortOrder | No |
| authorId | SortOrder | No |
| spaceTimeCoordinatesId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| title | SortOrder | No |
| content | SortOrder | No |
| authorId | SortOrder | No |
| spaceTimeCoordinatesId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| title | SortOrder | No |
| content | SortOrder | No |
| authorId | SortOrder | No |
| spaceTimeCoordinatesId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Json | JsonFieldRefInput | JsonNullValueFilter | No |
| path | String | No |
| string_contains | String | StringFieldRefInput | No |
| string_starts_with | String | StringFieldRefInput | No |
| string_ends_with | String | StringFieldRefInput | No |
| array_contains | Json | JsonFieldRefInput | Null | Yes |
| array_starts_with | Json | JsonFieldRefInput | Null | Yes |
| array_ends_with | Json | JsonFieldRefInput | Null | Yes |
| lt | Json | JsonFieldRefInput | No |
| lte | Json | JsonFieldRefInput | No |
| gt | Json | JsonFieldRefInput | No |
| gte | Json | JsonFieldRefInput | No |
| not | Json | JsonFieldRefInput | JsonNullValueFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedJsonFilter | No |
| _max | NestedJsonFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| descriptor | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| descriptor | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| descriptor | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| is | BlogPostWhereInput | No |
| isNot | BlogPostWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| is | BlogPostTagWhereInput | No |
| isNot | BlogPostTagWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| postId | String | No |
| tagId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| postId | SortOrder | No |
| tagId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| postId | SortOrder | No |
| tagId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| postId | SortOrder | No |
| tagId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| every | BlogPostWhereInput | No |
| some | BlogPostWhereInput | No |
| none | BlogPostWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Float | FloatFieldRefInput | Null | Yes |
| in | Float | ListFloatFieldRefInput | Null | Yes |
| notIn | Float | ListFloatFieldRefInput | Null | Yes |
| lt | Float | FloatFieldRefInput | No |
| lte | Float | FloatFieldRefInput | No |
| gt | Float | FloatFieldRefInput | No |
| gte | Float | FloatFieldRefInput | No |
| not | Float | NestedFloatNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | String | StringFieldRefInput | No |
| in | String | ListStringFieldRefInput | No |
| notIn | String | ListStringFieldRefInput | No |
| lt | String | StringFieldRefInput | No |
| lte | String | StringFieldRefInput | No |
| gt | String | StringFieldRefInput | No |
| gte | String | StringFieldRefInput | No |
| mode | QueryMode | No |
| not | String | NestedUuidFilter | No |
| Name | Type | Nullable |
|---|---|---|
| is | BlogPostWhereInput | Null | Yes |
| isNot | BlogPostWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| latitude | SortOrder | No |
| longitude | SortOrder | No |
| startTime | SortOrder | No |
| pauseTime | SortOrder | No |
| stopTime | SortOrder | No |
| timezone | SortOrder | No |
| blogPostId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| latitude | SortOrder | No |
| longitude | SortOrder | No |
| startTime | SortOrder | No |
| pauseTime | SortOrder | No |
| stopTime | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| latitude | SortOrder | No |
| longitude | SortOrder | No |
| startTime | SortOrder | No |
| pauseTime | SortOrder | No |
| stopTime | SortOrder | No |
| timezone | SortOrder | No |
| blogPostId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| latitude | SortOrder | No |
| longitude | SortOrder | No |
| startTime | SortOrder | No |
| pauseTime | SortOrder | No |
| stopTime | SortOrder | No |
| timezone | SortOrder | No |
| blogPostId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| latitude | SortOrder | No |
| longitude | SortOrder | No |
| startTime | SortOrder | No |
| pauseTime | SortOrder | No |
| stopTime | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Float | FloatFieldRefInput | Null | Yes |
| in | Float | ListFloatFieldRefInput | Null | Yes |
| notIn | Float | ListFloatFieldRefInput | Null | Yes |
| lt | Float | FloatFieldRefInput | No |
| lte | Float | FloatFieldRefInput | No |
| gt | Float | FloatFieldRefInput | No |
| gte | Float | FloatFieldRefInput | No |
| not | Float | NestedFloatNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _avg | NestedFloatNullableFilter | No |
| _sum | NestedFloatNullableFilter | No |
| _min | NestedFloatNullableFilter | No |
| _max | NestedFloatNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | StringFieldRefInput | No |
| in | String | ListStringFieldRefInput | No |
| notIn | String | ListStringFieldRefInput | No |
| lt | String | StringFieldRefInput | No |
| lte | String | StringFieldRefInput | No |
| gt | String | StringFieldRefInput | No |
| gte | String | StringFieldRefInput | No |
| mode | QueryMode | No |
| not | String | NestedUuidWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedStringFilter | No |
| _max | NestedStringFilter | No |
| Name | Type | Nullable |
|---|---|---|
| is | ServiceWhereInput | No |
| isNot | ServiceWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| is | BudgetWhereInput | No |
| isNot | BudgetWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| serviceId | SortOrder | No |
| cost | SortOrder | No |
| discount | SortOrder | No |
| promotion | SortOrder | No |
| subtotal | SortOrder | No |
| percentChange | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| budgetId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| cost | SortOrder | No |
| discount | SortOrder | No |
| promotion | SortOrder | No |
| subtotal | SortOrder | No |
| percentChange | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| serviceId | SortOrder | No |
| cost | SortOrder | No |
| discount | SortOrder | No |
| promotion | SortOrder | No |
| subtotal | SortOrder | No |
| percentChange | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| budgetId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| serviceId | SortOrder | No |
| cost | SortOrder | No |
| discount | SortOrder | No |
| promotion | SortOrder | No |
| subtotal | SortOrder | No |
| percentChange | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| budgetId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| cost | SortOrder | No |
| discount | SortOrder | No |
| promotion | SortOrder | No |
| subtotal | SortOrder | No |
| percentChange | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| every | BudgetEntryWhereInput | No |
| some | BudgetEntryWhereInput | No |
| none | BudgetEntryWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| description | SortOrder | No |
| category | SortOrder | No |
| metadata | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| description | SortOrder | No |
| category | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| description | SortOrder | No |
| category | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| is | ReportWhereInput | Null | Yes |
| isNot | ReportWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| every | BudgetBudUserWhereInput | No |
| some | BudgetBudUserWhereInput | No |
| none | BudgetBudUserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| fiscalYear | SortOrder | No |
| reportId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| fiscalYear | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| fiscalYear | SortOrder | No |
| reportId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| fiscalYear | SortOrder | No |
| reportId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| fiscalYear | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| budgetId | SortOrder | No |
| totalCost | SortOrder | No |
| totalDiscount | SortOrder | No |
| totalPromotion | SortOrder | No |
| totalSubtotal | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| totalCost | SortOrder | No |
| totalDiscount | SortOrder | No |
| totalPromotion | SortOrder | No |
| totalSubtotal | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| budgetId | SortOrder | No |
| totalCost | SortOrder | No |
| totalDiscount | SortOrder | No |
| totalPromotion | SortOrder | No |
| totalSubtotal | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| budgetId | SortOrder | No |
| totalCost | SortOrder | No |
| totalDiscount | SortOrder | No |
| totalPromotion | SortOrder | No |
| totalSubtotal | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| totalCost | SortOrder | No |
| totalDiscount | SortOrder | No |
| totalPromotion | SortOrder | No |
| totalSubtotal | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| every | BudEventWhereInput | No |
| some | BudEventWhereInput | No |
| none | BudEventWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| SortOrder | No | |
| password | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| SortOrder | No | |
| password | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| SortOrder | No | |
| password | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| is | BudUserWhereInput | No |
| isNot | BudUserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | No |
| budgetId | String | No |
| Name | Type | Nullable |
|---|---|---|
| userId | SortOrder | No |
| budgetId | SortOrder | No |
| role | SortOrder | No |
| ability | SortOrder | No |
| category | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| userId | SortOrder | No |
| budgetId | SortOrder | No |
| role | SortOrder | No |
| ability | SortOrder | No |
| category | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| userId | SortOrder | No |
| budgetId | SortOrder | No |
| role | SortOrder | No |
| ability | SortOrder | No |
| category | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | ListStringFieldRefInput | Null | Yes |
| has | String | StringFieldRefInput | Null | Yes |
| hasEvery | String | ListStringFieldRefInput | No |
| hasSome | String | ListStringFieldRefInput | No |
| isEmpty | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| type | SortOrder | No |
| description | SortOrder | No |
| categoryList | SortOrder | No |
| metadata | SortOrder | No |
| budUserId | SortOrder | No |
| createdAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| type | SortOrder | No |
| description | SortOrder | No |
| budUserId | SortOrder | No |
| createdAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| type | SortOrder | No |
| description | SortOrder | No |
| budUserId | SortOrder | No |
| createdAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| create | AppointmentTypeCreateWithoutAppointmentListInput | AppointmentTypeUncheckedCreateWithoutAppointmentListInput | No |
| connectOrCreate | AppointmentTypeCreateOrConnectWithoutAppointmentListInput | No |
| connect | AppointmentTypeWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PatientCreateWithoutAppointmentListInput | PatientUncheckedCreateWithoutAppointmentListInput | No |
| connectOrCreate | PatientCreateOrConnectWithoutAppointmentListInput | No |
| connect | PatientWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | LocationCreateWithoutAppointmentListInput | LocationUncheckedCreateWithoutAppointmentListInput | No |
| connectOrCreate | LocationCreateOrConnectWithoutAppointmentListInput | No |
| connect | LocationWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ProviderCreateWithoutAppointmentListInput | ProviderUncheckedCreateWithoutAppointmentListInput | No |
| connectOrCreate | ProviderCreateOrConnectWithoutAppointmentListInput | No |
| connect | ProviderWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| set | String | No |
| Name | Type | Nullable |
|---|---|---|
| set | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| set | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| create | PatientCreateWithoutAppointmentListInput | PatientUncheckedCreateWithoutAppointmentListInput | No |
| connectOrCreate | PatientCreateOrConnectWithoutAppointmentListInput | No |
| upsert | PatientUpsertWithoutAppointmentListInput | No |
| connect | PatientWhereUniqueInput | No |
| update | PatientUpdateToOneWithWhereWithoutAppointmentListInput | PatientUpdateWithoutAppointmentListInput | PatientUncheckedUpdateWithoutAppointmentListInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | LocationCreateWithoutAppointmentListInput | LocationUncheckedCreateWithoutAppointmentListInput | No |
| connectOrCreate | LocationCreateOrConnectWithoutAppointmentListInput | No |
| upsert | LocationUpsertWithoutAppointmentListInput | No |
| connect | LocationWhereUniqueInput | No |
| update | LocationUpdateToOneWithWhereWithoutAppointmentListInput | LocationUpdateWithoutAppointmentListInput | LocationUncheckedUpdateWithoutAppointmentListInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ProviderCreateWithoutAppointmentListInput | ProviderUncheckedCreateWithoutAppointmentListInput | No |
| connectOrCreate | ProviderCreateOrConnectWithoutAppointmentListInput | No |
| upsert | ProviderUpsertWithoutAppointmentListInput | No |
| connect | ProviderWhereUniqueInput | No |
| update | ProviderUpdateToOneWithWhereWithoutAppointmentListInput | ProviderUpdateWithoutAppointmentListInput | ProviderUncheckedUpdateWithoutAppointmentListInput | No |
| Name | Type | Nullable |
|---|---|---|
| set | Int | No |
| increment | Int | No |
| decrement | Int | No |
| multiply | Int | No |
| divide | Int | No |
| Name | Type | Nullable |
|---|---|---|
| create | AppointmentCreateWithoutLocationInput | AppointmentCreateWithoutLocationInput[] | AppointmentUncheckedCreateWithoutLocationInput | AppointmentUncheckedCreateWithoutLocationInput[] | No |
| connectOrCreate | AppointmentCreateOrConnectWithoutLocationInput | AppointmentCreateOrConnectWithoutLocationInput[] | No |
| createMany | AppointmentCreateManyLocationInputEnvelope | No |
| connect | AppointmentWhereUniqueInput | AppointmentWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | EncounterCreateWithoutLocationInput | EncounterCreateWithoutLocationInput[] | EncounterUncheckedCreateWithoutLocationInput | EncounterUncheckedCreateWithoutLocationInput[] | No |
| connectOrCreate | EncounterCreateOrConnectWithoutLocationInput | EncounterCreateOrConnectWithoutLocationInput[] | No |
| createMany | EncounterCreateManyLocationInputEnvelope | No |
| connect | EncounterWhereUniqueInput | EncounterWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | AppointmentCreateWithoutLocationInput | AppointmentCreateWithoutLocationInput[] | AppointmentUncheckedCreateWithoutLocationInput | AppointmentUncheckedCreateWithoutLocationInput[] | No |
| connectOrCreate | AppointmentCreateOrConnectWithoutLocationInput | AppointmentCreateOrConnectWithoutLocationInput[] | No |
| createMany | AppointmentCreateManyLocationInputEnvelope | No |
| connect | AppointmentWhereUniqueInput | AppointmentWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | EncounterCreateWithoutLocationInput | EncounterCreateWithoutLocationInput[] | EncounterUncheckedCreateWithoutLocationInput | EncounterUncheckedCreateWithoutLocationInput[] | No |
| connectOrCreate | EncounterCreateOrConnectWithoutLocationInput | EncounterCreateOrConnectWithoutLocationInput[] | No |
| createMany | EncounterCreateManyLocationInputEnvelope | No |
| connect | EncounterWhereUniqueInput | EncounterWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| set | Float | No |
| increment | Float | No |
| decrement | Float | No |
| multiply | Float | No |
| divide | Float | No |
| Name | Type | Nullable |
|---|---|---|
| create | AppointmentCreateWithoutPatientInput | AppointmentCreateWithoutPatientInput[] | AppointmentUncheckedCreateWithoutPatientInput | AppointmentUncheckedCreateWithoutPatientInput[] | No |
| connectOrCreate | AppointmentCreateOrConnectWithoutPatientInput | AppointmentCreateOrConnectWithoutPatientInput[] | No |
| createMany | AppointmentCreateManyPatientInputEnvelope | No |
| connect | AppointmentWhereUniqueInput | AppointmentWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | EncounterCreateWithoutPatientInput | EncounterCreateWithoutPatientInput[] | EncounterUncheckedCreateWithoutPatientInput | EncounterUncheckedCreateWithoutPatientInput[] | No |
| connectOrCreate | EncounterCreateOrConnectWithoutPatientInput | EncounterCreateOrConnectWithoutPatientInput[] | No |
| createMany | EncounterCreateManyPatientInputEnvelope | No |
| connect | EncounterWhereUniqueInput | EncounterWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | AppointmentCreateWithoutPatientInput | AppointmentCreateWithoutPatientInput[] | AppointmentUncheckedCreateWithoutPatientInput | AppointmentUncheckedCreateWithoutPatientInput[] | No |
| connectOrCreate | AppointmentCreateOrConnectWithoutPatientInput | AppointmentCreateOrConnectWithoutPatientInput[] | No |
| createMany | AppointmentCreateManyPatientInputEnvelope | No |
| connect | AppointmentWhereUniqueInput | AppointmentWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | EncounterCreateWithoutPatientInput | EncounterCreateWithoutPatientInput[] | EncounterUncheckedCreateWithoutPatientInput | EncounterUncheckedCreateWithoutPatientInput[] | No |
| connectOrCreate | EncounterCreateOrConnectWithoutPatientInput | EncounterCreateOrConnectWithoutPatientInput[] | No |
| createMany | EncounterCreateManyPatientInputEnvelope | No |
| connect | EncounterWhereUniqueInput | EncounterWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | AppointmentCreateWithoutProviderInput | AppointmentCreateWithoutProviderInput[] | AppointmentUncheckedCreateWithoutProviderInput | AppointmentUncheckedCreateWithoutProviderInput[] | No |
| connectOrCreate | AppointmentCreateOrConnectWithoutProviderInput | AppointmentCreateOrConnectWithoutProviderInput[] | No |
| createMany | AppointmentCreateManyProviderInputEnvelope | No |
| connect | AppointmentWhereUniqueInput | AppointmentWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | EncounterCreateWithoutProviderInput | EncounterCreateWithoutProviderInput[] | EncounterUncheckedCreateWithoutProviderInput | EncounterUncheckedCreateWithoutProviderInput[] | No |
| connectOrCreate | EncounterCreateOrConnectWithoutProviderInput | EncounterCreateOrConnectWithoutProviderInput[] | No |
| createMany | EncounterCreateManyProviderInputEnvelope | No |
| connect | EncounterWhereUniqueInput | EncounterWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | AppointmentCreateWithoutProviderInput | AppointmentCreateWithoutProviderInput[] | AppointmentUncheckedCreateWithoutProviderInput | AppointmentUncheckedCreateWithoutProviderInput[] | No |
| connectOrCreate | AppointmentCreateOrConnectWithoutProviderInput | AppointmentCreateOrConnectWithoutProviderInput[] | No |
| createMany | AppointmentCreateManyProviderInputEnvelope | No |
| connect | AppointmentWhereUniqueInput | AppointmentWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | EncounterCreateWithoutProviderInput | EncounterCreateWithoutProviderInput[] | EncounterUncheckedCreateWithoutProviderInput | EncounterUncheckedCreateWithoutProviderInput[] | No |
| connectOrCreate | EncounterCreateOrConnectWithoutProviderInput | EncounterCreateOrConnectWithoutProviderInput[] | No |
| createMany | EncounterCreateManyProviderInputEnvelope | No |
| connect | EncounterWhereUniqueInput | EncounterWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | FormEncounterCreateWithoutFormInput | FormEncounterCreateWithoutFormInput[] | FormEncounterUncheckedCreateWithoutFormInput | FormEncounterUncheckedCreateWithoutFormInput[] | No |
| connectOrCreate | FormEncounterCreateOrConnectWithoutFormInput | FormEncounterCreateOrConnectWithoutFormInput[] | No |
| createMany | FormEncounterCreateManyFormInputEnvelope | No |
| connect | FormEncounterWhereUniqueInput | FormEncounterWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | FormResourceCreateWithoutFormInput | FormResourceCreateWithoutFormInput[] | FormResourceUncheckedCreateWithoutFormInput | FormResourceUncheckedCreateWithoutFormInput[] | No |
| connectOrCreate | FormResourceCreateOrConnectWithoutFormInput | FormResourceCreateOrConnectWithoutFormInput[] | No |
| createMany | FormResourceCreateManyFormInputEnvelope | No |
| connect | FormResourceWhereUniqueInput | FormResourceWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | FormSubmissionCreateWithoutFormInput | FormSubmissionCreateWithoutFormInput[] | FormSubmissionUncheckedCreateWithoutFormInput | FormSubmissionUncheckedCreateWithoutFormInput[] | No |
| connectOrCreate | FormSubmissionCreateOrConnectWithoutFormInput | FormSubmissionCreateOrConnectWithoutFormInput[] | No |
| createMany | FormSubmissionCreateManyFormInputEnvelope | No |
| connect | FormSubmissionWhereUniqueInput | FormSubmissionWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | FieldCreateWithoutFormListInput | FieldUncheckedCreateWithoutFormListInput | No |
| connectOrCreate | FieldCreateOrConnectWithoutFormListInput | No |
| connect | FieldWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | EncounterCreateWithoutFormInput | EncounterCreateWithoutFormInput[] | EncounterUncheckedCreateWithoutFormInput | EncounterUncheckedCreateWithoutFormInput[] | No |
| connectOrCreate | EncounterCreateOrConnectWithoutFormInput | EncounterCreateOrConnectWithoutFormInput[] | No |
| createMany | EncounterCreateManyFormInputEnvelope | No |
| connect | EncounterWhereUniqueInput | EncounterWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | FormEncounterCreateWithoutFormInput | FormEncounterCreateWithoutFormInput[] | FormEncounterUncheckedCreateWithoutFormInput | FormEncounterUncheckedCreateWithoutFormInput[] | No |
| connectOrCreate | FormEncounterCreateOrConnectWithoutFormInput | FormEncounterCreateOrConnectWithoutFormInput[] | No |
| createMany | FormEncounterCreateManyFormInputEnvelope | No |
| connect | FormEncounterWhereUniqueInput | FormEncounterWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | FormResourceCreateWithoutFormInput | FormResourceCreateWithoutFormInput[] | FormResourceUncheckedCreateWithoutFormInput | FormResourceUncheckedCreateWithoutFormInput[] | No |
| connectOrCreate | FormResourceCreateOrConnectWithoutFormInput | FormResourceCreateOrConnectWithoutFormInput[] | No |
| createMany | FormResourceCreateManyFormInputEnvelope | No |
| connect | FormResourceWhereUniqueInput | FormResourceWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | FormSubmissionCreateWithoutFormInput | FormSubmissionCreateWithoutFormInput[] | FormSubmissionUncheckedCreateWithoutFormInput | FormSubmissionUncheckedCreateWithoutFormInput[] | No |
| connectOrCreate | FormSubmissionCreateOrConnectWithoutFormInput | FormSubmissionCreateOrConnectWithoutFormInput[] | No |
| createMany | FormSubmissionCreateManyFormInputEnvelope | No |
| connect | FormSubmissionWhereUniqueInput | FormSubmissionWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | EncounterCreateWithoutFormInput | EncounterCreateWithoutFormInput[] | EncounterUncheckedCreateWithoutFormInput | EncounterUncheckedCreateWithoutFormInput[] | No |
| connectOrCreate | EncounterCreateOrConnectWithoutFormInput | EncounterCreateOrConnectWithoutFormInput[] | No |
| createMany | EncounterCreateManyFormInputEnvelope | No |
| connect | EncounterWhereUniqueInput | EncounterWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | FieldCreateWithoutFormListInput | FieldUncheckedCreateWithoutFormListInput | No |
| connectOrCreate | FieldCreateOrConnectWithoutFormListInput | No |
| upsert | FieldUpsertWithoutFormListInput | No |
| disconnect | Boolean | FieldWhereInput | No |
| delete | Boolean | FieldWhereInput | No |
| connect | FieldWhereUniqueInput | No |
| update | FieldUpdateToOneWithWhereWithoutFormListInput | FieldUpdateWithoutFormListInput | FieldUncheckedUpdateWithoutFormListInput | No |
| Name | Type | Nullable |
|---|---|---|
| set | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| create | FormCreateWithoutFormEncounterListInput | FormUncheckedCreateWithoutFormEncounterListInput | No |
| connectOrCreate | FormCreateOrConnectWithoutFormEncounterListInput | No |
| connect | FormWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | EncounterCreateWithoutFormEncounterListInput | EncounterUncheckedCreateWithoutFormEncounterListInput | No |
| connectOrCreate | EncounterCreateOrConnectWithoutFormEncounterListInput | No |
| connect | EncounterWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | FormCreateWithoutFormEncounterListInput | FormUncheckedCreateWithoutFormEncounterListInput | No |
| connectOrCreate | FormCreateOrConnectWithoutFormEncounterListInput | No |
| upsert | FormUpsertWithoutFormEncounterListInput | No |
| connect | FormWhereUniqueInput | No |
| update | FormUpdateToOneWithWhereWithoutFormEncounterListInput | FormUpdateWithoutFormEncounterListInput | FormUncheckedUpdateWithoutFormEncounterListInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | FormCreateWithoutFormResourceListInput | FormUncheckedCreateWithoutFormResourceListInput | No |
| connectOrCreate | FormCreateOrConnectWithoutFormResourceListInput | No |
| connect | FormWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ResourceCreateWithoutFormResourceListInput | ResourceUncheckedCreateWithoutFormResourceListInput | No |
| connectOrCreate | ResourceCreateOrConnectWithoutFormResourceListInput | No |
| connect | ResourceWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | FormCreateWithoutFormResourceListInput | FormUncheckedCreateWithoutFormResourceListInput | No |
| connectOrCreate | FormCreateOrConnectWithoutFormResourceListInput | No |
| upsert | FormUpsertWithoutFormResourceListInput | No |
| connect | FormWhereUniqueInput | No |
| update | FormUpdateToOneWithWhereWithoutFormResourceListInput | FormUpdateWithoutFormResourceListInput | FormUncheckedUpdateWithoutFormResourceListInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ResourceCreateWithoutFormResourceListInput | ResourceUncheckedCreateWithoutFormResourceListInput | No |
| connectOrCreate | ResourceCreateOrConnectWithoutFormResourceListInput | No |
| upsert | ResourceUpsertWithoutFormResourceListInput | No |
| connect | ResourceWhereUniqueInput | No |
| update | ResourceUpdateToOneWithWhereWithoutFormResourceListInput | ResourceUpdateWithoutFormResourceListInput | ResourceUncheckedUpdateWithoutFormResourceListInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | FormCreateWithoutFormSubmissionListInput | FormUncheckedCreateWithoutFormSubmissionListInput | No |
| connectOrCreate | FormCreateOrConnectWithoutFormSubmissionListInput | No |
| connect | FormWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | EncounterCreateWithoutFormSubmissionListInput | EncounterUncheckedCreateWithoutFormSubmissionListInput | No |
| connectOrCreate | EncounterCreateOrConnectWithoutFormSubmissionListInput | No |
| connect | EncounterWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | FormCreateWithoutFormSubmissionListInput | FormUncheckedCreateWithoutFormSubmissionListInput | No |
| connectOrCreate | FormCreateOrConnectWithoutFormSubmissionListInput | No |
| upsert | FormUpsertWithoutFormSubmissionListInput | No |
| connect | FormWhereUniqueInput | No |
| update | FormUpdateToOneWithWhereWithoutFormSubmissionListInput | FormUpdateWithoutFormSubmissionListInput | FormUncheckedUpdateWithoutFormSubmissionListInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ConceptCreateWithoutFieldListInput | ConceptUncheckedCreateWithoutFieldListInput | No |
| connectOrCreate | ConceptCreateOrConnectWithoutFieldListInput | No |
| connect | ConceptWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | FormCreateWithoutDieldInput | FormCreateWithoutDieldInput[] | FormUncheckedCreateWithoutDieldInput | FormUncheckedCreateWithoutDieldInput[] | No |
| connectOrCreate | FormCreateOrConnectWithoutDieldInput | FormCreateOrConnectWithoutDieldInput[] | No |
| createMany | FormCreateManyDieldInputEnvelope | No |
| connect | FormWhereUniqueInput | FormWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | FieldAnswerCreateWithoutFieldInput | FieldAnswerCreateWithoutFieldInput[] | FieldAnswerUncheckedCreateWithoutFieldInput | FieldAnswerUncheckedCreateWithoutFieldInput[] | No |
| connectOrCreate | FieldAnswerCreateOrConnectWithoutFieldInput | FieldAnswerCreateOrConnectWithoutFieldInput[] | No |
| createMany | FieldAnswerCreateManyFieldInputEnvelope | No |
| connect | FieldAnswerWhereUniqueInput | FieldAnswerWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | FieldOptionCreateWithoutFieldInput | FieldOptionCreateWithoutFieldInput[] | FieldOptionUncheckedCreateWithoutFieldInput | FieldOptionUncheckedCreateWithoutFieldInput[] | No |
| connectOrCreate | FieldOptionCreateOrConnectWithoutFieldInput | FieldOptionCreateOrConnectWithoutFieldInput[] | No |
| createMany | FieldOptionCreateManyFieldInputEnvelope | No |
| connect | FieldOptionWhereUniqueInput | FieldOptionWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | FormCreateWithoutDieldInput | FormCreateWithoutDieldInput[] | FormUncheckedCreateWithoutDieldInput | FormUncheckedCreateWithoutDieldInput[] | No |
| connectOrCreate | FormCreateOrConnectWithoutDieldInput | FormCreateOrConnectWithoutDieldInput[] | No |
| createMany | FormCreateManyDieldInputEnvelope | No |
| connect | FormWhereUniqueInput | FormWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | FieldAnswerCreateWithoutFieldInput | FieldAnswerCreateWithoutFieldInput[] | FieldAnswerUncheckedCreateWithoutFieldInput | FieldAnswerUncheckedCreateWithoutFieldInput[] | No |
| connectOrCreate | FieldAnswerCreateOrConnectWithoutFieldInput | FieldAnswerCreateOrConnectWithoutFieldInput[] | No |
| createMany | FieldAnswerCreateManyFieldInputEnvelope | No |
| connect | FieldAnswerWhereUniqueInput | FieldAnswerWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | FieldOptionCreateWithoutFieldInput | FieldOptionCreateWithoutFieldInput[] | FieldOptionUncheckedCreateWithoutFieldInput | FieldOptionUncheckedCreateWithoutFieldInput[] | No |
| connectOrCreate | FieldOptionCreateOrConnectWithoutFieldInput | FieldOptionCreateOrConnectWithoutFieldInput[] | No |
| createMany | FieldOptionCreateManyFieldInputEnvelope | No |
| connect | FieldOptionWhereUniqueInput | FieldOptionWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ConceptCreateWithoutFieldListInput | ConceptUncheckedCreateWithoutFieldListInput | No |
| connectOrCreate | ConceptCreateOrConnectWithoutFieldListInput | No |
| upsert | ConceptUpsertWithoutFieldListInput | No |
| connect | ConceptWhereUniqueInput | No |
| update | ConceptUpdateToOneWithWhereWithoutFieldListInput | ConceptUpdateWithoutFieldListInput | ConceptUncheckedUpdateWithoutFieldListInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | FormCreateWithoutDieldInput | FormCreateWithoutDieldInput[] | FormUncheckedCreateWithoutDieldInput | FormUncheckedCreateWithoutDieldInput[] | No |
| connectOrCreate | FormCreateOrConnectWithoutDieldInput | FormCreateOrConnectWithoutDieldInput[] | No |
| upsert | FormUpsertWithWhereUniqueWithoutDieldInput | FormUpsertWithWhereUniqueWithoutDieldInput[] | No |
| createMany | FormCreateManyDieldInputEnvelope | No |
| set | FormWhereUniqueInput | FormWhereUniqueInput[] | No |
| disconnect | FormWhereUniqueInput | FormWhereUniqueInput[] | No |
| delete | FormWhereUniqueInput | FormWhereUniqueInput[] | No |
| connect | FormWhereUniqueInput | FormWhereUniqueInput[] | No |
| update | FormUpdateWithWhereUniqueWithoutDieldInput | FormUpdateWithWhereUniqueWithoutDieldInput[] | No |
| updateMany | FormUpdateManyWithWhereWithoutDieldInput | FormUpdateManyWithWhereWithoutDieldInput[] | No |
| deleteMany | FormScalarWhereInput | FormScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | FormCreateWithoutDieldInput | FormCreateWithoutDieldInput[] | FormUncheckedCreateWithoutDieldInput | FormUncheckedCreateWithoutDieldInput[] | No |
| connectOrCreate | FormCreateOrConnectWithoutDieldInput | FormCreateOrConnectWithoutDieldInput[] | No |
| upsert | FormUpsertWithWhereUniqueWithoutDieldInput | FormUpsertWithWhereUniqueWithoutDieldInput[] | No |
| createMany | FormCreateManyDieldInputEnvelope | No |
| set | FormWhereUniqueInput | FormWhereUniqueInput[] | No |
| disconnect | FormWhereUniqueInput | FormWhereUniqueInput[] | No |
| delete | FormWhereUniqueInput | FormWhereUniqueInput[] | No |
| connect | FormWhereUniqueInput | FormWhereUniqueInput[] | No |
| update | FormUpdateWithWhereUniqueWithoutDieldInput | FormUpdateWithWhereUniqueWithoutDieldInput[] | No |
| updateMany | FormUpdateManyWithWhereWithoutDieldInput | FormUpdateManyWithWhereWithoutDieldInput[] | No |
| deleteMany | FormScalarWhereInput | FormScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | FormSubmissionCreateWithoutFieldAnswerListInput | FormSubmissionUncheckedCreateWithoutFieldAnswerListInput | No |
| connectOrCreate | FormSubmissionCreateOrConnectWithoutFieldAnswerListInput | No |
| connect | FormSubmissionWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | FieldCreateWithoutFieldAnswerListInput | FieldUncheckedCreateWithoutFieldAnswerListInput | No |
| connectOrCreate | FieldCreateOrConnectWithoutFieldAnswerListInput | No |
| connect | FieldWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | FieldCreateWithoutFieldAnswerListInput | FieldUncheckedCreateWithoutFieldAnswerListInput | No |
| connectOrCreate | FieldCreateOrConnectWithoutFieldAnswerListInput | No |
| upsert | FieldUpsertWithoutFieldAnswerListInput | No |
| connect | FieldWhereUniqueInput | No |
| update | FieldUpdateToOneWithWhereWithoutFieldAnswerListInput | FieldUpdateWithoutFieldAnswerListInput | FieldUncheckedUpdateWithoutFieldAnswerListInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | FieldCreateWithoutFieldOptionListInput | FieldUncheckedCreateWithoutFieldOptionListInput | No |
| connectOrCreate | FieldCreateOrConnectWithoutFieldOptionListInput | No |
| connect | FieldWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | FieldCreateWithoutFieldOptionListInput | FieldUncheckedCreateWithoutFieldOptionListInput | No |
| connectOrCreate | FieldCreateOrConnectWithoutFieldOptionListInput | No |
| upsert | FieldUpsertWithoutFieldOptionListInput | No |
| connect | FieldWhereUniqueInput | No |
| update | FieldUpdateToOneWithWhereWithoutFieldOptionListInput | FieldUpdateWithoutFieldOptionListInput | FieldUncheckedUpdateWithoutFieldOptionListInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | EncounterTypeCreateWithoutEncounterListInput | EncounterTypeUncheckedCreateWithoutEncounterListInput | No |
| connectOrCreate | EncounterTypeCreateOrConnectWithoutEncounterListInput | No |
| connect | EncounterTypeWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PatientCreateWithoutEncounterListInput | PatientUncheckedCreateWithoutEncounterListInput | No |
| connectOrCreate | PatientCreateOrConnectWithoutEncounterListInput | No |
| connect | PatientWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | LocationCreateWithoutEncounterListInput | LocationUncheckedCreateWithoutEncounterListInput | No |
| connectOrCreate | LocationCreateOrConnectWithoutEncounterListInput | No |
| connect | LocationWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | FormCreateWithoutEncounterListInput | FormUncheckedCreateWithoutEncounterListInput | No |
| connectOrCreate | FormCreateOrConnectWithoutEncounterListInput | No |
| connect | FormWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ProviderCreateWithoutEncounterListInput | ProviderUncheckedCreateWithoutEncounterListInput | No |
| connectOrCreate | ProviderCreateOrConnectWithoutEncounterListInput | No |
| connect | ProviderWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ObsCreateWithoutEncounterInput | ObsCreateWithoutEncounterInput[] | ObsUncheckedCreateWithoutEncounterInput | ObsUncheckedCreateWithoutEncounterInput[] | No |
| connectOrCreate | ObsCreateOrConnectWithoutEncounterInput | ObsCreateOrConnectWithoutEncounterInput[] | No |
| createMany | ObsCreateManyEncounterInputEnvelope | No |
| connect | ObsWhereUniqueInput | ObsWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrderCreateWithoutEncounterInput | OrderCreateWithoutEncounterInput[] | OrderUncheckedCreateWithoutEncounterInput | OrderUncheckedCreateWithoutEncounterInput[] | No |
| connectOrCreate | OrderCreateOrConnectWithoutEncounterInput | OrderCreateOrConnectWithoutEncounterInput[] | No |
| createMany | OrderCreateManyEncounterInputEnvelope | No |
| connect | OrderWhereUniqueInput | OrderWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ObsCreateWithoutEncounterInput | ObsCreateWithoutEncounterInput[] | ObsUncheckedCreateWithoutEncounterInput | ObsUncheckedCreateWithoutEncounterInput[] | No |
| connectOrCreate | ObsCreateOrConnectWithoutEncounterInput | ObsCreateOrConnectWithoutEncounterInput[] | No |
| createMany | ObsCreateManyEncounterInputEnvelope | No |
| connect | ObsWhereUniqueInput | ObsWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrderCreateWithoutEncounterInput | OrderCreateWithoutEncounterInput[] | OrderUncheckedCreateWithoutEncounterInput | OrderUncheckedCreateWithoutEncounterInput[] | No |
| connectOrCreate | OrderCreateOrConnectWithoutEncounterInput | OrderCreateOrConnectWithoutEncounterInput[] | No |
| createMany | OrderCreateManyEncounterInputEnvelope | No |
| connect | OrderWhereUniqueInput | OrderWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PatientCreateWithoutEncounterListInput | PatientUncheckedCreateWithoutEncounterListInput | No |
| connectOrCreate | PatientCreateOrConnectWithoutEncounterListInput | No |
| upsert | PatientUpsertWithoutEncounterListInput | No |
| connect | PatientWhereUniqueInput | No |
| update | PatientUpdateToOneWithWhereWithoutEncounterListInput | PatientUpdateWithoutEncounterListInput | PatientUncheckedUpdateWithoutEncounterListInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | LocationCreateWithoutEncounterListInput | LocationUncheckedCreateWithoutEncounterListInput | No |
| connectOrCreate | LocationCreateOrConnectWithoutEncounterListInput | No |
| upsert | LocationUpsertWithoutEncounterListInput | No |
| connect | LocationWhereUniqueInput | No |
| update | LocationUpdateToOneWithWhereWithoutEncounterListInput | LocationUpdateWithoutEncounterListInput | LocationUncheckedUpdateWithoutEncounterListInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | FormCreateWithoutEncounterListInput | FormUncheckedCreateWithoutEncounterListInput | No |
| connectOrCreate | FormCreateOrConnectWithoutEncounterListInput | No |
| upsert | FormUpsertWithoutEncounterListInput | No |
| connect | FormWhereUniqueInput | No |
| update | FormUpdateToOneWithWhereWithoutEncounterListInput | FormUpdateWithoutEncounterListInput | FormUncheckedUpdateWithoutEncounterListInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ProviderCreateWithoutEncounterListInput | ProviderUncheckedCreateWithoutEncounterListInput | No |
| connectOrCreate | ProviderCreateOrConnectWithoutEncounterListInput | No |
| upsert | ProviderUpsertWithoutEncounterListInput | No |
| connect | ProviderWhereUniqueInput | No |
| update | ProviderUpdateToOneWithWhereWithoutEncounterListInput | ProviderUpdateWithoutEncounterListInput | ProviderUncheckedUpdateWithoutEncounterListInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ObsCreateWithoutEncounterInput | ObsCreateWithoutEncounterInput[] | ObsUncheckedCreateWithoutEncounterInput | ObsUncheckedCreateWithoutEncounterInput[] | No |
| connectOrCreate | ObsCreateOrConnectWithoutEncounterInput | ObsCreateOrConnectWithoutEncounterInput[] | No |
| upsert | ObsUpsertWithWhereUniqueWithoutEncounterInput | ObsUpsertWithWhereUniqueWithoutEncounterInput[] | No |
| createMany | ObsCreateManyEncounterInputEnvelope | No |
| set | ObsWhereUniqueInput | ObsWhereUniqueInput[] | No |
| disconnect | ObsWhereUniqueInput | ObsWhereUniqueInput[] | No |
| delete | ObsWhereUniqueInput | ObsWhereUniqueInput[] | No |
| connect | ObsWhereUniqueInput | ObsWhereUniqueInput[] | No |
| update | ObsUpdateWithWhereUniqueWithoutEncounterInput | ObsUpdateWithWhereUniqueWithoutEncounterInput[] | No |
| updateMany | ObsUpdateManyWithWhereWithoutEncounterInput | ObsUpdateManyWithWhereWithoutEncounterInput[] | No |
| deleteMany | ObsScalarWhereInput | ObsScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrderCreateWithoutEncounterInput | OrderCreateWithoutEncounterInput[] | OrderUncheckedCreateWithoutEncounterInput | OrderUncheckedCreateWithoutEncounterInput[] | No |
| connectOrCreate | OrderCreateOrConnectWithoutEncounterInput | OrderCreateOrConnectWithoutEncounterInput[] | No |
| upsert | OrderUpsertWithWhereUniqueWithoutEncounterInput | OrderUpsertWithWhereUniqueWithoutEncounterInput[] | No |
| createMany | OrderCreateManyEncounterInputEnvelope | No |
| set | OrderWhereUniqueInput | OrderWhereUniqueInput[] | No |
| disconnect | OrderWhereUniqueInput | OrderWhereUniqueInput[] | No |
| delete | OrderWhereUniqueInput | OrderWhereUniqueInput[] | No |
| connect | OrderWhereUniqueInput | OrderWhereUniqueInput[] | No |
| update | OrderUpdateWithWhereUniqueWithoutEncounterInput | OrderUpdateWithWhereUniqueWithoutEncounterInput[] | No |
| updateMany | OrderUpdateManyWithWhereWithoutEncounterInput | OrderUpdateManyWithWhereWithoutEncounterInput[] | No |
| deleteMany | OrderScalarWhereInput | OrderScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ObsCreateWithoutEncounterInput | ObsCreateWithoutEncounterInput[] | ObsUncheckedCreateWithoutEncounterInput | ObsUncheckedCreateWithoutEncounterInput[] | No |
| connectOrCreate | ObsCreateOrConnectWithoutEncounterInput | ObsCreateOrConnectWithoutEncounterInput[] | No |
| upsert | ObsUpsertWithWhereUniqueWithoutEncounterInput | ObsUpsertWithWhereUniqueWithoutEncounterInput[] | No |
| createMany | ObsCreateManyEncounterInputEnvelope | No |
| set | ObsWhereUniqueInput | ObsWhereUniqueInput[] | No |
| disconnect | ObsWhereUniqueInput | ObsWhereUniqueInput[] | No |
| delete | ObsWhereUniqueInput | ObsWhereUniqueInput[] | No |
| connect | ObsWhereUniqueInput | ObsWhereUniqueInput[] | No |
| update | ObsUpdateWithWhereUniqueWithoutEncounterInput | ObsUpdateWithWhereUniqueWithoutEncounterInput[] | No |
| updateMany | ObsUpdateManyWithWhereWithoutEncounterInput | ObsUpdateManyWithWhereWithoutEncounterInput[] | No |
| deleteMany | ObsScalarWhereInput | ObsScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrderCreateWithoutEncounterInput | OrderCreateWithoutEncounterInput[] | OrderUncheckedCreateWithoutEncounterInput | OrderUncheckedCreateWithoutEncounterInput[] | No |
| connectOrCreate | OrderCreateOrConnectWithoutEncounterInput | OrderCreateOrConnectWithoutEncounterInput[] | No |
| upsert | OrderUpsertWithWhereUniqueWithoutEncounterInput | OrderUpsertWithWhereUniqueWithoutEncounterInput[] | No |
| createMany | OrderCreateManyEncounterInputEnvelope | No |
| set | OrderWhereUniqueInput | OrderWhereUniqueInput[] | No |
| disconnect | OrderWhereUniqueInput | OrderWhereUniqueInput[] | No |
| delete | OrderWhereUniqueInput | OrderWhereUniqueInput[] | No |
| connect | OrderWhereUniqueInput | OrderWhereUniqueInput[] | No |
| update | OrderUpdateWithWhereUniqueWithoutEncounterInput | OrderUpdateWithWhereUniqueWithoutEncounterInput[] | No |
| updateMany | OrderUpdateManyWithWhereWithoutEncounterInput | OrderUpdateManyWithWhereWithoutEncounterInput[] | No |
| deleteMany | OrderScalarWhereInput | OrderScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ConceptCreateWithoutObsListInput | ConceptUncheckedCreateWithoutObsListInput | No |
| connectOrCreate | ConceptCreateOrConnectWithoutObsListInput | No |
| connect | ConceptWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | EncounterCreateWithoutObsListInput | EncounterUncheckedCreateWithoutObsListInput | No |
| connectOrCreate | EncounterCreateOrConnectWithoutObsListInput | No |
| connect | EncounterWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ConceptCreateWithoutObsListInput | ConceptUncheckedCreateWithoutObsListInput | No |
| connectOrCreate | ConceptCreateOrConnectWithoutObsListInput | No |
| upsert | ConceptUpsertWithoutObsListInput | No |
| connect | ConceptWhereUniqueInput | No |
| update | ConceptUpdateToOneWithWhereWithoutObsListInput | ConceptUpdateWithoutObsListInput | ConceptUncheckedUpdateWithoutObsListInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | EncounterCreateWithoutObsListInput | EncounterUncheckedCreateWithoutObsListInput | No |
| connectOrCreate | EncounterCreateOrConnectWithoutObsListInput | No |
| upsert | EncounterUpsertWithoutObsListInput | No |
| connect | EncounterWhereUniqueInput | No |
| update | EncounterUpdateToOneWithWhereWithoutObsListInput | EncounterUpdateWithoutObsListInput | EncounterUncheckedUpdateWithoutObsListInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ConceptCreateWithoutOrderListInput | ConceptUncheckedCreateWithoutOrderListInput | No |
| connectOrCreate | ConceptCreateOrConnectWithoutOrderListInput | No |
| connect | ConceptWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | EncounterCreateWithoutOrderListInput | EncounterUncheckedCreateWithoutOrderListInput | No |
| connectOrCreate | EncounterCreateOrConnectWithoutOrderListInput | No |
| connect | EncounterWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrderFrequencyCreateWithoutOrderListInput | OrderFrequencyUncheckedCreateWithoutOrderListInput | No |
| connectOrCreate | OrderFrequencyCreateOrConnectWithoutOrderListInput | No |
| connect | OrderFrequencyWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrderRouteCreateWithoutOrderListInput | OrderRouteUncheckedCreateWithoutOrderListInput | No |
| connectOrCreate | OrderRouteCreateOrConnectWithoutOrderListInput | No |
| connect | OrderRouteWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrderTypeCreateWithoutOrderListInput | OrderTypeUncheckedCreateWithoutOrderListInput | No |
| connectOrCreate | OrderTypeCreateOrConnectWithoutOrderListInput | No |
| connect | OrderTypeWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrderUnitCreateWithoutOrderListInput | OrderUnitUncheckedCreateWithoutOrderListInput | No |
| connectOrCreate | OrderUnitCreateOrConnectWithoutOrderListInput | No |
| connect | OrderUnitWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ConceptCreateWithoutOrderListInput | ConceptUncheckedCreateWithoutOrderListInput | No |
| connectOrCreate | ConceptCreateOrConnectWithoutOrderListInput | No |
| upsert | ConceptUpsertWithoutOrderListInput | No |
| connect | ConceptWhereUniqueInput | No |
| update | ConceptUpdateToOneWithWhereWithoutOrderListInput | ConceptUpdateWithoutOrderListInput | ConceptUncheckedUpdateWithoutOrderListInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | EncounterCreateWithoutOrderListInput | EncounterUncheckedCreateWithoutOrderListInput | No |
| connectOrCreate | EncounterCreateOrConnectWithoutOrderListInput | No |
| upsert | EncounterUpsertWithoutOrderListInput | No |
| connect | EncounterWhereUniqueInput | No |
| update | EncounterUpdateToOneWithWhereWithoutOrderListInput | EncounterUpdateWithoutOrderListInput | EncounterUncheckedUpdateWithoutOrderListInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrderFrequencyCreateWithoutOrderListInput | OrderFrequencyUncheckedCreateWithoutOrderListInput | No |
| connectOrCreate | OrderFrequencyCreateOrConnectWithoutOrderListInput | No |
| upsert | OrderFrequencyUpsertWithoutOrderListInput | No |
| disconnect | Boolean | OrderFrequencyWhereInput | No |
| delete | Boolean | OrderFrequencyWhereInput | No |
| connect | OrderFrequencyWhereUniqueInput | No |
| update | OrderFrequencyUpdateToOneWithWhereWithoutOrderListInput | OrderFrequencyUpdateWithoutOrderListInput | OrderFrequencyUncheckedUpdateWithoutOrderListInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrderRouteCreateWithoutOrderListInput | OrderRouteUncheckedCreateWithoutOrderListInput | No |
| connectOrCreate | OrderRouteCreateOrConnectWithoutOrderListInput | No |
| upsert | OrderRouteUpsertWithoutOrderListInput | No |
| disconnect | Boolean | OrderRouteWhereInput | No |
| delete | Boolean | OrderRouteWhereInput | No |
| connect | OrderRouteWhereUniqueInput | No |
| update | OrderRouteUpdateToOneWithWhereWithoutOrderListInput | OrderRouteUpdateWithoutOrderListInput | OrderRouteUncheckedUpdateWithoutOrderListInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrderTypeCreateWithoutOrderListInput | OrderTypeUncheckedCreateWithoutOrderListInput | No |
| connectOrCreate | OrderTypeCreateOrConnectWithoutOrderListInput | No |
| upsert | OrderTypeUpsertWithoutOrderListInput | No |
| disconnect | Boolean | OrderTypeWhereInput | No |
| delete | Boolean | OrderTypeWhereInput | No |
| connect | OrderTypeWhereUniqueInput | No |
| update | OrderTypeUpdateToOneWithWhereWithoutOrderListInput | OrderTypeUpdateWithoutOrderListInput | OrderTypeUncheckedUpdateWithoutOrderListInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrderUnitCreateWithoutOrderListInput | OrderUnitUncheckedCreateWithoutOrderListInput | No |
| connectOrCreate | OrderUnitCreateOrConnectWithoutOrderListInput | No |
| upsert | OrderUnitUpsertWithoutOrderListInput | No |
| disconnect | Boolean | OrderUnitWhereInput | No |
| delete | Boolean | OrderUnitWhereInput | No |
| connect | OrderUnitWhereUniqueInput | No |
| update | OrderUnitUpdateToOneWithWhereWithoutOrderListInput | OrderUnitUpdateWithoutOrderListInput | OrderUnitUncheckedUpdateWithoutOrderListInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrderCreateWithoutOrderFrequencyInput | OrderCreateWithoutOrderFrequencyInput[] | OrderUncheckedCreateWithoutOrderFrequencyInput | OrderUncheckedCreateWithoutOrderFrequencyInput[] | No |
| connectOrCreate | OrderCreateOrConnectWithoutOrderFrequencyInput | OrderCreateOrConnectWithoutOrderFrequencyInput[] | No |
| createMany | OrderCreateManyOrderFrequencyInputEnvelope | No |
| connect | OrderWhereUniqueInput | OrderWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrderCreateWithoutOrderFrequencyInput | OrderCreateWithoutOrderFrequencyInput[] | OrderUncheckedCreateWithoutOrderFrequencyInput | OrderUncheckedCreateWithoutOrderFrequencyInput[] | No |
| connectOrCreate | OrderCreateOrConnectWithoutOrderFrequencyInput | OrderCreateOrConnectWithoutOrderFrequencyInput[] | No |
| createMany | OrderCreateManyOrderFrequencyInputEnvelope | No |
| connect | OrderWhereUniqueInput | OrderWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrderCreateWithoutOrderRouteInput | OrderCreateWithoutOrderRouteInput[] | OrderUncheckedCreateWithoutOrderRouteInput | OrderUncheckedCreateWithoutOrderRouteInput[] | No |
| connectOrCreate | OrderCreateOrConnectWithoutOrderRouteInput | OrderCreateOrConnectWithoutOrderRouteInput[] | No |
| createMany | OrderCreateManyOrderRouteInputEnvelope | No |
| connect | OrderWhereUniqueInput | OrderWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrderCreateWithoutOrderRouteInput | OrderCreateWithoutOrderRouteInput[] | OrderUncheckedCreateWithoutOrderRouteInput | OrderUncheckedCreateWithoutOrderRouteInput[] | No |
| connectOrCreate | OrderCreateOrConnectWithoutOrderRouteInput | OrderCreateOrConnectWithoutOrderRouteInput[] | No |
| createMany | OrderCreateManyOrderRouteInputEnvelope | No |
| connect | OrderWhereUniqueInput | OrderWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrderCreateWithoutOrderRouteInput | OrderCreateWithoutOrderRouteInput[] | OrderUncheckedCreateWithoutOrderRouteInput | OrderUncheckedCreateWithoutOrderRouteInput[] | No |
| connectOrCreate | OrderCreateOrConnectWithoutOrderRouteInput | OrderCreateOrConnectWithoutOrderRouteInput[] | No |
| upsert | OrderUpsertWithWhereUniqueWithoutOrderRouteInput | OrderUpsertWithWhereUniqueWithoutOrderRouteInput[] | No |
| createMany | OrderCreateManyOrderRouteInputEnvelope | No |
| set | OrderWhereUniqueInput | OrderWhereUniqueInput[] | No |
| disconnect | OrderWhereUniqueInput | OrderWhereUniqueInput[] | No |
| delete | OrderWhereUniqueInput | OrderWhereUniqueInput[] | No |
| connect | OrderWhereUniqueInput | OrderWhereUniqueInput[] | No |
| update | OrderUpdateWithWhereUniqueWithoutOrderRouteInput | OrderUpdateWithWhereUniqueWithoutOrderRouteInput[] | No |
| updateMany | OrderUpdateManyWithWhereWithoutOrderRouteInput | OrderUpdateManyWithWhereWithoutOrderRouteInput[] | No |
| deleteMany | OrderScalarWhereInput | OrderScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrderCreateWithoutOrderRouteInput | OrderCreateWithoutOrderRouteInput[] | OrderUncheckedCreateWithoutOrderRouteInput | OrderUncheckedCreateWithoutOrderRouteInput[] | No |
| connectOrCreate | OrderCreateOrConnectWithoutOrderRouteInput | OrderCreateOrConnectWithoutOrderRouteInput[] | No |
| upsert | OrderUpsertWithWhereUniqueWithoutOrderRouteInput | OrderUpsertWithWhereUniqueWithoutOrderRouteInput[] | No |
| createMany | OrderCreateManyOrderRouteInputEnvelope | No |
| set | OrderWhereUniqueInput | OrderWhereUniqueInput[] | No |
| disconnect | OrderWhereUniqueInput | OrderWhereUniqueInput[] | No |
| delete | OrderWhereUniqueInput | OrderWhereUniqueInput[] | No |
| connect | OrderWhereUniqueInput | OrderWhereUniqueInput[] | No |
| update | OrderUpdateWithWhereUniqueWithoutOrderRouteInput | OrderUpdateWithWhereUniqueWithoutOrderRouteInput[] | No |
| updateMany | OrderUpdateManyWithWhereWithoutOrderRouteInput | OrderUpdateManyWithWhereWithoutOrderRouteInput[] | No |
| deleteMany | OrderScalarWhereInput | OrderScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrderCreateWithoutOrderTypeInput | OrderCreateWithoutOrderTypeInput[] | OrderUncheckedCreateWithoutOrderTypeInput | OrderUncheckedCreateWithoutOrderTypeInput[] | No |
| connectOrCreate | OrderCreateOrConnectWithoutOrderTypeInput | OrderCreateOrConnectWithoutOrderTypeInput[] | No |
| createMany | OrderCreateManyOrderTypeInputEnvelope | No |
| connect | OrderWhereUniqueInput | OrderWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrderCreateWithoutOrderTypeInput | OrderCreateWithoutOrderTypeInput[] | OrderUncheckedCreateWithoutOrderTypeInput | OrderUncheckedCreateWithoutOrderTypeInput[] | No |
| connectOrCreate | OrderCreateOrConnectWithoutOrderTypeInput | OrderCreateOrConnectWithoutOrderTypeInput[] | No |
| createMany | OrderCreateManyOrderTypeInputEnvelope | No |
| connect | OrderWhereUniqueInput | OrderWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrderCreateWithoutOrderTypeInput | OrderCreateWithoutOrderTypeInput[] | OrderUncheckedCreateWithoutOrderTypeInput | OrderUncheckedCreateWithoutOrderTypeInput[] | No |
| connectOrCreate | OrderCreateOrConnectWithoutOrderTypeInput | OrderCreateOrConnectWithoutOrderTypeInput[] | No |
| upsert | OrderUpsertWithWhereUniqueWithoutOrderTypeInput | OrderUpsertWithWhereUniqueWithoutOrderTypeInput[] | No |
| createMany | OrderCreateManyOrderTypeInputEnvelope | No |
| set | OrderWhereUniqueInput | OrderWhereUniqueInput[] | No |
| disconnect | OrderWhereUniqueInput | OrderWhereUniqueInput[] | No |
| delete | OrderWhereUniqueInput | OrderWhereUniqueInput[] | No |
| connect | OrderWhereUniqueInput | OrderWhereUniqueInput[] | No |
| update | OrderUpdateWithWhereUniqueWithoutOrderTypeInput | OrderUpdateWithWhereUniqueWithoutOrderTypeInput[] | No |
| updateMany | OrderUpdateManyWithWhereWithoutOrderTypeInput | OrderUpdateManyWithWhereWithoutOrderTypeInput[] | No |
| deleteMany | OrderScalarWhereInput | OrderScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrderCreateWithoutOrderTypeInput | OrderCreateWithoutOrderTypeInput[] | OrderUncheckedCreateWithoutOrderTypeInput | OrderUncheckedCreateWithoutOrderTypeInput[] | No |
| connectOrCreate | OrderCreateOrConnectWithoutOrderTypeInput | OrderCreateOrConnectWithoutOrderTypeInput[] | No |
| upsert | OrderUpsertWithWhereUniqueWithoutOrderTypeInput | OrderUpsertWithWhereUniqueWithoutOrderTypeInput[] | No |
| createMany | OrderCreateManyOrderTypeInputEnvelope | No |
| set | OrderWhereUniqueInput | OrderWhereUniqueInput[] | No |
| disconnect | OrderWhereUniqueInput | OrderWhereUniqueInput[] | No |
| delete | OrderWhereUniqueInput | OrderWhereUniqueInput[] | No |
| connect | OrderWhereUniqueInput | OrderWhereUniqueInput[] | No |
| update | OrderUpdateWithWhereUniqueWithoutOrderTypeInput | OrderUpdateWithWhereUniqueWithoutOrderTypeInput[] | No |
| updateMany | OrderUpdateManyWithWhereWithoutOrderTypeInput | OrderUpdateManyWithWhereWithoutOrderTypeInput[] | No |
| deleteMany | OrderScalarWhereInput | OrderScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrderCreateWithoutOrderUnitInput | OrderCreateWithoutOrderUnitInput[] | OrderUncheckedCreateWithoutOrderUnitInput | OrderUncheckedCreateWithoutOrderUnitInput[] | No |
| connectOrCreate | OrderCreateOrConnectWithoutOrderUnitInput | OrderCreateOrConnectWithoutOrderUnitInput[] | No |
| createMany | OrderCreateManyOrderUnitInputEnvelope | No |
| connect | OrderWhereUniqueInput | OrderWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrderCreateWithoutOrderUnitInput | OrderCreateWithoutOrderUnitInput[] | OrderUncheckedCreateWithoutOrderUnitInput | OrderUncheckedCreateWithoutOrderUnitInput[] | No |
| connectOrCreate | OrderCreateOrConnectWithoutOrderUnitInput | OrderCreateOrConnectWithoutOrderUnitInput[] | No |
| createMany | OrderCreateManyOrderUnitInputEnvelope | No |
| connect | OrderWhereUniqueInput | OrderWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrderCreateWithoutOrderUnitInput | OrderCreateWithoutOrderUnitInput[] | OrderUncheckedCreateWithoutOrderUnitInput | OrderUncheckedCreateWithoutOrderUnitInput[] | No |
| connectOrCreate | OrderCreateOrConnectWithoutOrderUnitInput | OrderCreateOrConnectWithoutOrderUnitInput[] | No |
| upsert | OrderUpsertWithWhereUniqueWithoutOrderUnitInput | OrderUpsertWithWhereUniqueWithoutOrderUnitInput[] | No |
| createMany | OrderCreateManyOrderUnitInputEnvelope | No |
| set | OrderWhereUniqueInput | OrderWhereUniqueInput[] | No |
| disconnect | OrderWhereUniqueInput | OrderWhereUniqueInput[] | No |
| delete | OrderWhereUniqueInput | OrderWhereUniqueInput[] | No |
| connect | OrderWhereUniqueInput | OrderWhereUniqueInput[] | No |
| update | OrderUpdateWithWhereUniqueWithoutOrderUnitInput | OrderUpdateWithWhereUniqueWithoutOrderUnitInput[] | No |
| updateMany | OrderUpdateManyWithWhereWithoutOrderUnitInput | OrderUpdateManyWithWhereWithoutOrderUnitInput[] | No |
| deleteMany | OrderScalarWhereInput | OrderScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrderCreateWithoutOrderUnitInput | OrderCreateWithoutOrderUnitInput[] | OrderUncheckedCreateWithoutOrderUnitInput | OrderUncheckedCreateWithoutOrderUnitInput[] | No |
| connectOrCreate | OrderCreateOrConnectWithoutOrderUnitInput | OrderCreateOrConnectWithoutOrderUnitInput[] | No |
| upsert | OrderUpsertWithWhereUniqueWithoutOrderUnitInput | OrderUpsertWithWhereUniqueWithoutOrderUnitInput[] | No |
| createMany | OrderCreateManyOrderUnitInputEnvelope | No |
| set | OrderWhereUniqueInput | OrderWhereUniqueInput[] | No |
| disconnect | OrderWhereUniqueInput | OrderWhereUniqueInput[] | No |
| delete | OrderWhereUniqueInput | OrderWhereUniqueInput[] | No |
| connect | OrderWhereUniqueInput | OrderWhereUniqueInput[] | No |
| update | OrderUpdateWithWhereUniqueWithoutOrderUnitInput | OrderUpdateWithWhereUniqueWithoutOrderUnitInput[] | No |
| updateMany | OrderUpdateManyWithWhereWithoutOrderUnitInput | OrderUpdateManyWithWhereWithoutOrderUnitInput[] | No |
| deleteMany | OrderScalarWhereInput | OrderScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | FieldCreateWithoutConceptInput | FieldCreateWithoutConceptInput[] | FieldUncheckedCreateWithoutConceptInput | FieldUncheckedCreateWithoutConceptInput[] | No |
| connectOrCreate | FieldCreateOrConnectWithoutConceptInput | FieldCreateOrConnectWithoutConceptInput[] | No |
| createMany | FieldCreateManyConceptInputEnvelope | No |
| connect | FieldWhereUniqueInput | FieldWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ObsCreateWithoutConceptInput | ObsCreateWithoutConceptInput[] | ObsUncheckedCreateWithoutConceptInput | ObsUncheckedCreateWithoutConceptInput[] | No |
| connectOrCreate | ObsCreateOrConnectWithoutConceptInput | ObsCreateOrConnectWithoutConceptInput[] | No |
| createMany | ObsCreateManyConceptInputEnvelope | No |
| connect | ObsWhereUniqueInput | ObsWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrderCreateWithoutConceptInput | OrderCreateWithoutConceptInput[] | OrderUncheckedCreateWithoutConceptInput | OrderUncheckedCreateWithoutConceptInput[] | No |
| connectOrCreate | OrderCreateOrConnectWithoutConceptInput | OrderCreateOrConnectWithoutConceptInput[] | No |
| createMany | OrderCreateManyConceptInputEnvelope | No |
| connect | OrderWhereUniqueInput | OrderWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ConceptClassCreateWithoutConceptListInput | ConceptClassUncheckedCreateWithoutConceptListInput | No |
| connectOrCreate | ConceptClassCreateOrConnectWithoutConceptListInput | No |
| connect | ConceptClassWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ConceptDatatypeCreateWithoutConceptListInput | ConceptDatatypeUncheckedCreateWithoutConceptListInput | No |
| connectOrCreate | ConceptDatatypeCreateOrConnectWithoutConceptListInput | No |
| connect | ConceptDatatypeWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ConceptMapCreateWithoutConceptListInput | ConceptMapUncheckedCreateWithoutConceptListInput | No |
| connectOrCreate | ConceptMapCreateOrConnectWithoutConceptListInput | No |
| connect | ConceptMapWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ConceptNameCreateWithoutConceptInput | ConceptNameCreateWithoutConceptInput[] | ConceptNameUncheckedCreateWithoutConceptInput | ConceptNameUncheckedCreateWithoutConceptInput[] | No |
| connectOrCreate | ConceptNameCreateOrConnectWithoutConceptInput | ConceptNameCreateOrConnectWithoutConceptInput[] | No |
| createMany | ConceptNameCreateManyConceptInputEnvelope | No |
| connect | ConceptNameWhereUniqueInput | ConceptNameWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ConceptSetCreateWithoutConceptListInput | ConceptSetUncheckedCreateWithoutConceptListInput | No |
| connectOrCreate | ConceptSetCreateOrConnectWithoutConceptListInput | No |
| connect | ConceptSetWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ConceptSourceCreateWithoutConceptListInput | ConceptSourceUncheckedCreateWithoutConceptListInput | No |
| connectOrCreate | ConceptSourceCreateOrConnectWithoutConceptListInput | No |
| connect | ConceptSourceWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ConceptWordCreateWithoutConceptInput | ConceptWordCreateWithoutConceptInput[] | ConceptWordUncheckedCreateWithoutConceptInput | ConceptWordUncheckedCreateWithoutConceptInput[] | No |
| connectOrCreate | ConceptWordCreateOrConnectWithoutConceptInput | ConceptWordCreateOrConnectWithoutConceptInput[] | No |
| createMany | ConceptWordCreateManyConceptInputEnvelope | No |
| connect | ConceptWordWhereUniqueInput | ConceptWordWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | FieldCreateWithoutConceptInput | FieldCreateWithoutConceptInput[] | FieldUncheckedCreateWithoutConceptInput | FieldUncheckedCreateWithoutConceptInput[] | No |
| connectOrCreate | FieldCreateOrConnectWithoutConceptInput | FieldCreateOrConnectWithoutConceptInput[] | No |
| createMany | FieldCreateManyConceptInputEnvelope | No |
| connect | FieldWhereUniqueInput | FieldWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ObsCreateWithoutConceptInput | ObsCreateWithoutConceptInput[] | ObsUncheckedCreateWithoutConceptInput | ObsUncheckedCreateWithoutConceptInput[] | No |
| connectOrCreate | ObsCreateOrConnectWithoutConceptInput | ObsCreateOrConnectWithoutConceptInput[] | No |
| createMany | ObsCreateManyConceptInputEnvelope | No |
| connect | ObsWhereUniqueInput | ObsWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrderCreateWithoutConceptInput | OrderCreateWithoutConceptInput[] | OrderUncheckedCreateWithoutConceptInput | OrderUncheckedCreateWithoutConceptInput[] | No |
| connectOrCreate | OrderCreateOrConnectWithoutConceptInput | OrderCreateOrConnectWithoutConceptInput[] | No |
| createMany | OrderCreateManyConceptInputEnvelope | No |
| connect | OrderWhereUniqueInput | OrderWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ConceptNameCreateWithoutConceptInput | ConceptNameCreateWithoutConceptInput[] | ConceptNameUncheckedCreateWithoutConceptInput | ConceptNameUncheckedCreateWithoutConceptInput[] | No |
| connectOrCreate | ConceptNameCreateOrConnectWithoutConceptInput | ConceptNameCreateOrConnectWithoutConceptInput[] | No |
| createMany | ConceptNameCreateManyConceptInputEnvelope | No |
| connect | ConceptNameWhereUniqueInput | ConceptNameWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ConceptWordCreateWithoutConceptInput | ConceptWordCreateWithoutConceptInput[] | ConceptWordUncheckedCreateWithoutConceptInput | ConceptWordUncheckedCreateWithoutConceptInput[] | No |
| connectOrCreate | ConceptWordCreateOrConnectWithoutConceptInput | ConceptWordCreateOrConnectWithoutConceptInput[] | No |
| createMany | ConceptWordCreateManyConceptInputEnvelope | No |
| connect | ConceptWordWhereUniqueInput | ConceptWordWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | FieldCreateWithoutConceptInput | FieldCreateWithoutConceptInput[] | FieldUncheckedCreateWithoutConceptInput | FieldUncheckedCreateWithoutConceptInput[] | No |
| connectOrCreate | FieldCreateOrConnectWithoutConceptInput | FieldCreateOrConnectWithoutConceptInput[] | No |
| upsert | FieldUpsertWithWhereUniqueWithoutConceptInput | FieldUpsertWithWhereUniqueWithoutConceptInput[] | No |
| createMany | FieldCreateManyConceptInputEnvelope | No |
| set | FieldWhereUniqueInput | FieldWhereUniqueInput[] | No |
| disconnect | FieldWhereUniqueInput | FieldWhereUniqueInput[] | No |
| delete | FieldWhereUniqueInput | FieldWhereUniqueInput[] | No |
| connect | FieldWhereUniqueInput | FieldWhereUniqueInput[] | No |
| update | FieldUpdateWithWhereUniqueWithoutConceptInput | FieldUpdateWithWhereUniqueWithoutConceptInput[] | No |
| updateMany | FieldUpdateManyWithWhereWithoutConceptInput | FieldUpdateManyWithWhereWithoutConceptInput[] | No |
| deleteMany | FieldScalarWhereInput | FieldScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ObsCreateWithoutConceptInput | ObsCreateWithoutConceptInput[] | ObsUncheckedCreateWithoutConceptInput | ObsUncheckedCreateWithoutConceptInput[] | No |
| connectOrCreate | ObsCreateOrConnectWithoutConceptInput | ObsCreateOrConnectWithoutConceptInput[] | No |
| upsert | ObsUpsertWithWhereUniqueWithoutConceptInput | ObsUpsertWithWhereUniqueWithoutConceptInput[] | No |
| createMany | ObsCreateManyConceptInputEnvelope | No |
| set | ObsWhereUniqueInput | ObsWhereUniqueInput[] | No |
| disconnect | ObsWhereUniqueInput | ObsWhereUniqueInput[] | No |
| delete | ObsWhereUniqueInput | ObsWhereUniqueInput[] | No |
| connect | ObsWhereUniqueInput | ObsWhereUniqueInput[] | No |
| update | ObsUpdateWithWhereUniqueWithoutConceptInput | ObsUpdateWithWhereUniqueWithoutConceptInput[] | No |
| updateMany | ObsUpdateManyWithWhereWithoutConceptInput | ObsUpdateManyWithWhereWithoutConceptInput[] | No |
| deleteMany | ObsScalarWhereInput | ObsScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrderCreateWithoutConceptInput | OrderCreateWithoutConceptInput[] | OrderUncheckedCreateWithoutConceptInput | OrderUncheckedCreateWithoutConceptInput[] | No |
| connectOrCreate | OrderCreateOrConnectWithoutConceptInput | OrderCreateOrConnectWithoutConceptInput[] | No |
| upsert | OrderUpsertWithWhereUniqueWithoutConceptInput | OrderUpsertWithWhereUniqueWithoutConceptInput[] | No |
| createMany | OrderCreateManyConceptInputEnvelope | No |
| set | OrderWhereUniqueInput | OrderWhereUniqueInput[] | No |
| disconnect | OrderWhereUniqueInput | OrderWhereUniqueInput[] | No |
| delete | OrderWhereUniqueInput | OrderWhereUniqueInput[] | No |
| connect | OrderWhereUniqueInput | OrderWhereUniqueInput[] | No |
| update | OrderUpdateWithWhereUniqueWithoutConceptInput | OrderUpdateWithWhereUniqueWithoutConceptInput[] | No |
| updateMany | OrderUpdateManyWithWhereWithoutConceptInput | OrderUpdateManyWithWhereWithoutConceptInput[] | No |
| deleteMany | OrderScalarWhereInput | OrderScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ConceptClassCreateWithoutConceptListInput | ConceptClassUncheckedCreateWithoutConceptListInput | No |
| connectOrCreate | ConceptClassCreateOrConnectWithoutConceptListInput | No |
| upsert | ConceptClassUpsertWithoutConceptListInput | No |
| disconnect | Boolean | ConceptClassWhereInput | No |
| delete | Boolean | ConceptClassWhereInput | No |
| connect | ConceptClassWhereUniqueInput | No |
| update | ConceptClassUpdateToOneWithWhereWithoutConceptListInput | ConceptClassUpdateWithoutConceptListInput | ConceptClassUncheckedUpdateWithoutConceptListInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ConceptDatatypeCreateWithoutConceptListInput | ConceptDatatypeUncheckedCreateWithoutConceptListInput | No |
| connectOrCreate | ConceptDatatypeCreateOrConnectWithoutConceptListInput | No |
| upsert | ConceptDatatypeUpsertWithoutConceptListInput | No |
| disconnect | Boolean | ConceptDatatypeWhereInput | No |
| delete | Boolean | ConceptDatatypeWhereInput | No |
| connect | ConceptDatatypeWhereUniqueInput | No |
| update | ConceptDatatypeUpdateToOneWithWhereWithoutConceptListInput | ConceptDatatypeUpdateWithoutConceptListInput | ConceptDatatypeUncheckedUpdateWithoutConceptListInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ConceptMapCreateWithoutConceptListInput | ConceptMapUncheckedCreateWithoutConceptListInput | No |
| connectOrCreate | ConceptMapCreateOrConnectWithoutConceptListInput | No |
| upsert | ConceptMapUpsertWithoutConceptListInput | No |
| disconnect | Boolean | ConceptMapWhereInput | No |
| delete | Boolean | ConceptMapWhereInput | No |
| connect | ConceptMapWhereUniqueInput | No |
| update | ConceptMapUpdateToOneWithWhereWithoutConceptListInput | ConceptMapUpdateWithoutConceptListInput | ConceptMapUncheckedUpdateWithoutConceptListInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ConceptSetCreateWithoutConceptListInput | ConceptSetUncheckedCreateWithoutConceptListInput | No |
| connectOrCreate | ConceptSetCreateOrConnectWithoutConceptListInput | No |
| upsert | ConceptSetUpsertWithoutConceptListInput | No |
| disconnect | Boolean | ConceptSetWhereInput | No |
| delete | Boolean | ConceptSetWhereInput | No |
| connect | ConceptSetWhereUniqueInput | No |
| update | ConceptSetUpdateToOneWithWhereWithoutConceptListInput | ConceptSetUpdateWithoutConceptListInput | ConceptSetUncheckedUpdateWithoutConceptListInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ConceptSourceCreateWithoutConceptListInput | ConceptSourceUncheckedCreateWithoutConceptListInput | No |
| connectOrCreate | ConceptSourceCreateOrConnectWithoutConceptListInput | No |
| upsert | ConceptSourceUpsertWithoutConceptListInput | No |
| disconnect | Boolean | ConceptSourceWhereInput | No |
| delete | Boolean | ConceptSourceWhereInput | No |
| connect | ConceptSourceWhereUniqueInput | No |
| update | ConceptSourceUpdateToOneWithWhereWithoutConceptListInput | ConceptSourceUpdateWithoutConceptListInput | ConceptSourceUncheckedUpdateWithoutConceptListInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | FieldCreateWithoutConceptInput | FieldCreateWithoutConceptInput[] | FieldUncheckedCreateWithoutConceptInput | FieldUncheckedCreateWithoutConceptInput[] | No |
| connectOrCreate | FieldCreateOrConnectWithoutConceptInput | FieldCreateOrConnectWithoutConceptInput[] | No |
| upsert | FieldUpsertWithWhereUniqueWithoutConceptInput | FieldUpsertWithWhereUniqueWithoutConceptInput[] | No |
| createMany | FieldCreateManyConceptInputEnvelope | No |
| set | FieldWhereUniqueInput | FieldWhereUniqueInput[] | No |
| disconnect | FieldWhereUniqueInput | FieldWhereUniqueInput[] | No |
| delete | FieldWhereUniqueInput | FieldWhereUniqueInput[] | No |
| connect | FieldWhereUniqueInput | FieldWhereUniqueInput[] | No |
| update | FieldUpdateWithWhereUniqueWithoutConceptInput | FieldUpdateWithWhereUniqueWithoutConceptInput[] | No |
| updateMany | FieldUpdateManyWithWhereWithoutConceptInput | FieldUpdateManyWithWhereWithoutConceptInput[] | No |
| deleteMany | FieldScalarWhereInput | FieldScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ObsCreateWithoutConceptInput | ObsCreateWithoutConceptInput[] | ObsUncheckedCreateWithoutConceptInput | ObsUncheckedCreateWithoutConceptInput[] | No |
| connectOrCreate | ObsCreateOrConnectWithoutConceptInput | ObsCreateOrConnectWithoutConceptInput[] | No |
| upsert | ObsUpsertWithWhereUniqueWithoutConceptInput | ObsUpsertWithWhereUniqueWithoutConceptInput[] | No |
| createMany | ObsCreateManyConceptInputEnvelope | No |
| set | ObsWhereUniqueInput | ObsWhereUniqueInput[] | No |
| disconnect | ObsWhereUniqueInput | ObsWhereUniqueInput[] | No |
| delete | ObsWhereUniqueInput | ObsWhereUniqueInput[] | No |
| connect | ObsWhereUniqueInput | ObsWhereUniqueInput[] | No |
| update | ObsUpdateWithWhereUniqueWithoutConceptInput | ObsUpdateWithWhereUniqueWithoutConceptInput[] | No |
| updateMany | ObsUpdateManyWithWhereWithoutConceptInput | ObsUpdateManyWithWhereWithoutConceptInput[] | No |
| deleteMany | ObsScalarWhereInput | ObsScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrderCreateWithoutConceptInput | OrderCreateWithoutConceptInput[] | OrderUncheckedCreateWithoutConceptInput | OrderUncheckedCreateWithoutConceptInput[] | No |
| connectOrCreate | OrderCreateOrConnectWithoutConceptInput | OrderCreateOrConnectWithoutConceptInput[] | No |
| upsert | OrderUpsertWithWhereUniqueWithoutConceptInput | OrderUpsertWithWhereUniqueWithoutConceptInput[] | No |
| createMany | OrderCreateManyConceptInputEnvelope | No |
| set | OrderWhereUniqueInput | OrderWhereUniqueInput[] | No |
| disconnect | OrderWhereUniqueInput | OrderWhereUniqueInput[] | No |
| delete | OrderWhereUniqueInput | OrderWhereUniqueInput[] | No |
| connect | OrderWhereUniqueInput | OrderWhereUniqueInput[] | No |
| update | OrderUpdateWithWhereUniqueWithoutConceptInput | OrderUpdateWithWhereUniqueWithoutConceptInput[] | No |
| updateMany | OrderUpdateManyWithWhereWithoutConceptInput | OrderUpdateManyWithWhereWithoutConceptInput[] | No |
| deleteMany | OrderScalarWhereInput | OrderScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ConceptCreateWithoutMetaListInput | ConceptUncheckedCreateWithoutMetaListInput | No |
| connectOrCreate | ConceptCreateOrConnectWithoutMetaListInput | No |
| connect | ConceptWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ConceptCreateWithoutAnswerListInput | ConceptUncheckedCreateWithoutAnswerListInput | No |
| connectOrCreate | ConceptCreateOrConnectWithoutAnswerListInput | No |
| connect | ConceptWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ConceptCreateWithoutMetaListInput | ConceptUncheckedCreateWithoutMetaListInput | No |
| connectOrCreate | ConceptCreateOrConnectWithoutMetaListInput | No |
| upsert | ConceptUpsertWithoutMetaListInput | No |
| connect | ConceptWhereUniqueInput | No |
| update | ConceptUpdateToOneWithWhereWithoutMetaListInput | ConceptUpdateWithoutMetaListInput | ConceptUncheckedUpdateWithoutMetaListInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ConceptCreateWithoutAnswerListInput | ConceptUncheckedCreateWithoutAnswerListInput | No |
| connectOrCreate | ConceptCreateOrConnectWithoutAnswerListInput | No |
| upsert | ConceptUpsertWithoutAnswerListInput | No |
| connect | ConceptWhereUniqueInput | No |
| update | ConceptUpdateToOneWithWhereWithoutAnswerListInput | ConceptUpdateWithoutAnswerListInput | ConceptUncheckedUpdateWithoutAnswerListInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ConceptCreateWithoutConceptClassInput | ConceptCreateWithoutConceptClassInput[] | ConceptUncheckedCreateWithoutConceptClassInput | ConceptUncheckedCreateWithoutConceptClassInput[] | No |
| connectOrCreate | ConceptCreateOrConnectWithoutConceptClassInput | ConceptCreateOrConnectWithoutConceptClassInput[] | No |
| createMany | ConceptCreateManyConceptClassInputEnvelope | No |
| connect | ConceptWhereUniqueInput | ConceptWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ConceptCreateWithoutConceptClassInput | ConceptCreateWithoutConceptClassInput[] | ConceptUncheckedCreateWithoutConceptClassInput | ConceptUncheckedCreateWithoutConceptClassInput[] | No |
| connectOrCreate | ConceptCreateOrConnectWithoutConceptClassInput | ConceptCreateOrConnectWithoutConceptClassInput[] | No |
| createMany | ConceptCreateManyConceptClassInputEnvelope | No |
| connect | ConceptWhereUniqueInput | ConceptWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ConceptCreateWithoutConceptMapInput | ConceptCreateWithoutConceptMapInput[] | ConceptUncheckedCreateWithoutConceptMapInput | ConceptUncheckedCreateWithoutConceptMapInput[] | No |
| connectOrCreate | ConceptCreateOrConnectWithoutConceptMapInput | ConceptCreateOrConnectWithoutConceptMapInput[] | No |
| createMany | ConceptCreateManyConceptMapInputEnvelope | No |
| connect | ConceptWhereUniqueInput | ConceptWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ConceptCreateWithoutConceptMapInput | ConceptCreateWithoutConceptMapInput[] | ConceptUncheckedCreateWithoutConceptMapInput | ConceptUncheckedCreateWithoutConceptMapInput[] | No |
| connectOrCreate | ConceptCreateOrConnectWithoutConceptMapInput | ConceptCreateOrConnectWithoutConceptMapInput[] | No |
| createMany | ConceptCreateManyConceptMapInputEnvelope | No |
| connect | ConceptWhereUniqueInput | ConceptWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ConceptCreateWithoutConceptNameListInput | ConceptUncheckedCreateWithoutConceptNameListInput | No |
| connectOrCreate | ConceptCreateOrConnectWithoutConceptNameListInput | No |
| connect | ConceptWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ConceptCreateWithoutConceptNameListInput | ConceptUncheckedCreateWithoutConceptNameListInput | No |
| connectOrCreate | ConceptCreateOrConnectWithoutConceptNameListInput | No |
| upsert | ConceptUpsertWithoutConceptNameListInput | No |
| connect | ConceptWhereUniqueInput | No |
| update | ConceptUpdateToOneWithWhereWithoutConceptNameListInput | ConceptUpdateWithoutConceptNameListInput | ConceptUncheckedUpdateWithoutConceptNameListInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ConceptCreateWithoutConceptNumericListInput | ConceptUncheckedCreateWithoutConceptNumericListInput | No |
| connectOrCreate | ConceptCreateOrConnectWithoutConceptNumericListInput | No |
| connect | ConceptWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ConceptCreateWithoutConceptNumericListInput | ConceptUncheckedCreateWithoutConceptNumericListInput | No |
| connectOrCreate | ConceptCreateOrConnectWithoutConceptNumericListInput | No |
| upsert | ConceptUpsertWithoutConceptNumericListInput | No |
| connect | ConceptWhereUniqueInput | No |
| update | ConceptUpdateToOneWithWhereWithoutConceptNumericListInput | ConceptUpdateWithoutConceptNumericListInput | ConceptUncheckedUpdateWithoutConceptNumericListInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ConceptCreateWithoutConceptProposalListInput | ConceptUncheckedCreateWithoutConceptProposalListInput | No |
| connectOrCreate | ConceptCreateOrConnectWithoutConceptProposalListInput | No |
| connect | ConceptWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ConceptCreateWithoutConceptSetInput | ConceptCreateWithoutConceptSetInput[] | ConceptUncheckedCreateWithoutConceptSetInput | ConceptUncheckedCreateWithoutConceptSetInput[] | No |
| connectOrCreate | ConceptCreateOrConnectWithoutConceptSetInput | ConceptCreateOrConnectWithoutConceptSetInput[] | No |
| createMany | ConceptCreateManyConceptSetInputEnvelope | No |
| connect | ConceptWhereUniqueInput | ConceptWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ConceptCreateWithoutConceptSetInput | ConceptCreateWithoutConceptSetInput[] | ConceptUncheckedCreateWithoutConceptSetInput | ConceptUncheckedCreateWithoutConceptSetInput[] | No |
| connectOrCreate | ConceptCreateOrConnectWithoutConceptSetInput | ConceptCreateOrConnectWithoutConceptSetInput[] | No |
| createMany | ConceptCreateManyConceptSetInputEnvelope | No |
| connect | ConceptWhereUniqueInput | ConceptWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ConceptCreateWithoutConceptSourceInput | ConceptCreateWithoutConceptSourceInput[] | ConceptUncheckedCreateWithoutConceptSourceInput | ConceptUncheckedCreateWithoutConceptSourceInput[] | No |
| connectOrCreate | ConceptCreateOrConnectWithoutConceptSourceInput | ConceptCreateOrConnectWithoutConceptSourceInput[] | No |
| createMany | ConceptCreateManyConceptSourceInputEnvelope | No |
| connect | ConceptWhereUniqueInput | ConceptWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ConceptCreateWithoutConceptSourceInput | ConceptCreateWithoutConceptSourceInput[] | ConceptUncheckedCreateWithoutConceptSourceInput | ConceptUncheckedCreateWithoutConceptSourceInput[] | No |
| connectOrCreate | ConceptCreateOrConnectWithoutConceptSourceInput | ConceptCreateOrConnectWithoutConceptSourceInput[] | No |
| createMany | ConceptCreateManyConceptSourceInputEnvelope | No |
| connect | ConceptWhereUniqueInput | ConceptWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ConceptCreateWithoutConceptWordListInput | ConceptUncheckedCreateWithoutConceptWordListInput | No |
| connectOrCreate | ConceptCreateOrConnectWithoutConceptWordListInput | No |
| connect | ConceptWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ConceptCreateWithoutConceptWordListInput | ConceptUncheckedCreateWithoutConceptWordListInput | No |
| connectOrCreate | ConceptCreateOrConnectWithoutConceptWordListInput | No |
| upsert | ConceptUpsertWithoutConceptWordListInput | No |
| connect | ConceptWhereUniqueInput | No |
| update | ConceptUpdateToOneWithWhereWithoutConceptWordListInput | ConceptUpdateWithoutConceptWordListInput | ConceptUncheckedUpdateWithoutConceptWordListInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | BlogPostAuthorCreateWithoutBlogPostListInput | BlogPostAuthorUncheckedCreateWithoutBlogPostListInput | No |
| connectOrCreate | BlogPostAuthorCreateOrConnectWithoutBlogPostListInput | No |
| connect | BlogPostAuthorWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | SpaceTimeCoordinatesCreateWithoutBlogPostInput | SpaceTimeCoordinatesUncheckedCreateWithoutBlogPostInput | No |
| connectOrCreate | SpaceTimeCoordinatesCreateOrConnectWithoutBlogPostInput | No |
| connect | SpaceTimeCoordinatesWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | BlogPostCreateWithoutTagArrowListInput | BlogPostUncheckedCreateWithoutTagArrowListInput | No |
| connectOrCreate | BlogPostCreateOrConnectWithoutTagArrowListInput | No |
| connect | BlogPostWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | BlogPostTagCreateWithoutPostArrowListInput | BlogPostTagUncheckedCreateWithoutPostArrowListInput | No |
| connectOrCreate | BlogPostTagCreateOrConnectWithoutPostArrowListInput | No |
| connect | BlogPostTagWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | BlogPostCreateWithoutTagArrowListInput | BlogPostUncheckedCreateWithoutTagArrowListInput | No |
| connectOrCreate | BlogPostCreateOrConnectWithoutTagArrowListInput | No |
| upsert | BlogPostUpsertWithoutTagArrowListInput | No |
| connect | BlogPostWhereUniqueInput | No |
| update | BlogPostUpdateToOneWithWhereWithoutTagArrowListInput | BlogPostUpdateWithoutTagArrowListInput | BlogPostUncheckedUpdateWithoutTagArrowListInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | BlogPostTagCreateWithoutPostArrowListInput | BlogPostTagUncheckedCreateWithoutPostArrowListInput | No |
| connectOrCreate | BlogPostTagCreateOrConnectWithoutPostArrowListInput | No |
| upsert | BlogPostTagUpsertWithoutPostArrowListInput | No |
| connect | BlogPostTagWhereUniqueInput | No |
| update | BlogPostTagUpdateToOneWithWhereWithoutPostArrowListInput | BlogPostTagUpdateWithoutPostArrowListInput | BlogPostTagUncheckedUpdateWithoutPostArrowListInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | BlogPostCreateWithoutAuthorInput | BlogPostCreateWithoutAuthorInput[] | BlogPostUncheckedCreateWithoutAuthorInput | BlogPostUncheckedCreateWithoutAuthorInput[] | No |
| connectOrCreate | BlogPostCreateOrConnectWithoutAuthorInput | BlogPostCreateOrConnectWithoutAuthorInput[] | No |
| createMany | BlogPostCreateManyAuthorInputEnvelope | No |
| connect | BlogPostWhereUniqueInput | BlogPostWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | BlogPostCreateWithoutAuthorInput | BlogPostCreateWithoutAuthorInput[] | BlogPostUncheckedCreateWithoutAuthorInput | BlogPostUncheckedCreateWithoutAuthorInput[] | No |
| connectOrCreate | BlogPostCreateOrConnectWithoutAuthorInput | BlogPostCreateOrConnectWithoutAuthorInput[] | No |
| createMany | BlogPostCreateManyAuthorInputEnvelope | No |
| connect | BlogPostWhereUniqueInput | BlogPostWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | BlogPostCreateWithoutSpaceTimeCoordinatesInput | BlogPostUncheckedCreateWithoutSpaceTimeCoordinatesInput | No |
| connectOrCreate | BlogPostCreateOrConnectWithoutSpaceTimeCoordinatesInput | No |
| connect | BlogPostWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | BlogPostCreateWithoutSpaceTimeCoordinatesInput | BlogPostUncheckedCreateWithoutSpaceTimeCoordinatesInput | No |
| connectOrCreate | BlogPostCreateOrConnectWithoutSpaceTimeCoordinatesInput | No |
| connect | BlogPostWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| set | Float | Null | Yes |
| increment | Float | No |
| decrement | Float | No |
| multiply | Float | No |
| divide | Float | No |
| Name | Type | Nullable |
|---|---|---|
| create | BlogPostCreateWithoutSpaceTimeCoordinatesInput | BlogPostUncheckedCreateWithoutSpaceTimeCoordinatesInput | No |
| connectOrCreate | BlogPostCreateOrConnectWithoutSpaceTimeCoordinatesInput | No |
| upsert | BlogPostUpsertWithoutSpaceTimeCoordinatesInput | No |
| disconnect | Boolean | BlogPostWhereInput | No |
| delete | Boolean | BlogPostWhereInput | No |
| connect | BlogPostWhereUniqueInput | No |
| update | BlogPostUpdateToOneWithWhereWithoutSpaceTimeCoordinatesInput | BlogPostUpdateWithoutSpaceTimeCoordinatesInput | BlogPostUncheckedUpdateWithoutSpaceTimeCoordinatesInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | BlogPostCreateWithoutSpaceTimeCoordinatesInput | BlogPostUncheckedCreateWithoutSpaceTimeCoordinatesInput | No |
| connectOrCreate | BlogPostCreateOrConnectWithoutSpaceTimeCoordinatesInput | No |
| upsert | BlogPostUpsertWithoutSpaceTimeCoordinatesInput | No |
| disconnect | Boolean | BlogPostWhereInput | No |
| delete | Boolean | BlogPostWhereInput | No |
| connect | BlogPostWhereUniqueInput | No |
| update | BlogPostUpdateToOneWithWhereWithoutSpaceTimeCoordinatesInput | BlogPostUpdateWithoutSpaceTimeCoordinatesInput | BlogPostUncheckedUpdateWithoutSpaceTimeCoordinatesInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ServiceCreateWithoutEntryListInput | ServiceUncheckedCreateWithoutEntryListInput | No |
| connectOrCreate | ServiceCreateOrConnectWithoutEntryListInput | No |
| connect | ServiceWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | BudgetCreateWithoutEntryListInput | BudgetUncheckedCreateWithoutEntryListInput | No |
| connectOrCreate | BudgetCreateOrConnectWithoutEntryListInput | No |
| connect | BudgetWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ServiceCreateWithoutEntryListInput | ServiceUncheckedCreateWithoutEntryListInput | No |
| connectOrCreate | ServiceCreateOrConnectWithoutEntryListInput | No |
| upsert | ServiceUpsertWithoutEntryListInput | No |
| connect | ServiceWhereUniqueInput | No |
| update | ServiceUpdateToOneWithWhereWithoutEntryListInput | ServiceUpdateWithoutEntryListInput | ServiceUncheckedUpdateWithoutEntryListInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | BudgetCreateWithoutEntryListInput | BudgetUncheckedCreateWithoutEntryListInput | No |
| connectOrCreate | BudgetCreateOrConnectWithoutEntryListInput | No |
| upsert | BudgetUpsertWithoutEntryListInput | No |
| connect | BudgetWhereUniqueInput | No |
| update | BudgetUpdateToOneWithWhereWithoutEntryListInput | BudgetUpdateWithoutEntryListInput | BudgetUncheckedUpdateWithoutEntryListInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | BudgetEntryCreateWithoutServiceInput | BudgetEntryCreateWithoutServiceInput[] | BudgetEntryUncheckedCreateWithoutServiceInput | BudgetEntryUncheckedCreateWithoutServiceInput[] | No |
| connectOrCreate | BudgetEntryCreateOrConnectWithoutServiceInput | BudgetEntryCreateOrConnectWithoutServiceInput[] | No |
| createMany | BudgetEntryCreateManyServiceInputEnvelope | No |
| connect | BudgetEntryWhereUniqueInput | BudgetEntryWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | BudgetEntryCreateWithoutServiceInput | BudgetEntryCreateWithoutServiceInput[] | BudgetEntryUncheckedCreateWithoutServiceInput | BudgetEntryUncheckedCreateWithoutServiceInput[] | No |
| connectOrCreate | BudgetEntryCreateOrConnectWithoutServiceInput | BudgetEntryCreateOrConnectWithoutServiceInput[] | No |
| createMany | BudgetEntryCreateManyServiceInputEnvelope | No |
| connect | BudgetEntryWhereUniqueInput | BudgetEntryWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | BudgetEntryCreateWithoutBudgetInput | BudgetEntryCreateWithoutBudgetInput[] | BudgetEntryUncheckedCreateWithoutBudgetInput | BudgetEntryUncheckedCreateWithoutBudgetInput[] | No |
| connectOrCreate | BudgetEntryCreateOrConnectWithoutBudgetInput | BudgetEntryCreateOrConnectWithoutBudgetInput[] | No |
| createMany | BudgetEntryCreateManyBudgetInputEnvelope | No |
| connect | BudgetEntryWhereUniqueInput | BudgetEntryWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ReportCreateWithoutBudgetInput | ReportUncheckedCreateWithoutBudgetInput | No |
| connectOrCreate | ReportCreateOrConnectWithoutBudgetInput | No |
| connect | ReportWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | BudgetEntryCreateWithoutBudgetInput | BudgetEntryCreateWithoutBudgetInput[] | BudgetEntryUncheckedCreateWithoutBudgetInput | BudgetEntryUncheckedCreateWithoutBudgetInput[] | No |
| connectOrCreate | BudgetEntryCreateOrConnectWithoutBudgetInput | BudgetEntryCreateOrConnectWithoutBudgetInput[] | No |
| createMany | BudgetEntryCreateManyBudgetInputEnvelope | No |
| connect | BudgetEntryWhereUniqueInput | BudgetEntryWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ReportCreateWithoutBudgetInput | ReportUncheckedCreateWithoutBudgetInput | No |
| connectOrCreate | ReportCreateOrConnectWithoutBudgetInput | No |
| connect | ReportWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ReportCreateWithoutBudgetInput | ReportUncheckedCreateWithoutBudgetInput | No |
| connectOrCreate | ReportCreateOrConnectWithoutBudgetInput | No |
| upsert | ReportUpsertWithoutBudgetInput | No |
| disconnect | Boolean | ReportWhereInput | No |
| delete | Boolean | ReportWhereInput | No |
| connect | ReportWhereUniqueInput | No |
| update | ReportUpdateToOneWithWhereWithoutBudgetInput | ReportUpdateWithoutBudgetInput | ReportUncheckedUpdateWithoutBudgetInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ReportCreateWithoutBudgetInput | ReportUncheckedCreateWithoutBudgetInput | No |
| connectOrCreate | ReportCreateOrConnectWithoutBudgetInput | No |
| upsert | ReportUpsertWithoutBudgetInput | No |
| disconnect | Boolean | ReportWhereInput | No |
| delete | Boolean | ReportWhereInput | No |
| connect | ReportWhereUniqueInput | No |
| update | ReportUpdateToOneWithWhereWithoutBudgetInput | ReportUpdateWithoutBudgetInput | ReportUncheckedUpdateWithoutBudgetInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | BudgetCreateWithoutReportInput | BudgetUncheckedCreateWithoutReportInput | No |
| connectOrCreate | BudgetCreateOrConnectWithoutReportInput | No |
| connect | BudgetWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | BudgetCreateWithoutReportInput | BudgetUncheckedCreateWithoutReportInput | No |
| connectOrCreate | BudgetCreateOrConnectWithoutReportInput | No |
| upsert | BudgetUpsertWithoutReportInput | No |
| connect | BudgetWhereUniqueInput | No |
| update | BudgetUpdateToOneWithWhereWithoutReportInput | BudgetUpdateWithoutReportInput | BudgetUncheckedUpdateWithoutReportInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | BudgetBudUserCreateWithoutUserInput | BudgetBudUserCreateWithoutUserInput[] | BudgetBudUserUncheckedCreateWithoutUserInput | BudgetBudUserUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | BudgetBudUserCreateOrConnectWithoutUserInput | BudgetBudUserCreateOrConnectWithoutUserInput[] | No |
| createMany | BudgetBudUserCreateManyUserInputEnvelope | No |
| connect | BudgetBudUserWhereUniqueInput | BudgetBudUserWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | BudEventCreateWithoutBudUserInput | BudEventCreateWithoutBudUserInput[] | BudEventUncheckedCreateWithoutBudUserInput | BudEventUncheckedCreateWithoutBudUserInput[] | No |
| connectOrCreate | BudEventCreateOrConnectWithoutBudUserInput | BudEventCreateOrConnectWithoutBudUserInput[] | No |
| createMany | BudEventCreateManyBudUserInputEnvelope | No |
| connect | BudEventWhereUniqueInput | BudEventWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | BudgetBudUserCreateWithoutUserInput | BudgetBudUserCreateWithoutUserInput[] | BudgetBudUserUncheckedCreateWithoutUserInput | BudgetBudUserUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | BudgetBudUserCreateOrConnectWithoutUserInput | BudgetBudUserCreateOrConnectWithoutUserInput[] | No |
| createMany | BudgetBudUserCreateManyUserInputEnvelope | No |
| connect | BudgetBudUserWhereUniqueInput | BudgetBudUserWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | BudEventCreateWithoutBudUserInput | BudEventCreateWithoutBudUserInput[] | BudEventUncheckedCreateWithoutBudUserInput | BudEventUncheckedCreateWithoutBudUserInput[] | No |
| connectOrCreate | BudEventCreateOrConnectWithoutBudUserInput | BudEventCreateOrConnectWithoutBudUserInput[] | No |
| createMany | BudEventCreateManyBudUserInputEnvelope | No |
| connect | BudEventWhereUniqueInput | BudEventWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | BudUserCreateWithoutBudgetListInput | BudUserUncheckedCreateWithoutBudgetListInput | No |
| connectOrCreate | BudUserCreateOrConnectWithoutBudgetListInput | No |
| connect | BudUserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | BudgetCreateWithoutUserListInput | BudgetUncheckedCreateWithoutUserListInput | No |
| connectOrCreate | BudgetCreateOrConnectWithoutUserListInput | No |
| connect | BudgetWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | BudUserCreateWithoutBudgetListInput | BudUserUncheckedCreateWithoutBudgetListInput | No |
| connectOrCreate | BudUserCreateOrConnectWithoutBudgetListInput | No |
| upsert | BudUserUpsertWithoutBudgetListInput | No |
| connect | BudUserWhereUniqueInput | No |
| update | BudUserUpdateToOneWithWhereWithoutBudgetListInput | BudUserUpdateWithoutBudgetListInput | BudUserUncheckedUpdateWithoutBudgetListInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | BudgetCreateWithoutUserListInput | BudgetUncheckedCreateWithoutUserListInput | No |
| connectOrCreate | BudgetCreateOrConnectWithoutUserListInput | No |
| upsert | BudgetUpsertWithoutUserListInput | No |
| connect | BudgetWhereUniqueInput | No |
| update | BudgetUpdateToOneWithWhereWithoutUserListInput | BudgetUpdateWithoutUserListInput | BudgetUncheckedUpdateWithoutUserListInput | No |
| Name | Type | Nullable |
|---|---|---|
| set | String | No |
| Name | Type | Nullable |
|---|---|---|
| create | BudUserCreateWithoutEventListInput | BudUserUncheckedCreateWithoutEventListInput | No |
| connectOrCreate | BudUserCreateOrConnectWithoutEventListInput | No |
| connect | BudUserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| set | String | No |
| push | String | String | No |
| Name | Type | Nullable |
|---|---|---|
| create | BudUserCreateWithoutEventListInput | BudUserUncheckedCreateWithoutEventListInput | No |
| connectOrCreate | BudUserCreateOrConnectWithoutEventListInput | No |
| upsert | BudUserUpsertWithoutEventListInput | No |
| connect | BudUserWhereUniqueInput | No |
| update | BudUserUpdateToOneWithWhereWithoutEventListInput | BudUserUpdateWithoutEventListInput | BudUserUncheckedUpdateWithoutEventListInput | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | StringFieldRefInput | No |
| in | String | ListStringFieldRefInput | No |
| notIn | String | ListStringFieldRefInput | No |
| lt | String | StringFieldRefInput | No |
| lte | String | StringFieldRefInput | No |
| gt | String | StringFieldRefInput | No |
| gte | String | StringFieldRefInput | No |
| contains | String | StringFieldRefInput | No |
| startsWith | String | StringFieldRefInput | No |
| endsWith | String | StringFieldRefInput | No |
| not | String | NestedStringFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | DateTimeFieldRefInput | No |
| in | DateTime | ListDateTimeFieldRefInput | No |
| notIn | DateTime | ListDateTimeFieldRefInput | No |
| lt | DateTime | DateTimeFieldRefInput | No |
| lte | DateTime | DateTimeFieldRefInput | No |
| gt | DateTime | DateTimeFieldRefInput | No |
| gte | DateTime | DateTimeFieldRefInput | No |
| not | DateTime | NestedDateTimeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Boolean | BooleanFieldRefInput | No |
| not | Boolean | NestedBoolFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | StringFieldRefInput | No |
| in | String | ListStringFieldRefInput | No |
| notIn | String | ListStringFieldRefInput | No |
| lt | String | StringFieldRefInput | No |
| lte | String | StringFieldRefInput | No |
| gt | String | StringFieldRefInput | No |
| gte | String | StringFieldRefInput | No |
| contains | String | StringFieldRefInput | No |
| startsWith | String | StringFieldRefInput | No |
| endsWith | String | StringFieldRefInput | No |
| not | String | NestedStringWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedStringFilter | No |
| _max | NestedStringFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | IntFieldRefInput | No |
| in | Int | ListIntFieldRefInput | No |
| notIn | Int | ListIntFieldRefInput | No |
| lt | Int | IntFieldRefInput | No |
| lte | Int | IntFieldRefInput | No |
| gt | Int | IntFieldRefInput | No |
| gte | Int | IntFieldRefInput | No |
| not | Int | NestedIntFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | DateTimeFieldRefInput | No |
| in | DateTime | ListDateTimeFieldRefInput | No |
| notIn | DateTime | ListDateTimeFieldRefInput | No |
| lt | DateTime | DateTimeFieldRefInput | No |
| lte | DateTime | DateTimeFieldRefInput | No |
| gt | DateTime | DateTimeFieldRefInput | No |
| gte | DateTime | DateTimeFieldRefInput | No |
| not | DateTime | NestedDateTimeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedDateTimeFilter | No |
| _max | NestedDateTimeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Boolean | BooleanFieldRefInput | No |
| not | Boolean | NestedBoolWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedBoolFilter | No |
| _max | NestedBoolFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | IntFieldRefInput | No |
| in | Int | ListIntFieldRefInput | No |
| notIn | Int | ListIntFieldRefInput | No |
| lt | Int | IntFieldRefInput | No |
| lte | Int | IntFieldRefInput | No |
| gt | Int | IntFieldRefInput | No |
| gte | Int | IntFieldRefInput | No |
| not | Int | NestedIntWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _avg | NestedFloatFilter | No |
| _sum | NestedIntFilter | No |
| _min | NestedIntFilter | No |
| _max | NestedIntFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Float | FloatFieldRefInput | No |
| in | Float | ListFloatFieldRefInput | No |
| notIn | Float | ListFloatFieldRefInput | No |
| lt | Float | FloatFieldRefInput | No |
| lte | Float | FloatFieldRefInput | No |
| gt | Float | FloatFieldRefInput | No |
| gte | Float | FloatFieldRefInput | No |
| not | Float | NestedFloatFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Float | FloatFieldRefInput | No |
| in | Float | ListFloatFieldRefInput | No |
| notIn | Float | ListFloatFieldRefInput | No |
| lt | Float | FloatFieldRefInput | No |
| lte | Float | FloatFieldRefInput | No |
| gt | Float | FloatFieldRefInput | No |
| gte | Float | FloatFieldRefInput | No |
| not | Float | NestedFloatWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _avg | NestedFloatFilter | No |
| _sum | NestedFloatFilter | No |
| _min | NestedFloatFilter | No |
| _max | NestedFloatFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | StringFieldRefInput | Null | Yes |
| in | String | ListStringFieldRefInput | Null | Yes |
| notIn | String | ListStringFieldRefInput | Null | Yes |
| lt | String | StringFieldRefInput | No |
| lte | String | StringFieldRefInput | No |
| gt | String | StringFieldRefInput | No |
| gte | String | StringFieldRefInput | No |
| contains | String | StringFieldRefInput | No |
| startsWith | String | StringFieldRefInput | No |
| endsWith | String | StringFieldRefInput | No |
| not | String | NestedStringNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | String | StringFieldRefInput | Null | Yes |
| in | String | ListStringFieldRefInput | Null | Yes |
| notIn | String | ListStringFieldRefInput | Null | Yes |
| lt | String | StringFieldRefInput | No |
| lte | String | StringFieldRefInput | No |
| gt | String | StringFieldRefInput | No |
| gte | String | StringFieldRefInput | No |
| contains | String | StringFieldRefInput | No |
| startsWith | String | StringFieldRefInput | No |
| endsWith | String | StringFieldRefInput | No |
| not | String | NestedStringNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedStringNullableFilter | No |
| _max | NestedStringNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | IntFieldRefInput | Null | Yes |
| in | Int | ListIntFieldRefInput | Null | Yes |
| notIn | Int | ListIntFieldRefInput | Null | Yes |
| lt | Int | IntFieldRefInput | No |
| lte | Int | IntFieldRefInput | No |
| gt | Int | IntFieldRefInput | No |
| gte | Int | IntFieldRefInput | No |
| not | Int | NestedIntNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | Json | JsonFieldRefInput | JsonNullValueFilter | No |
| path | String | No |
| string_contains | String | StringFieldRefInput | No |
| string_starts_with | String | StringFieldRefInput | No |
| string_ends_with | String | StringFieldRefInput | No |
| array_contains | Json | JsonFieldRefInput | Null | Yes |
| array_starts_with | Json | JsonFieldRefInput | Null | Yes |
| array_ends_with | Json | JsonFieldRefInput | Null | Yes |
| lt | Json | JsonFieldRefInput | No |
| lte | Json | JsonFieldRefInput | No |
| gt | Json | JsonFieldRefInput | No |
| gte | Json | JsonFieldRefInput | No |
| not | Json | JsonFieldRefInput | JsonNullValueFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Float | FloatFieldRefInput | Null | Yes |
| in | Float | ListFloatFieldRefInput | Null | Yes |
| notIn | Float | ListFloatFieldRefInput | Null | Yes |
| lt | Float | FloatFieldRefInput | No |
| lte | Float | FloatFieldRefInput | No |
| gt | Float | FloatFieldRefInput | No |
| gte | Float | FloatFieldRefInput | No |
| not | Float | NestedFloatNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | String | StringFieldRefInput | No |
| in | String | ListStringFieldRefInput | No |
| notIn | String | ListStringFieldRefInput | No |
| lt | String | StringFieldRefInput | No |
| lte | String | StringFieldRefInput | No |
| gt | String | StringFieldRefInput | No |
| gte | String | StringFieldRefInput | No |
| not | String | NestedUuidFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Float | FloatFieldRefInput | Null | Yes |
| in | Float | ListFloatFieldRefInput | Null | Yes |
| notIn | Float | ListFloatFieldRefInput | Null | Yes |
| lt | Float | FloatFieldRefInput | No |
| lte | Float | FloatFieldRefInput | No |
| gt | Float | FloatFieldRefInput | No |
| gte | Float | FloatFieldRefInput | No |
| not | Float | NestedFloatNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _avg | NestedFloatNullableFilter | No |
| _sum | NestedFloatNullableFilter | No |
| _min | NestedFloatNullableFilter | No |
| _max | NestedFloatNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | StringFieldRefInput | No |
| in | String | ListStringFieldRefInput | No |
| notIn | String | ListStringFieldRefInput | No |
| lt | String | StringFieldRefInput | No |
| lte | String | StringFieldRefInput | No |
| gt | String | StringFieldRefInput | No |
| gte | String | StringFieldRefInput | No |
| not | String | NestedUuidWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedStringFilter | No |
| _max | NestedStringFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| duration | Int | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| duration | Int | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | AppointmentTypeWhereUniqueInput | No |
| create | AppointmentTypeCreateWithoutAppointmentListInput | AppointmentTypeUncheckedCreateWithoutAppointmentListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| givenName | String | No |
| middleName | String | No |
| familyName | String | No |
| gender | String | No |
| birthdate | DateTime | No |
| dead | Boolean | No |
| deathDate | DateTime | No |
| causeOfDeath | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| encounterList | EncounterCreateNestedManyWithoutPatientInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| givenName | String | No |
| middleName | String | No |
| familyName | String | No |
| gender | String | No |
| birthdate | DateTime | No |
| dead | Boolean | No |
| deathDate | DateTime | No |
| causeOfDeath | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| encounterList | EncounterUncheckedCreateNestedManyWithoutPatientInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PatientWhereUniqueInput | No |
| create | PatientCreateWithoutAppointmentListInput | PatientUncheckedCreateWithoutAppointmentListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| address1 | String | No |
| address2 | String | No |
| city | String | No |
| stateProvince | String | No |
| country | String | No |
| postalCode | String | No |
| latitude | Float | No |
| longitude | Float | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| encounterList | EncounterCreateNestedManyWithoutLocationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| address1 | String | No |
| address2 | String | No |
| city | String | No |
| stateProvince | String | No |
| country | String | No |
| postalCode | String | No |
| latitude | Float | No |
| longitude | Float | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| encounterList | EncounterUncheckedCreateNestedManyWithoutLocationInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | LocationWhereUniqueInput | No |
| create | LocationCreateWithoutAppointmentListInput | LocationUncheckedCreateWithoutAppointmentListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| identifier | String | No |
| description | String | No |
| voided | Boolean | No |
| voidedBy | String | No |
| dateVoided | DateTime | No |
| voidReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| encounterList | EncounterCreateNestedManyWithoutProviderInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| identifier | String | No |
| description | String | No |
| voided | Boolean | No |
| voidedBy | String | No |
| dateVoided | DateTime | No |
| voidReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| encounterList | EncounterUncheckedCreateNestedManyWithoutProviderInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ProviderWhereUniqueInput | No |
| create | ProviderCreateWithoutAppointmentListInput | ProviderUncheckedCreateWithoutAppointmentListInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | AppointmentTypeWhereInput | No |
| data | AppointmentTypeUpdateWithoutAppointmentListInput | AppointmentTypeUncheckedUpdateWithoutAppointmentListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| duration | Int | IntFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| duration | Int | IntFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | PatientUpdateWithoutAppointmentListInput | PatientUncheckedUpdateWithoutAppointmentListInput | No |
| create | PatientCreateWithoutAppointmentListInput | PatientUncheckedCreateWithoutAppointmentListInput | No |
| where | PatientWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PatientWhereInput | No |
| data | PatientUpdateWithoutAppointmentListInput | PatientUncheckedUpdateWithoutAppointmentListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| givenName | String | StringFieldUpdateOperationsInput | No |
| middleName | String | StringFieldUpdateOperationsInput | No |
| familyName | String | StringFieldUpdateOperationsInput | No |
| gender | String | StringFieldUpdateOperationsInput | No |
| birthdate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| dead | Boolean | BoolFieldUpdateOperationsInput | No |
| deathDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| causeOfDeath | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| encounterList | EncounterUpdateManyWithoutPatientNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| givenName | String | StringFieldUpdateOperationsInput | No |
| middleName | String | StringFieldUpdateOperationsInput | No |
| familyName | String | StringFieldUpdateOperationsInput | No |
| gender | String | StringFieldUpdateOperationsInput | No |
| birthdate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| dead | Boolean | BoolFieldUpdateOperationsInput | No |
| deathDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| causeOfDeath | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| encounterList | EncounterUncheckedUpdateManyWithoutPatientNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | LocationUpdateWithoutAppointmentListInput | LocationUncheckedUpdateWithoutAppointmentListInput | No |
| create | LocationCreateWithoutAppointmentListInput | LocationUncheckedCreateWithoutAppointmentListInput | No |
| where | LocationWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | LocationWhereInput | No |
| data | LocationUpdateWithoutAppointmentListInput | LocationUncheckedUpdateWithoutAppointmentListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| address1 | String | StringFieldUpdateOperationsInput | No |
| address2 | String | StringFieldUpdateOperationsInput | No |
| city | String | StringFieldUpdateOperationsInput | No |
| stateProvince | String | StringFieldUpdateOperationsInput | No |
| country | String | StringFieldUpdateOperationsInput | No |
| postalCode | String | StringFieldUpdateOperationsInput | No |
| latitude | Float | FloatFieldUpdateOperationsInput | No |
| longitude | Float | FloatFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| encounterList | EncounterUpdateManyWithoutLocationNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| address1 | String | StringFieldUpdateOperationsInput | No |
| address2 | String | StringFieldUpdateOperationsInput | No |
| city | String | StringFieldUpdateOperationsInput | No |
| stateProvince | String | StringFieldUpdateOperationsInput | No |
| country | String | StringFieldUpdateOperationsInput | No |
| postalCode | String | StringFieldUpdateOperationsInput | No |
| latitude | Float | FloatFieldUpdateOperationsInput | No |
| longitude | Float | FloatFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| encounterList | EncounterUncheckedUpdateManyWithoutLocationNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | ProviderUpdateWithoutAppointmentListInput | ProviderUncheckedUpdateWithoutAppointmentListInput | No |
| create | ProviderCreateWithoutAppointmentListInput | ProviderUncheckedCreateWithoutAppointmentListInput | No |
| where | ProviderWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ProviderWhereInput | No |
| data | ProviderUpdateWithoutAppointmentListInput | ProviderUncheckedUpdateWithoutAppointmentListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| identifier | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| voided | Boolean | BoolFieldUpdateOperationsInput | No |
| voidedBy | String | StringFieldUpdateOperationsInput | No |
| dateVoided | DateTime | DateTimeFieldUpdateOperationsInput | No |
| voidReason | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| encounterList | EncounterUpdateManyWithoutProviderNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| identifier | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| voided | Boolean | BoolFieldUpdateOperationsInput | No |
| voidedBy | String | StringFieldUpdateOperationsInput | No |
| dateVoided | DateTime | DateTimeFieldUpdateOperationsInput | No |
| voidReason | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| encounterList | EncounterUncheckedUpdateManyWithoutProviderNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| startDatetime | DateTime | No |
| endDatetime | DateTime | No |
| voided | Boolean | No |
| voidedBy | String | No |
| dateVoided | DateTime | No |
| voidReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| patient | PatientCreateNestedOneWithoutAppointmentListInput | No |
| location | LocationCreateNestedOneWithoutAppointmentListInput | No |
| provider | ProviderCreateNestedOneWithoutAppointmentListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| patientId | String | No |
| locationId | String | No |
| providerId | String | No |
| startDatetime | DateTime | No |
| endDatetime | DateTime | No |
| voided | Boolean | No |
| voidedBy | String | No |
| dateVoided | DateTime | No |
| voidReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | AppointmentWhereUniqueInput | No |
| create | AppointmentCreateWithoutAppointmentTypeInput | AppointmentUncheckedCreateWithoutAppointmentTypeInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | AppointmentCreateManyAppointmentTypeInput | AppointmentCreateManyAppointmentTypeInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | AppointmentWhereUniqueInput | No |
| update | AppointmentUpdateWithoutAppointmentTypeInput | AppointmentUncheckedUpdateWithoutAppointmentTypeInput | No |
| create | AppointmentCreateWithoutAppointmentTypeInput | AppointmentUncheckedCreateWithoutAppointmentTypeInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | AppointmentWhereUniqueInput | No |
| data | AppointmentUpdateWithoutAppointmentTypeInput | AppointmentUncheckedUpdateWithoutAppointmentTypeInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | AppointmentScalarWhereInput | No |
| data | AppointmentUpdateManyMutationInput | AppointmentUncheckedUpdateManyWithoutAppointmentTypeInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | AppointmentScalarWhereInput | AppointmentScalarWhereInput[] | No |
| OR | AppointmentScalarWhereInput[] | No |
| NOT | AppointmentScalarWhereInput | AppointmentScalarWhereInput[] | No |
| id | StringFilter | String | No |
| uuid | StringFilter | String | No |
| appointmentTypeId | StringFilter | String | No |
| patientId | StringFilter | String | No |
| locationId | StringFilter | String | No |
| providerId | StringFilter | String | No |
| startDatetime | DateTimeFilter | DateTime | No |
| endDatetime | DateTimeFilter | DateTime | No |
| voided | BoolFilter | Boolean | No |
| voidedBy | StringFilter | String | No |
| dateVoided | DateTimeFilter | DateTime | No |
| voidReason | StringFilter | String | No |
| creator | StringFilter | String | No |
| dateCreated | DateTimeFilter | DateTime | No |
| lastChangedBy | StringFilter | String | No |
| lastChangedDate | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| startDatetime | DateTime | No |
| endDatetime | DateTime | No |
| voided | Boolean | No |
| voidedBy | String | No |
| dateVoided | DateTime | No |
| voidReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| appointmentType | AppointmentTypeCreateNestedOneWithoutAppointmentListInput | No |
| patient | PatientCreateNestedOneWithoutAppointmentListInput | No |
| provider | ProviderCreateNestedOneWithoutAppointmentListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| appointmentTypeId | String | No |
| patientId | String | No |
| providerId | String | No |
| startDatetime | DateTime | No |
| endDatetime | DateTime | No |
| voided | Boolean | No |
| voidedBy | String | No |
| dateVoided | DateTime | No |
| voidReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | AppointmentWhereUniqueInput | No |
| create | AppointmentCreateWithoutLocationInput | AppointmentUncheckedCreateWithoutLocationInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | AppointmentCreateManyLocationInput | AppointmentCreateManyLocationInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| startDatetime | DateTime | No |
| endDatetime | DateTime | No |
| voided | Boolean | No |
| voidedBy | String | No |
| dateVoided | DateTime | No |
| voidReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| encounterType | EncounterTypeCreateNestedOneWithoutEncounterListInput | No |
| patient | PatientCreateNestedOneWithoutEncounterListInput | No |
| form | FormCreateNestedOneWithoutEncounterListInput | No |
| provider | ProviderCreateNestedOneWithoutEncounterListInput | No |
| formEncounterList | FormEncounterCreateNestedManyWithoutEncounterInput | No |
| formSubmissionList | FormSubmissionCreateNestedManyWithoutEncounterInput | No |
| obsList | ObsCreateNestedManyWithoutEncounterInput | No |
| orderList | OrderCreateNestedManyWithoutEncounterInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| encounterTypeId | String | No |
| patientId | String | No |
| formId | String | No |
| providerId | String | No |
| startDatetime | DateTime | No |
| endDatetime | DateTime | No |
| voided | Boolean | No |
| voidedBy | String | No |
| dateVoided | DateTime | No |
| voidReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| formEncounterList | FormEncounterUncheckedCreateNestedManyWithoutEncounterInput | No |
| formSubmissionList | FormSubmissionUncheckedCreateNestedManyWithoutEncounterInput | No |
| obsList | ObsUncheckedCreateNestedManyWithoutEncounterInput | No |
| orderList | OrderUncheckedCreateNestedManyWithoutEncounterInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EncounterWhereUniqueInput | No |
| create | EncounterCreateWithoutLocationInput | EncounterUncheckedCreateWithoutLocationInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | EncounterCreateManyLocationInput | EncounterCreateManyLocationInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | AppointmentWhereUniqueInput | No |
| update | AppointmentUpdateWithoutLocationInput | AppointmentUncheckedUpdateWithoutLocationInput | No |
| create | AppointmentCreateWithoutLocationInput | AppointmentUncheckedCreateWithoutLocationInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | AppointmentWhereUniqueInput | No |
| data | AppointmentUpdateWithoutLocationInput | AppointmentUncheckedUpdateWithoutLocationInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | AppointmentScalarWhereInput | No |
| data | AppointmentUpdateManyMutationInput | AppointmentUncheckedUpdateManyWithoutLocationInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EncounterWhereUniqueInput | No |
| update | EncounterUpdateWithoutLocationInput | EncounterUncheckedUpdateWithoutLocationInput | No |
| create | EncounterCreateWithoutLocationInput | EncounterUncheckedCreateWithoutLocationInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EncounterWhereUniqueInput | No |
| data | EncounterUpdateWithoutLocationInput | EncounterUncheckedUpdateWithoutLocationInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EncounterScalarWhereInput | No |
| data | EncounterUpdateManyMutationInput | EncounterUncheckedUpdateManyWithoutLocationInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | EncounterScalarWhereInput | EncounterScalarWhereInput[] | No |
| OR | EncounterScalarWhereInput[] | No |
| NOT | EncounterScalarWhereInput | EncounterScalarWhereInput[] | No |
| id | StringFilter | String | No |
| uuid | StringFilter | String | No |
| encounterTypeId | StringFilter | String | No |
| patientId | StringFilter | String | No |
| locationId | StringFilter | String | No |
| formId | StringFilter | String | No |
| providerId | StringFilter | String | No |
| startDatetime | DateTimeFilter | DateTime | No |
| endDatetime | DateTimeFilter | DateTime | No |
| voided | BoolFilter | Boolean | No |
| voidedBy | StringFilter | String | No |
| dateVoided | DateTimeFilter | DateTime | No |
| voidReason | StringFilter | String | No |
| creator | StringFilter | String | No |
| dateCreated | DateTimeFilter | DateTime | No |
| lastChangedBy | StringFilter | String | No |
| lastChangedDate | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| startDatetime | DateTime | No |
| endDatetime | DateTime | No |
| voided | Boolean | No |
| voidedBy | String | No |
| dateVoided | DateTime | No |
| voidReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| appointmentType | AppointmentTypeCreateNestedOneWithoutAppointmentListInput | No |
| location | LocationCreateNestedOneWithoutAppointmentListInput | No |
| provider | ProviderCreateNestedOneWithoutAppointmentListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| appointmentTypeId | String | No |
| locationId | String | No |
| providerId | String | No |
| startDatetime | DateTime | No |
| endDatetime | DateTime | No |
| voided | Boolean | No |
| voidedBy | String | No |
| dateVoided | DateTime | No |
| voidReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | AppointmentWhereUniqueInput | No |
| create | AppointmentCreateWithoutPatientInput | AppointmentUncheckedCreateWithoutPatientInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | AppointmentCreateManyPatientInput | AppointmentCreateManyPatientInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| startDatetime | DateTime | No |
| endDatetime | DateTime | No |
| voided | Boolean | No |
| voidedBy | String | No |
| dateVoided | DateTime | No |
| voidReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| encounterType | EncounterTypeCreateNestedOneWithoutEncounterListInput | No |
| location | LocationCreateNestedOneWithoutEncounterListInput | No |
| form | FormCreateNestedOneWithoutEncounterListInput | No |
| provider | ProviderCreateNestedOneWithoutEncounterListInput | No |
| formEncounterList | FormEncounterCreateNestedManyWithoutEncounterInput | No |
| formSubmissionList | FormSubmissionCreateNestedManyWithoutEncounterInput | No |
| obsList | ObsCreateNestedManyWithoutEncounterInput | No |
| orderList | OrderCreateNestedManyWithoutEncounterInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| encounterTypeId | String | No |
| locationId | String | No |
| formId | String | No |
| providerId | String | No |
| startDatetime | DateTime | No |
| endDatetime | DateTime | No |
| voided | Boolean | No |
| voidedBy | String | No |
| dateVoided | DateTime | No |
| voidReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| formEncounterList | FormEncounterUncheckedCreateNestedManyWithoutEncounterInput | No |
| formSubmissionList | FormSubmissionUncheckedCreateNestedManyWithoutEncounterInput | No |
| obsList | ObsUncheckedCreateNestedManyWithoutEncounterInput | No |
| orderList | OrderUncheckedCreateNestedManyWithoutEncounterInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EncounterWhereUniqueInput | No |
| create | EncounterCreateWithoutPatientInput | EncounterUncheckedCreateWithoutPatientInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | EncounterCreateManyPatientInput | EncounterCreateManyPatientInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | AppointmentWhereUniqueInput | No |
| update | AppointmentUpdateWithoutPatientInput | AppointmentUncheckedUpdateWithoutPatientInput | No |
| create | AppointmentCreateWithoutPatientInput | AppointmentUncheckedCreateWithoutPatientInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | AppointmentWhereUniqueInput | No |
| data | AppointmentUpdateWithoutPatientInput | AppointmentUncheckedUpdateWithoutPatientInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | AppointmentScalarWhereInput | No |
| data | AppointmentUpdateManyMutationInput | AppointmentUncheckedUpdateManyWithoutPatientInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EncounterWhereUniqueInput | No |
| update | EncounterUpdateWithoutPatientInput | EncounterUncheckedUpdateWithoutPatientInput | No |
| create | EncounterCreateWithoutPatientInput | EncounterUncheckedCreateWithoutPatientInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EncounterWhereUniqueInput | No |
| data | EncounterUpdateWithoutPatientInput | EncounterUncheckedUpdateWithoutPatientInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EncounterScalarWhereInput | No |
| data | EncounterUpdateManyMutationInput | EncounterUncheckedUpdateManyWithoutPatientInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| startDatetime | DateTime | No |
| endDatetime | DateTime | No |
| voided | Boolean | No |
| voidedBy | String | No |
| dateVoided | DateTime | No |
| voidReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| appointmentType | AppointmentTypeCreateNestedOneWithoutAppointmentListInput | No |
| patient | PatientCreateNestedOneWithoutAppointmentListInput | No |
| location | LocationCreateNestedOneWithoutAppointmentListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| appointmentTypeId | String | No |
| patientId | String | No |
| locationId | String | No |
| startDatetime | DateTime | No |
| endDatetime | DateTime | No |
| voided | Boolean | No |
| voidedBy | String | No |
| dateVoided | DateTime | No |
| voidReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | AppointmentWhereUniqueInput | No |
| create | AppointmentCreateWithoutProviderInput | AppointmentUncheckedCreateWithoutProviderInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | AppointmentCreateManyProviderInput | AppointmentCreateManyProviderInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| startDatetime | DateTime | No |
| endDatetime | DateTime | No |
| voided | Boolean | No |
| voidedBy | String | No |
| dateVoided | DateTime | No |
| voidReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| encounterType | EncounterTypeCreateNestedOneWithoutEncounterListInput | No |
| patient | PatientCreateNestedOneWithoutEncounterListInput | No |
| location | LocationCreateNestedOneWithoutEncounterListInput | No |
| form | FormCreateNestedOneWithoutEncounterListInput | No |
| formEncounterList | FormEncounterCreateNestedManyWithoutEncounterInput | No |
| formSubmissionList | FormSubmissionCreateNestedManyWithoutEncounterInput | No |
| obsList | ObsCreateNestedManyWithoutEncounterInput | No |
| orderList | OrderCreateNestedManyWithoutEncounterInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| encounterTypeId | String | No |
| patientId | String | No |
| locationId | String | No |
| formId | String | No |
| startDatetime | DateTime | No |
| endDatetime | DateTime | No |
| voided | Boolean | No |
| voidedBy | String | No |
| dateVoided | DateTime | No |
| voidReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| formEncounterList | FormEncounterUncheckedCreateNestedManyWithoutEncounterInput | No |
| formSubmissionList | FormSubmissionUncheckedCreateNestedManyWithoutEncounterInput | No |
| obsList | ObsUncheckedCreateNestedManyWithoutEncounterInput | No |
| orderList | OrderUncheckedCreateNestedManyWithoutEncounterInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EncounterWhereUniqueInput | No |
| create | EncounterCreateWithoutProviderInput | EncounterUncheckedCreateWithoutProviderInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | EncounterCreateManyProviderInput | EncounterCreateManyProviderInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | AppointmentWhereUniqueInput | No |
| update | AppointmentUpdateWithoutProviderInput | AppointmentUncheckedUpdateWithoutProviderInput | No |
| create | AppointmentCreateWithoutProviderInput | AppointmentUncheckedCreateWithoutProviderInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | AppointmentWhereUniqueInput | No |
| data | AppointmentUpdateWithoutProviderInput | AppointmentUncheckedUpdateWithoutProviderInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | AppointmentScalarWhereInput | No |
| data | AppointmentUpdateManyMutationInput | AppointmentUncheckedUpdateManyWithoutProviderInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EncounterWhereUniqueInput | No |
| update | EncounterUpdateWithoutProviderInput | EncounterUncheckedUpdateWithoutProviderInput | No |
| create | EncounterCreateWithoutProviderInput | EncounterUncheckedCreateWithoutProviderInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EncounterWhereUniqueInput | No |
| data | EncounterUpdateWithoutProviderInput | EncounterUncheckedUpdateWithoutProviderInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EncounterScalarWhereInput | No |
| data | EncounterUpdateManyMutationInput | EncounterUncheckedUpdateManyWithoutProviderInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| encounter | EncounterCreateNestedOneWithoutFormEncounterListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| encounterId | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | FormEncounterWhereUniqueInput | No |
| create | FormEncounterCreateWithoutFormInput | FormEncounterUncheckedCreateWithoutFormInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | FormEncounterCreateManyFormInput | FormEncounterCreateManyFormInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| resource | ResourceCreateNestedOneWithoutFormResourceListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| resourceId | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | FormResourceWhereUniqueInput | No |
| create | FormResourceCreateWithoutFormInput | FormResourceUncheckedCreateWithoutFormInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | FormResourceCreateManyFormInput | FormResourceCreateManyFormInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| submissionDate | DateTime | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| encounter | EncounterCreateNestedOneWithoutFormSubmissionListInput | No |
| fieldAnswerList | FieldAnswerCreateNestedManyWithoutFormSubmissionInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| encounterId | String | No |
| submissionDate | DateTime | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| fieldAnswerList | FieldAnswerUncheckedCreateNestedManyWithoutFormSubmissionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FormSubmissionWhereUniqueInput | No |
| create | FormSubmissionCreateWithoutFormInput | FormSubmissionUncheckedCreateWithoutFormInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | FormSubmissionCreateManyFormInput | FormSubmissionCreateManyFormInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| fieldType | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| concept | ConceptCreateNestedOneWithoutFieldListInput | No |
| fieldAnswerList | FieldAnswerCreateNestedManyWithoutFieldInput | No |
| fieldOptionList | FieldOptionCreateNestedManyWithoutFieldInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| fieldType | String | No |
| conceptId | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| fieldAnswerList | FieldAnswerUncheckedCreateNestedManyWithoutFieldInput | No |
| fieldOptionList | FieldOptionUncheckedCreateNestedManyWithoutFieldInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FieldWhereUniqueInput | No |
| create | FieldCreateWithoutFormListInput | FieldUncheckedCreateWithoutFormListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| startDatetime | DateTime | No |
| endDatetime | DateTime | No |
| voided | Boolean | No |
| voidedBy | String | No |
| dateVoided | DateTime | No |
| voidReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| encounterType | EncounterTypeCreateNestedOneWithoutEncounterListInput | No |
| patient | PatientCreateNestedOneWithoutEncounterListInput | No |
| location | LocationCreateNestedOneWithoutEncounterListInput | No |
| provider | ProviderCreateNestedOneWithoutEncounterListInput | No |
| formEncounterList | FormEncounterCreateNestedManyWithoutEncounterInput | No |
| formSubmissionList | FormSubmissionCreateNestedManyWithoutEncounterInput | No |
| obsList | ObsCreateNestedManyWithoutEncounterInput | No |
| orderList | OrderCreateNestedManyWithoutEncounterInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| encounterTypeId | String | No |
| patientId | String | No |
| locationId | String | No |
| providerId | String | No |
| startDatetime | DateTime | No |
| endDatetime | DateTime | No |
| voided | Boolean | No |
| voidedBy | String | No |
| dateVoided | DateTime | No |
| voidReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| formEncounterList | FormEncounterUncheckedCreateNestedManyWithoutEncounterInput | No |
| formSubmissionList | FormSubmissionUncheckedCreateNestedManyWithoutEncounterInput | No |
| obsList | ObsUncheckedCreateNestedManyWithoutEncounterInput | No |
| orderList | OrderUncheckedCreateNestedManyWithoutEncounterInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EncounterWhereUniqueInput | No |
| create | EncounterCreateWithoutFormInput | EncounterUncheckedCreateWithoutFormInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | EncounterCreateManyFormInput | EncounterCreateManyFormInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | FormEncounterWhereUniqueInput | No |
| update | FormEncounterUpdateWithoutFormInput | FormEncounterUncheckedUpdateWithoutFormInput | No |
| create | FormEncounterCreateWithoutFormInput | FormEncounterUncheckedCreateWithoutFormInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FormEncounterWhereUniqueInput | No |
| data | FormEncounterUpdateWithoutFormInput | FormEncounterUncheckedUpdateWithoutFormInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FormEncounterScalarWhereInput | No |
| data | FormEncounterUpdateManyMutationInput | FormEncounterUncheckedUpdateManyWithoutFormInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | FormEncounterScalarWhereInput | FormEncounterScalarWhereInput[] | No |
| OR | FormEncounterScalarWhereInput[] | No |
| NOT | FormEncounterScalarWhereInput | FormEncounterScalarWhereInput[] | No |
| id | StringFilter | String | No |
| uuid | StringFilter | String | No |
| formId | StringFilter | String | No |
| encounterId | StringFilter | String | No |
| creator | StringFilter | String | No |
| dateCreated | DateTimeFilter | DateTime | No |
| lastChangedBy | StringFilter | String | No |
| lastChangedDate | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | FormResourceWhereUniqueInput | No |
| update | FormResourceUpdateWithoutFormInput | FormResourceUncheckedUpdateWithoutFormInput | No |
| create | FormResourceCreateWithoutFormInput | FormResourceUncheckedCreateWithoutFormInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FormResourceWhereUniqueInput | No |
| data | FormResourceUpdateWithoutFormInput | FormResourceUncheckedUpdateWithoutFormInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FormResourceScalarWhereInput | No |
| data | FormResourceUpdateManyMutationInput | FormResourceUncheckedUpdateManyWithoutFormInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | FormResourceScalarWhereInput | FormResourceScalarWhereInput[] | No |
| OR | FormResourceScalarWhereInput[] | No |
| NOT | FormResourceScalarWhereInput | FormResourceScalarWhereInput[] | No |
| id | StringFilter | String | No |
| uuid | StringFilter | String | No |
| formId | StringFilter | String | No |
| resourceId | StringFilter | String | No |
| creator | StringFilter | String | No |
| dateCreated | DateTimeFilter | DateTime | No |
| lastChangedBy | StringFilter | String | No |
| lastChangedDate | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | FormSubmissionWhereUniqueInput | No |
| update | FormSubmissionUpdateWithoutFormInput | FormSubmissionUncheckedUpdateWithoutFormInput | No |
| create | FormSubmissionCreateWithoutFormInput | FormSubmissionUncheckedCreateWithoutFormInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FormSubmissionWhereUniqueInput | No |
| data | FormSubmissionUpdateWithoutFormInput | FormSubmissionUncheckedUpdateWithoutFormInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FormSubmissionScalarWhereInput | No |
| data | FormSubmissionUpdateManyMutationInput | FormSubmissionUncheckedUpdateManyWithoutFormInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | FormSubmissionScalarWhereInput | FormSubmissionScalarWhereInput[] | No |
| OR | FormSubmissionScalarWhereInput[] | No |
| NOT | FormSubmissionScalarWhereInput | FormSubmissionScalarWhereInput[] | No |
| id | StringFilter | String | No |
| uuid | StringFilter | String | No |
| formId | StringFilter | String | No |
| encounterId | StringFilter | String | No |
| submissionDate | DateTimeFilter | DateTime | No |
| creator | StringFilter | String | No |
| dateCreated | DateTimeFilter | DateTime | No |
| lastChangedBy | StringFilter | String | No |
| lastChangedDate | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| update | FieldUpdateWithoutFormListInput | FieldUncheckedUpdateWithoutFormListInput | No |
| create | FieldCreateWithoutFormListInput | FieldUncheckedCreateWithoutFormListInput | No |
| where | FieldWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FieldWhereInput | No |
| data | FieldUpdateWithoutFormListInput | FieldUncheckedUpdateWithoutFormListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| fieldType | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| concept | ConceptUpdateOneRequiredWithoutFieldListNestedInput | No |
| fieldAnswerList | FieldAnswerUpdateManyWithoutFieldNestedInput | No |
| fieldOptionList | FieldOptionUpdateManyWithoutFieldNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| fieldType | String | StringFieldUpdateOperationsInput | No |
| conceptId | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| fieldAnswerList | FieldAnswerUncheckedUpdateManyWithoutFieldNestedInput | No |
| fieldOptionList | FieldOptionUncheckedUpdateManyWithoutFieldNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EncounterWhereUniqueInput | No |
| update | EncounterUpdateWithoutFormInput | EncounterUncheckedUpdateWithoutFormInput | No |
| create | EncounterCreateWithoutFormInput | EncounterUncheckedCreateWithoutFormInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EncounterWhereUniqueInput | No |
| data | EncounterUpdateWithoutFormInput | EncounterUncheckedUpdateWithoutFormInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EncounterScalarWhereInput | No |
| data | EncounterUpdateManyMutationInput | EncounterUncheckedUpdateManyWithoutFormInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| version | String | No |
| retired | Boolean | No |
| retiredBy | String | No |
| dateRetired | DateTime | No |
| retiredReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| formResourceList | FormResourceCreateNestedManyWithoutFormInput | No |
| formSubmissionList | FormSubmissionCreateNestedManyWithoutFormInput | No |
| dield | FieldCreateNestedOneWithoutFormListInput | No |
| encounterList | EncounterCreateNestedManyWithoutFormInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| version | String | No |
| retired | Boolean | No |
| retiredBy | String | No |
| dateRetired | DateTime | No |
| retiredReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| fieldId | String | Null | Yes |
| formResourceList | FormResourceUncheckedCreateNestedManyWithoutFormInput | No |
| formSubmissionList | FormSubmissionUncheckedCreateNestedManyWithoutFormInput | No |
| encounterList | EncounterUncheckedCreateNestedManyWithoutFormInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FormWhereUniqueInput | No |
| create | FormCreateWithoutFormEncounterListInput | FormUncheckedCreateWithoutFormEncounterListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| startDatetime | DateTime | No |
| endDatetime | DateTime | No |
| voided | Boolean | No |
| voidedBy | String | No |
| dateVoided | DateTime | No |
| voidReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| encounterType | EncounterTypeCreateNestedOneWithoutEncounterListInput | No |
| patient | PatientCreateNestedOneWithoutEncounterListInput | No |
| location | LocationCreateNestedOneWithoutEncounterListInput | No |
| form | FormCreateNestedOneWithoutEncounterListInput | No |
| provider | ProviderCreateNestedOneWithoutEncounterListInput | No |
| formSubmissionList | FormSubmissionCreateNestedManyWithoutEncounterInput | No |
| obsList | ObsCreateNestedManyWithoutEncounterInput | No |
| orderList | OrderCreateNestedManyWithoutEncounterInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| encounterTypeId | String | No |
| patientId | String | No |
| locationId | String | No |
| formId | String | No |
| providerId | String | No |
| startDatetime | DateTime | No |
| endDatetime | DateTime | No |
| voided | Boolean | No |
| voidedBy | String | No |
| dateVoided | DateTime | No |
| voidReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| formSubmissionList | FormSubmissionUncheckedCreateNestedManyWithoutEncounterInput | No |
| obsList | ObsUncheckedCreateNestedManyWithoutEncounterInput | No |
| orderList | OrderUncheckedCreateNestedManyWithoutEncounterInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EncounterWhereUniqueInput | No |
| create | EncounterCreateWithoutFormEncounterListInput | EncounterUncheckedCreateWithoutFormEncounterListInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | FormUpdateWithoutFormEncounterListInput | FormUncheckedUpdateWithoutFormEncounterListInput | No |
| create | FormCreateWithoutFormEncounterListInput | FormUncheckedCreateWithoutFormEncounterListInput | No |
| where | FormWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FormWhereInput | No |
| data | FormUpdateWithoutFormEncounterListInput | FormUncheckedUpdateWithoutFormEncounterListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| retired | Boolean | BoolFieldUpdateOperationsInput | No |
| retiredBy | String | StringFieldUpdateOperationsInput | No |
| dateRetired | DateTime | DateTimeFieldUpdateOperationsInput | No |
| retiredReason | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| formResourceList | FormResourceUpdateManyWithoutFormNestedInput | No |
| formSubmissionList | FormSubmissionUpdateManyWithoutFormNestedInput | No |
| dield | FieldUpdateOneWithoutFormListNestedInput | No |
| encounterList | EncounterUpdateManyWithoutFormNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | EncounterUpdateWithoutFormEncounterListInput | EncounterUncheckedUpdateWithoutFormEncounterListInput | No |
| create | EncounterCreateWithoutFormEncounterListInput | EncounterUncheckedCreateWithoutFormEncounterListInput | No |
| where | EncounterWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EncounterWhereInput | No |
| data | EncounterUpdateWithoutFormEncounterListInput | EncounterUncheckedUpdateWithoutFormEncounterListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| version | String | No |
| retired | Boolean | No |
| retiredBy | String | No |
| dateRetired | DateTime | No |
| retiredReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| formEncounterList | FormEncounterCreateNestedManyWithoutFormInput | No |
| formSubmissionList | FormSubmissionCreateNestedManyWithoutFormInput | No |
| dield | FieldCreateNestedOneWithoutFormListInput | No |
| encounterList | EncounterCreateNestedManyWithoutFormInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| version | String | No |
| retired | Boolean | No |
| retiredBy | String | No |
| dateRetired | DateTime | No |
| retiredReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| fieldId | String | Null | Yes |
| formEncounterList | FormEncounterUncheckedCreateNestedManyWithoutFormInput | No |
| formSubmissionList | FormSubmissionUncheckedCreateNestedManyWithoutFormInput | No |
| encounterList | EncounterUncheckedCreateNestedManyWithoutFormInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FormWhereUniqueInput | No |
| create | FormCreateWithoutFormResourceListInput | FormUncheckedCreateWithoutFormResourceListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | ResourceWhereUniqueInput | No |
| create | ResourceCreateWithoutFormResourceListInput | ResourceUncheckedCreateWithoutFormResourceListInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | FormUpdateWithoutFormResourceListInput | FormUncheckedUpdateWithoutFormResourceListInput | No |
| create | FormCreateWithoutFormResourceListInput | FormUncheckedCreateWithoutFormResourceListInput | No |
| where | FormWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FormWhereInput | No |
| data | FormUpdateWithoutFormResourceListInput | FormUncheckedUpdateWithoutFormResourceListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| retired | Boolean | BoolFieldUpdateOperationsInput | No |
| retiredBy | String | StringFieldUpdateOperationsInput | No |
| dateRetired | DateTime | DateTimeFieldUpdateOperationsInput | No |
| retiredReason | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| formEncounterList | FormEncounterUpdateManyWithoutFormNestedInput | No |
| formSubmissionList | FormSubmissionUpdateManyWithoutFormNestedInput | No |
| dield | FieldUpdateOneWithoutFormListNestedInput | No |
| encounterList | EncounterUpdateManyWithoutFormNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | ResourceUpdateWithoutFormResourceListInput | ResourceUncheckedUpdateWithoutFormResourceListInput | No |
| create | ResourceCreateWithoutFormResourceListInput | ResourceUncheckedCreateWithoutFormResourceListInput | No |
| where | ResourceWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ResourceWhereInput | No |
| data | ResourceUpdateWithoutFormResourceListInput | ResourceUncheckedUpdateWithoutFormResourceListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| version | String | No |
| retired | Boolean | No |
| retiredBy | String | No |
| dateRetired | DateTime | No |
| retiredReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| formEncounterList | FormEncounterCreateNestedManyWithoutFormInput | No |
| formResourceList | FormResourceCreateNestedManyWithoutFormInput | No |
| dield | FieldCreateNestedOneWithoutFormListInput | No |
| encounterList | EncounterCreateNestedManyWithoutFormInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| version | String | No |
| retired | Boolean | No |
| retiredBy | String | No |
| dateRetired | DateTime | No |
| retiredReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| fieldId | String | Null | Yes |
| formEncounterList | FormEncounterUncheckedCreateNestedManyWithoutFormInput | No |
| formResourceList | FormResourceUncheckedCreateNestedManyWithoutFormInput | No |
| encounterList | EncounterUncheckedCreateNestedManyWithoutFormInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FormWhereUniqueInput | No |
| create | FormCreateWithoutFormSubmissionListInput | FormUncheckedCreateWithoutFormSubmissionListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| startDatetime | DateTime | No |
| endDatetime | DateTime | No |
| voided | Boolean | No |
| voidedBy | String | No |
| dateVoided | DateTime | No |
| voidReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| encounterType | EncounterTypeCreateNestedOneWithoutEncounterListInput | No |
| patient | PatientCreateNestedOneWithoutEncounterListInput | No |
| location | LocationCreateNestedOneWithoutEncounterListInput | No |
| form | FormCreateNestedOneWithoutEncounterListInput | No |
| provider | ProviderCreateNestedOneWithoutEncounterListInput | No |
| formEncounterList | FormEncounterCreateNestedManyWithoutEncounterInput | No |
| obsList | ObsCreateNestedManyWithoutEncounterInput | No |
| orderList | OrderCreateNestedManyWithoutEncounterInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| encounterTypeId | String | No |
| patientId | String | No |
| locationId | String | No |
| formId | String | No |
| providerId | String | No |
| startDatetime | DateTime | No |
| endDatetime | DateTime | No |
| voided | Boolean | No |
| voidedBy | String | No |
| dateVoided | DateTime | No |
| voidReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| formEncounterList | FormEncounterUncheckedCreateNestedManyWithoutEncounterInput | No |
| obsList | ObsUncheckedCreateNestedManyWithoutEncounterInput | No |
| orderList | OrderUncheckedCreateNestedManyWithoutEncounterInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EncounterWhereUniqueInput | No |
| create | EncounterCreateWithoutFormSubmissionListInput | EncounterUncheckedCreateWithoutFormSubmissionListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| value | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| field | FieldCreateNestedOneWithoutFieldAnswerListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| fieldId | String | No |
| value | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | FieldAnswerWhereUniqueInput | No |
| create | FieldAnswerCreateWithoutFormSubmissionInput | FieldAnswerUncheckedCreateWithoutFormSubmissionInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | FieldAnswerCreateManyFormSubmissionInput | FieldAnswerCreateManyFormSubmissionInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| update | FormUpdateWithoutFormSubmissionListInput | FormUncheckedUpdateWithoutFormSubmissionListInput | No |
| create | FormCreateWithoutFormSubmissionListInput | FormUncheckedCreateWithoutFormSubmissionListInput | No |
| where | FormWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FormWhereInput | No |
| data | FormUpdateWithoutFormSubmissionListInput | FormUncheckedUpdateWithoutFormSubmissionListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| retired | Boolean | BoolFieldUpdateOperationsInput | No |
| retiredBy | String | StringFieldUpdateOperationsInput | No |
| dateRetired | DateTime | DateTimeFieldUpdateOperationsInput | No |
| retiredReason | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| formEncounterList | FormEncounterUpdateManyWithoutFormNestedInput | No |
| formResourceList | FormResourceUpdateManyWithoutFormNestedInput | No |
| dield | FieldUpdateOneWithoutFormListNestedInput | No |
| encounterList | EncounterUpdateManyWithoutFormNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | EncounterUpdateWithoutFormSubmissionListInput | EncounterUncheckedUpdateWithoutFormSubmissionListInput | No |
| create | EncounterCreateWithoutFormSubmissionListInput | EncounterUncheckedCreateWithoutFormSubmissionListInput | No |
| where | EncounterWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EncounterWhereInput | No |
| data | EncounterUpdateWithoutFormSubmissionListInput | EncounterUncheckedUpdateWithoutFormSubmissionListInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FieldAnswerWhereUniqueInput | No |
| update | FieldAnswerUpdateWithoutFormSubmissionInput | FieldAnswerUncheckedUpdateWithoutFormSubmissionInput | No |
| create | FieldAnswerCreateWithoutFormSubmissionInput | FieldAnswerUncheckedCreateWithoutFormSubmissionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FieldAnswerWhereUniqueInput | No |
| data | FieldAnswerUpdateWithoutFormSubmissionInput | FieldAnswerUncheckedUpdateWithoutFormSubmissionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FieldAnswerScalarWhereInput | No |
| data | FieldAnswerUpdateManyMutationInput | FieldAnswerUncheckedUpdateManyWithoutFormSubmissionInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | FieldAnswerScalarWhereInput | FieldAnswerScalarWhereInput[] | No |
| OR | FieldAnswerScalarWhereInput[] | No |
| NOT | FieldAnswerScalarWhereInput | FieldAnswerScalarWhereInput[] | No |
| id | StringFilter | String | No |
| uuid | StringFilter | String | No |
| formSubmissionId | StringFilter | String | No |
| fieldId | StringFilter | String | No |
| value | StringFilter | String | No |
| creator | StringFilter | String | No |
| dateCreated | DateTimeFilter | DateTime | No |
| lastChangedBy | StringFilter | String | No |
| lastChangedDate | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| dataType | String | No |
| class | String | No |
| isRetired | Boolean | No |
| retiredBy | String | No |
| dateRetired | DateTime | No |
| retiredReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| conceptClassId | String | Null | Yes |
| conceptDatatypeId | String | Null | Yes |
| conceptMapId | String | Null | Yes |
| conceptSetId | String | Null | Yes |
| conceptSourceId | String | Null | Yes |
| metaList | ConceptAnswerUncheckedCreateNestedManyWithoutConceptInput | No |
| answerList | ConceptAnswerUncheckedCreateNestedManyWithoutAnswerConceptInput | No |
| obsList | ObsUncheckedCreateNestedManyWithoutConceptInput | No |
| orderList | OrderUncheckedCreateNestedManyWithoutConceptInput | No |
| conceptNameList | ConceptNameUncheckedCreateNestedManyWithoutConceptInput | No |
| conceptNumericList | ConceptNumericUncheckedCreateNestedManyWithoutConceptInput | No |
| conceptProposalList | ConceptProposalUncheckedCreateNestedManyWithoutConceptInput | No |
| conceptWordList | ConceptWordUncheckedCreateNestedManyWithoutConceptInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ConceptWhereUniqueInput | No |
| create | ConceptCreateWithoutFieldListInput | ConceptUncheckedCreateWithoutFieldListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| version | String | No |
| retired | Boolean | No |
| retiredBy | String | No |
| dateRetired | DateTime | No |
| retiredReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| formEncounterList | FormEncounterCreateNestedManyWithoutFormInput | No |
| formResourceList | FormResourceCreateNestedManyWithoutFormInput | No |
| formSubmissionList | FormSubmissionCreateNestedManyWithoutFormInput | No |
| encounterList | EncounterCreateNestedManyWithoutFormInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| version | String | No |
| retired | Boolean | No |
| retiredBy | String | No |
| dateRetired | DateTime | No |
| retiredReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| formEncounterList | FormEncounterUncheckedCreateNestedManyWithoutFormInput | No |
| formResourceList | FormResourceUncheckedCreateNestedManyWithoutFormInput | No |
| formSubmissionList | FormSubmissionUncheckedCreateNestedManyWithoutFormInput | No |
| encounterList | EncounterUncheckedCreateNestedManyWithoutFormInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FormWhereUniqueInput | No |
| create | FormCreateWithoutDieldInput | FormUncheckedCreateWithoutDieldInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | FormCreateManyDieldInput | FormCreateManyDieldInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| value | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| formSubmission | FormSubmissionCreateNestedOneWithoutFieldAnswerListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| formSubmissionId | String | No |
| value | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | FieldAnswerWhereUniqueInput | No |
| create | FieldAnswerCreateWithoutFieldInput | FieldAnswerUncheckedCreateWithoutFieldInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | FieldAnswerCreateManyFieldInput | FieldAnswerCreateManyFieldInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | FieldOptionWhereUniqueInput | No |
| create | FieldOptionCreateWithoutFieldInput | FieldOptionUncheckedCreateWithoutFieldInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | FieldOptionCreateManyFieldInput | FieldOptionCreateManyFieldInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| update | ConceptUpdateWithoutFieldListInput | ConceptUncheckedUpdateWithoutFieldListInput | No |
| create | ConceptCreateWithoutFieldListInput | ConceptUncheckedCreateWithoutFieldListInput | No |
| where | ConceptWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ConceptWhereInput | No |
| data | ConceptUpdateWithoutFieldListInput | ConceptUncheckedUpdateWithoutFieldListInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FormWhereUniqueInput | No |
| update | FormUpdateWithoutDieldInput | FormUncheckedUpdateWithoutDieldInput | No |
| create | FormCreateWithoutDieldInput | FormUncheckedCreateWithoutDieldInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FormWhereUniqueInput | No |
| data | FormUpdateWithoutDieldInput | FormUncheckedUpdateWithoutDieldInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FormScalarWhereInput | No |
| data | FormUpdateManyMutationInput | FormUncheckedUpdateManyWithoutDieldInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | FormScalarWhereInput | FormScalarWhereInput[] | No |
| OR | FormScalarWhereInput[] | No |
| NOT | FormScalarWhereInput | FormScalarWhereInput[] | No |
| id | StringFilter | String | No |
| uuid | StringFilter | String | No |
| name | StringFilter | String | No |
| description | StringFilter | String | No |
| version | StringFilter | String | No |
| retired | BoolFilter | Boolean | No |
| retiredBy | StringFilter | String | No |
| dateRetired | DateTimeFilter | DateTime | No |
| retiredReason | StringFilter | String | No |
| creator | StringFilter | String | No |
| dateCreated | DateTimeFilter | DateTime | No |
| lastChangedBy | StringFilter | String | No |
| lastChangedDate | DateTimeFilter | DateTime | No |
| fieldId | StringNullableFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | FieldAnswerWhereUniqueInput | No |
| update | FieldAnswerUpdateWithoutFieldInput | FieldAnswerUncheckedUpdateWithoutFieldInput | No |
| create | FieldAnswerCreateWithoutFieldInput | FieldAnswerUncheckedCreateWithoutFieldInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FieldAnswerWhereUniqueInput | No |
| data | FieldAnswerUpdateWithoutFieldInput | FieldAnswerUncheckedUpdateWithoutFieldInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FieldAnswerScalarWhereInput | No |
| data | FieldAnswerUpdateManyMutationInput | FieldAnswerUncheckedUpdateManyWithoutFieldInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FieldOptionWhereUniqueInput | No |
| update | FieldOptionUpdateWithoutFieldInput | FieldOptionUncheckedUpdateWithoutFieldInput | No |
| create | FieldOptionCreateWithoutFieldInput | FieldOptionUncheckedCreateWithoutFieldInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FieldOptionWhereUniqueInput | No |
| data | FieldOptionUpdateWithoutFieldInput | FieldOptionUncheckedUpdateWithoutFieldInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FieldOptionScalarWhereInput | No |
| data | FieldOptionUpdateManyMutationInput | FieldOptionUncheckedUpdateManyWithoutFieldInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | FieldOptionScalarWhereInput | FieldOptionScalarWhereInput[] | No |
| OR | FieldOptionScalarWhereInput[] | No |
| NOT | FieldOptionScalarWhereInput | FieldOptionScalarWhereInput[] | No |
| id | StringFilter | String | No |
| uuid | StringFilter | String | No |
| fieldId | StringFilter | String | No |
| name | StringFilter | String | No |
| description | StringFilter | String | No |
| creator | StringFilter | String | No |
| dateCreated | DateTimeFilter | DateTime | No |
| lastChangedBy | StringFilter | String | No |
| lastChangedDate | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| submissionDate | DateTime | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| form | FormCreateNestedOneWithoutFormSubmissionListInput | No |
| encounter | EncounterCreateNestedOneWithoutFormSubmissionListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| formId | String | No |
| encounterId | String | No |
| submissionDate | DateTime | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | FormSubmissionWhereUniqueInput | No |
| create | FormSubmissionCreateWithoutFieldAnswerListInput | FormSubmissionUncheckedCreateWithoutFieldAnswerListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| fieldType | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| concept | ConceptCreateNestedOneWithoutFieldListInput | No |
| formList | FormCreateNestedManyWithoutDieldInput | No |
| fieldOptionList | FieldOptionCreateNestedManyWithoutFieldInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| fieldType | String | No |
| conceptId | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| formList | FormUncheckedCreateNestedManyWithoutDieldInput | No |
| fieldOptionList | FieldOptionUncheckedCreateNestedManyWithoutFieldInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FieldWhereUniqueInput | No |
| create | FieldCreateWithoutFieldAnswerListInput | FieldUncheckedCreateWithoutFieldAnswerListInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FormSubmissionWhereInput | No |
| data | FormSubmissionUpdateWithoutFieldAnswerListInput | FormSubmissionUncheckedUpdateWithoutFieldAnswerListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| submissionDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| form | FormUpdateOneRequiredWithoutFormSubmissionListNestedInput | No |
| encounter | EncounterUpdateOneRequiredWithoutFormSubmissionListNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| formId | String | StringFieldUpdateOperationsInput | No |
| encounterId | String | StringFieldUpdateOperationsInput | No |
| submissionDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | FieldUpdateWithoutFieldAnswerListInput | FieldUncheckedUpdateWithoutFieldAnswerListInput | No |
| create | FieldCreateWithoutFieldAnswerListInput | FieldUncheckedCreateWithoutFieldAnswerListInput | No |
| where | FieldWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FieldWhereInput | No |
| data | FieldUpdateWithoutFieldAnswerListInput | FieldUncheckedUpdateWithoutFieldAnswerListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| fieldType | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| concept | ConceptUpdateOneRequiredWithoutFieldListNestedInput | No |
| formList | FormUpdateManyWithoutDieldNestedInput | No |
| fieldOptionList | FieldOptionUpdateManyWithoutFieldNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| fieldType | String | StringFieldUpdateOperationsInput | No |
| conceptId | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| formList | FormUncheckedUpdateManyWithoutDieldNestedInput | No |
| fieldOptionList | FieldOptionUncheckedUpdateManyWithoutFieldNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| fieldType | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| concept | ConceptCreateNestedOneWithoutFieldListInput | No |
| formList | FormCreateNestedManyWithoutDieldInput | No |
| fieldAnswerList | FieldAnswerCreateNestedManyWithoutFieldInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| fieldType | String | No |
| conceptId | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| formList | FormUncheckedCreateNestedManyWithoutDieldInput | No |
| fieldAnswerList | FieldAnswerUncheckedCreateNestedManyWithoutFieldInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FieldWhereUniqueInput | No |
| create | FieldCreateWithoutFieldOptionListInput | FieldUncheckedCreateWithoutFieldOptionListInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | FieldUpdateWithoutFieldOptionListInput | FieldUncheckedUpdateWithoutFieldOptionListInput | No |
| create | FieldCreateWithoutFieldOptionListInput | FieldUncheckedCreateWithoutFieldOptionListInput | No |
| where | FieldWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FieldWhereInput | No |
| data | FieldUpdateWithoutFieldOptionListInput | FieldUncheckedUpdateWithoutFieldOptionListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| fieldType | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| concept | ConceptUpdateOneRequiredWithoutFieldListNestedInput | No |
| formList | FormUpdateManyWithoutDieldNestedInput | No |
| fieldAnswerList | FieldAnswerUpdateManyWithoutFieldNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| fieldType | String | StringFieldUpdateOperationsInput | No |
| conceptId | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| formList | FormUncheckedUpdateManyWithoutDieldNestedInput | No |
| fieldAnswerList | FieldAnswerUncheckedUpdateManyWithoutFieldNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | EncounterTypeWhereUniqueInput | No |
| create | EncounterTypeCreateWithoutEncounterListInput | EncounterTypeUncheckedCreateWithoutEncounterListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| givenName | String | No |
| middleName | String | No |
| familyName | String | No |
| gender | String | No |
| birthdate | DateTime | No |
| dead | Boolean | No |
| deathDate | DateTime | No |
| causeOfDeath | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| appointmentList | AppointmentCreateNestedManyWithoutPatientInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| givenName | String | No |
| middleName | String | No |
| familyName | String | No |
| gender | String | No |
| birthdate | DateTime | No |
| dead | Boolean | No |
| deathDate | DateTime | No |
| causeOfDeath | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| appointmentList | AppointmentUncheckedCreateNestedManyWithoutPatientInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PatientWhereUniqueInput | No |
| create | PatientCreateWithoutEncounterListInput | PatientUncheckedCreateWithoutEncounterListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| address1 | String | No |
| address2 | String | No |
| city | String | No |
| stateProvince | String | No |
| country | String | No |
| postalCode | String | No |
| latitude | Float | No |
| longitude | Float | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| appointmentList | AppointmentCreateNestedManyWithoutLocationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| address1 | String | No |
| address2 | String | No |
| city | String | No |
| stateProvince | String | No |
| country | String | No |
| postalCode | String | No |
| latitude | Float | No |
| longitude | Float | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| appointmentList | AppointmentUncheckedCreateNestedManyWithoutLocationInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | LocationWhereUniqueInput | No |
| create | LocationCreateWithoutEncounterListInput | LocationUncheckedCreateWithoutEncounterListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| version | String | No |
| retired | Boolean | No |
| retiredBy | String | No |
| dateRetired | DateTime | No |
| retiredReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| formEncounterList | FormEncounterCreateNestedManyWithoutFormInput | No |
| formResourceList | FormResourceCreateNestedManyWithoutFormInput | No |
| formSubmissionList | FormSubmissionCreateNestedManyWithoutFormInput | No |
| dield | FieldCreateNestedOneWithoutFormListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| version | String | No |
| retired | Boolean | No |
| retiredBy | String | No |
| dateRetired | DateTime | No |
| retiredReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| fieldId | String | Null | Yes |
| formEncounterList | FormEncounterUncheckedCreateNestedManyWithoutFormInput | No |
| formResourceList | FormResourceUncheckedCreateNestedManyWithoutFormInput | No |
| formSubmissionList | FormSubmissionUncheckedCreateNestedManyWithoutFormInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FormWhereUniqueInput | No |
| create | FormCreateWithoutEncounterListInput | FormUncheckedCreateWithoutEncounterListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| identifier | String | No |
| description | String | No |
| voided | Boolean | No |
| voidedBy | String | No |
| dateVoided | DateTime | No |
| voidReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| appointmentList | AppointmentCreateNestedManyWithoutProviderInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| identifier | String | No |
| description | String | No |
| voided | Boolean | No |
| voidedBy | String | No |
| dateVoided | DateTime | No |
| voidReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| appointmentList | AppointmentUncheckedCreateNestedManyWithoutProviderInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ProviderWhereUniqueInput | No |
| create | ProviderCreateWithoutEncounterListInput | ProviderUncheckedCreateWithoutEncounterListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| form | FormCreateNestedOneWithoutFormEncounterListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| formId | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | FormEncounterWhereUniqueInput | No |
| create | FormEncounterCreateWithoutEncounterInput | FormEncounterUncheckedCreateWithoutEncounterInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | FormEncounterCreateManyEncounterInput | FormEncounterCreateManyEncounterInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| submissionDate | DateTime | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| form | FormCreateNestedOneWithoutFormSubmissionListInput | No |
| fieldAnswerList | FieldAnswerCreateNestedManyWithoutFormSubmissionInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| formId | String | No |
| submissionDate | DateTime | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| fieldAnswerList | FieldAnswerUncheckedCreateNestedManyWithoutFormSubmissionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FormSubmissionWhereUniqueInput | No |
| create | FormSubmissionCreateWithoutEncounterInput | FormSubmissionUncheckedCreateWithoutEncounterInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | FormSubmissionCreateManyEncounterInput | FormSubmissionCreateManyEncounterInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| obsDatetime | DateTime | No |
| valueDatetime | DateTime | No |
| valueNumeric | Float | No |
| valueText | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| concept | ConceptCreateNestedOneWithoutObsListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| conceptId | String | No |
| obsDatetime | DateTime | No |
| valueDatetime | DateTime | No |
| valueNumeric | Float | No |
| valueText | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | ObsWhereUniqueInput | No |
| create | ObsCreateWithoutEncounterInput | ObsUncheckedCreateWithoutEncounterInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | ObsCreateManyEncounterInput | ObsCreateManyEncounterInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| orderDatetime | DateTime | No |
| instructions | String | No |
| dosage | String | No |
| route | String | No |
| frequency | String | No |
| asNeeded | Boolean | No |
| prn | Boolean | No |
| quantity | Int | No |
| units | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| concept | ConceptCreateNestedOneWithoutOrderListInput | No |
| OrderFrequency | OrderFrequencyCreateNestedOneWithoutOrderListInput | No |
| OrderRoute | OrderRouteCreateNestedOneWithoutOrderListInput | No |
| OrderType | OrderTypeCreateNestedOneWithoutOrderListInput | No |
| OrderUnit | OrderUnitCreateNestedOneWithoutOrderListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| conceptId | String | No |
| orderDatetime | DateTime | No |
| instructions | String | No |
| dosage | String | No |
| route | String | No |
| frequency | String | No |
| asNeeded | Boolean | No |
| prn | Boolean | No |
| quantity | Int | No |
| units | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| orderFrequencyId | String | Null | Yes |
| orderRouteId | String | Null | Yes |
| orderTypeId | String | Null | Yes |
| orderUnitId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | OrderWhereUniqueInput | No |
| create | OrderCreateWithoutEncounterInput | OrderUncheckedCreateWithoutEncounterInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | OrderCreateManyEncounterInput | OrderCreateManyEncounterInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| update | EncounterTypeUpdateWithoutEncounterListInput | EncounterTypeUncheckedUpdateWithoutEncounterListInput | No |
| create | EncounterTypeCreateWithoutEncounterListInput | EncounterTypeUncheckedCreateWithoutEncounterListInput | No |
| where | EncounterTypeWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EncounterTypeWhereInput | No |
| data | EncounterTypeUpdateWithoutEncounterListInput | EncounterTypeUncheckedUpdateWithoutEncounterListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | PatientUpdateWithoutEncounterListInput | PatientUncheckedUpdateWithoutEncounterListInput | No |
| create | PatientCreateWithoutEncounterListInput | PatientUncheckedCreateWithoutEncounterListInput | No |
| where | PatientWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PatientWhereInput | No |
| data | PatientUpdateWithoutEncounterListInput | PatientUncheckedUpdateWithoutEncounterListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| givenName | String | StringFieldUpdateOperationsInput | No |
| middleName | String | StringFieldUpdateOperationsInput | No |
| familyName | String | StringFieldUpdateOperationsInput | No |
| gender | String | StringFieldUpdateOperationsInput | No |
| birthdate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| dead | Boolean | BoolFieldUpdateOperationsInput | No |
| deathDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| causeOfDeath | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| appointmentList | AppointmentUpdateManyWithoutPatientNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| givenName | String | StringFieldUpdateOperationsInput | No |
| middleName | String | StringFieldUpdateOperationsInput | No |
| familyName | String | StringFieldUpdateOperationsInput | No |
| gender | String | StringFieldUpdateOperationsInput | No |
| birthdate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| dead | Boolean | BoolFieldUpdateOperationsInput | No |
| deathDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| causeOfDeath | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| appointmentList | AppointmentUncheckedUpdateManyWithoutPatientNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | LocationUpdateWithoutEncounterListInput | LocationUncheckedUpdateWithoutEncounterListInput | No |
| create | LocationCreateWithoutEncounterListInput | LocationUncheckedCreateWithoutEncounterListInput | No |
| where | LocationWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | LocationWhereInput | No |
| data | LocationUpdateWithoutEncounterListInput | LocationUncheckedUpdateWithoutEncounterListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| address1 | String | StringFieldUpdateOperationsInput | No |
| address2 | String | StringFieldUpdateOperationsInput | No |
| city | String | StringFieldUpdateOperationsInput | No |
| stateProvince | String | StringFieldUpdateOperationsInput | No |
| country | String | StringFieldUpdateOperationsInput | No |
| postalCode | String | StringFieldUpdateOperationsInput | No |
| latitude | Float | FloatFieldUpdateOperationsInput | No |
| longitude | Float | FloatFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| appointmentList | AppointmentUpdateManyWithoutLocationNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| address1 | String | StringFieldUpdateOperationsInput | No |
| address2 | String | StringFieldUpdateOperationsInput | No |
| city | String | StringFieldUpdateOperationsInput | No |
| stateProvince | String | StringFieldUpdateOperationsInput | No |
| country | String | StringFieldUpdateOperationsInput | No |
| postalCode | String | StringFieldUpdateOperationsInput | No |
| latitude | Float | FloatFieldUpdateOperationsInput | No |
| longitude | Float | FloatFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| appointmentList | AppointmentUncheckedUpdateManyWithoutLocationNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | FormUpdateWithoutEncounterListInput | FormUncheckedUpdateWithoutEncounterListInput | No |
| create | FormCreateWithoutEncounterListInput | FormUncheckedCreateWithoutEncounterListInput | No |
| where | FormWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FormWhereInput | No |
| data | FormUpdateWithoutEncounterListInput | FormUncheckedUpdateWithoutEncounterListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| retired | Boolean | BoolFieldUpdateOperationsInput | No |
| retiredBy | String | StringFieldUpdateOperationsInput | No |
| dateRetired | DateTime | DateTimeFieldUpdateOperationsInput | No |
| retiredReason | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| formEncounterList | FormEncounterUpdateManyWithoutFormNestedInput | No |
| formResourceList | FormResourceUpdateManyWithoutFormNestedInput | No |
| formSubmissionList | FormSubmissionUpdateManyWithoutFormNestedInput | No |
| dield | FieldUpdateOneWithoutFormListNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | ProviderUpdateWithoutEncounterListInput | ProviderUncheckedUpdateWithoutEncounterListInput | No |
| create | ProviderCreateWithoutEncounterListInput | ProviderUncheckedCreateWithoutEncounterListInput | No |
| where | ProviderWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ProviderWhereInput | No |
| data | ProviderUpdateWithoutEncounterListInput | ProviderUncheckedUpdateWithoutEncounterListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| identifier | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| voided | Boolean | BoolFieldUpdateOperationsInput | No |
| voidedBy | String | StringFieldUpdateOperationsInput | No |
| dateVoided | DateTime | DateTimeFieldUpdateOperationsInput | No |
| voidReason | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| appointmentList | AppointmentUpdateManyWithoutProviderNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| identifier | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| voided | Boolean | BoolFieldUpdateOperationsInput | No |
| voidedBy | String | StringFieldUpdateOperationsInput | No |
| dateVoided | DateTime | DateTimeFieldUpdateOperationsInput | No |
| voidReason | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| appointmentList | AppointmentUncheckedUpdateManyWithoutProviderNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FormEncounterWhereUniqueInput | No |
| update | FormEncounterUpdateWithoutEncounterInput | FormEncounterUncheckedUpdateWithoutEncounterInput | No |
| create | FormEncounterCreateWithoutEncounterInput | FormEncounterUncheckedCreateWithoutEncounterInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FormEncounterWhereUniqueInput | No |
| data | FormEncounterUpdateWithoutEncounterInput | FormEncounterUncheckedUpdateWithoutEncounterInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FormEncounterScalarWhereInput | No |
| data | FormEncounterUpdateManyMutationInput | FormEncounterUncheckedUpdateManyWithoutEncounterInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FormSubmissionWhereUniqueInput | No |
| update | FormSubmissionUpdateWithoutEncounterInput | FormSubmissionUncheckedUpdateWithoutEncounterInput | No |
| create | FormSubmissionCreateWithoutEncounterInput | FormSubmissionUncheckedCreateWithoutEncounterInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FormSubmissionWhereUniqueInput | No |
| data | FormSubmissionUpdateWithoutEncounterInput | FormSubmissionUncheckedUpdateWithoutEncounterInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FormSubmissionScalarWhereInput | No |
| data | FormSubmissionUpdateManyMutationInput | FormSubmissionUncheckedUpdateManyWithoutEncounterInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ObsWhereUniqueInput | No |
| update | ObsUpdateWithoutEncounterInput | ObsUncheckedUpdateWithoutEncounterInput | No |
| create | ObsCreateWithoutEncounterInput | ObsUncheckedCreateWithoutEncounterInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ObsWhereUniqueInput | No |
| data | ObsUpdateWithoutEncounterInput | ObsUncheckedUpdateWithoutEncounterInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ObsScalarWhereInput | No |
| data | ObsUpdateManyMutationInput | ObsUncheckedUpdateManyWithoutEncounterInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ObsScalarWhereInput | ObsScalarWhereInput[] | No |
| OR | ObsScalarWhereInput[] | No |
| NOT | ObsScalarWhereInput | ObsScalarWhereInput[] | No |
| id | StringFilter | String | No |
| uuid | StringFilter | String | No |
| conceptId | StringFilter | String | No |
| encounterId | StringFilter | String | No |
| obsDatetime | DateTimeFilter | DateTime | No |
| valueDatetime | DateTimeFilter | DateTime | No |
| valueNumeric | FloatFilter | Float | No |
| valueText | StringFilter | String | No |
| creator | StringFilter | String | No |
| dateCreated | DateTimeFilter | DateTime | No |
| lastChangedBy | StringFilter | String | No |
| lastChangedDate | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrderWhereUniqueInput | No |
| update | OrderUpdateWithoutEncounterInput | OrderUncheckedUpdateWithoutEncounterInput | No |
| create | OrderCreateWithoutEncounterInput | OrderUncheckedCreateWithoutEncounterInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrderWhereUniqueInput | No |
| data | OrderUpdateWithoutEncounterInput | OrderUncheckedUpdateWithoutEncounterInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrderScalarWhereInput | No |
| data | OrderUpdateManyMutationInput | OrderUncheckedUpdateManyWithoutEncounterInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | OrderScalarWhereInput | OrderScalarWhereInput[] | No |
| OR | OrderScalarWhereInput[] | No |
| NOT | OrderScalarWhereInput | OrderScalarWhereInput[] | No |
| id | StringFilter | String | No |
| uuid | StringFilter | String | No |
| conceptId | StringFilter | String | No |
| encounterId | StringFilter | String | No |
| orderDatetime | DateTimeFilter | DateTime | No |
| instructions | StringFilter | String | No |
| dosage | StringFilter | String | No |
| route | StringFilter | String | No |
| frequency | StringFilter | String | No |
| asNeeded | BoolFilter | Boolean | No |
| prn | BoolFilter | Boolean | No |
| quantity | IntFilter | Int | No |
| units | StringFilter | String | No |
| creator | StringFilter | String | No |
| dateCreated | DateTimeFilter | DateTime | No |
| lastChangedBy | StringFilter | String | No |
| lastChangedDate | DateTimeFilter | DateTime | No |
| orderFrequencyId | StringNullableFilter | String | Null | Yes |
| orderRouteId | StringNullableFilter | String | Null | Yes |
| orderTypeId | StringNullableFilter | String | Null | Yes |
| orderUnitId | StringNullableFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| startDatetime | DateTime | No |
| endDatetime | DateTime | No |
| voided | Boolean | No |
| voidedBy | String | No |
| dateVoided | DateTime | No |
| voidReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| patient | PatientCreateNestedOneWithoutEncounterListInput | No |
| location | LocationCreateNestedOneWithoutEncounterListInput | No |
| form | FormCreateNestedOneWithoutEncounterListInput | No |
| provider | ProviderCreateNestedOneWithoutEncounterListInput | No |
| formEncounterList | FormEncounterCreateNestedManyWithoutEncounterInput | No |
| formSubmissionList | FormSubmissionCreateNestedManyWithoutEncounterInput | No |
| obsList | ObsCreateNestedManyWithoutEncounterInput | No |
| orderList | OrderCreateNestedManyWithoutEncounterInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| patientId | String | No |
| locationId | String | No |
| formId | String | No |
| providerId | String | No |
| startDatetime | DateTime | No |
| endDatetime | DateTime | No |
| voided | Boolean | No |
| voidedBy | String | No |
| dateVoided | DateTime | No |
| voidReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| formEncounterList | FormEncounterUncheckedCreateNestedManyWithoutEncounterInput | No |
| formSubmissionList | FormSubmissionUncheckedCreateNestedManyWithoutEncounterInput | No |
| obsList | ObsUncheckedCreateNestedManyWithoutEncounterInput | No |
| orderList | OrderUncheckedCreateNestedManyWithoutEncounterInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EncounterWhereUniqueInput | No |
| create | EncounterCreateWithoutEncounterTypeInput | EncounterUncheckedCreateWithoutEncounterTypeInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | EncounterCreateManyEncounterTypeInput | EncounterCreateManyEncounterTypeInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | EncounterWhereUniqueInput | No |
| update | EncounterUpdateWithoutEncounterTypeInput | EncounterUncheckedUpdateWithoutEncounterTypeInput | No |
| create | EncounterCreateWithoutEncounterTypeInput | EncounterUncheckedCreateWithoutEncounterTypeInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EncounterWhereUniqueInput | No |
| data | EncounterUpdateWithoutEncounterTypeInput | EncounterUncheckedUpdateWithoutEncounterTypeInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EncounterScalarWhereInput | No |
| data | EncounterUpdateManyMutationInput | EncounterUncheckedUpdateManyWithoutEncounterTypeInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| dataType | String | No |
| class | String | No |
| isRetired | Boolean | No |
| retiredBy | String | No |
| dateRetired | DateTime | No |
| retiredReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| conceptClassId | String | Null | Yes |
| conceptDatatypeId | String | Null | Yes |
| conceptMapId | String | Null | Yes |
| conceptSetId | String | Null | Yes |
| conceptSourceId | String | Null | Yes |
| metaList | ConceptAnswerUncheckedCreateNestedManyWithoutConceptInput | No |
| answerList | ConceptAnswerUncheckedCreateNestedManyWithoutAnswerConceptInput | No |
| fieldList | FieldUncheckedCreateNestedManyWithoutConceptInput | No |
| orderList | OrderUncheckedCreateNestedManyWithoutConceptInput | No |
| conceptNameList | ConceptNameUncheckedCreateNestedManyWithoutConceptInput | No |
| conceptNumericList | ConceptNumericUncheckedCreateNestedManyWithoutConceptInput | No |
| conceptProposalList | ConceptProposalUncheckedCreateNestedManyWithoutConceptInput | No |
| conceptWordList | ConceptWordUncheckedCreateNestedManyWithoutConceptInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ConceptWhereUniqueInput | No |
| create | ConceptCreateWithoutObsListInput | ConceptUncheckedCreateWithoutObsListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| startDatetime | DateTime | No |
| endDatetime | DateTime | No |
| voided | Boolean | No |
| voidedBy | String | No |
| dateVoided | DateTime | No |
| voidReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| encounterType | EncounterTypeCreateNestedOneWithoutEncounterListInput | No |
| patient | PatientCreateNestedOneWithoutEncounterListInput | No |
| location | LocationCreateNestedOneWithoutEncounterListInput | No |
| form | FormCreateNestedOneWithoutEncounterListInput | No |
| provider | ProviderCreateNestedOneWithoutEncounterListInput | No |
| formEncounterList | FormEncounterCreateNestedManyWithoutEncounterInput | No |
| formSubmissionList | FormSubmissionCreateNestedManyWithoutEncounterInput | No |
| orderList | OrderCreateNestedManyWithoutEncounterInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| encounterTypeId | String | No |
| patientId | String | No |
| locationId | String | No |
| formId | String | No |
| providerId | String | No |
| startDatetime | DateTime | No |
| endDatetime | DateTime | No |
| voided | Boolean | No |
| voidedBy | String | No |
| dateVoided | DateTime | No |
| voidReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| formEncounterList | FormEncounterUncheckedCreateNestedManyWithoutEncounterInput | No |
| formSubmissionList | FormSubmissionUncheckedCreateNestedManyWithoutEncounterInput | No |
| orderList | OrderUncheckedCreateNestedManyWithoutEncounterInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EncounterWhereUniqueInput | No |
| create | EncounterCreateWithoutObsListInput | EncounterUncheckedCreateWithoutObsListInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | ConceptUpdateWithoutObsListInput | ConceptUncheckedUpdateWithoutObsListInput | No |
| create | ConceptCreateWithoutObsListInput | ConceptUncheckedCreateWithoutObsListInput | No |
| where | ConceptWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ConceptWhereInput | No |
| data | ConceptUpdateWithoutObsListInput | ConceptUncheckedUpdateWithoutObsListInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | EncounterUpdateWithoutObsListInput | EncounterUncheckedUpdateWithoutObsListInput | No |
| create | EncounterCreateWithoutObsListInput | EncounterUncheckedCreateWithoutObsListInput | No |
| where | EncounterWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EncounterWhereInput | No |
| data | EncounterUpdateWithoutObsListInput | EncounterUncheckedUpdateWithoutObsListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| dataType | String | No |
| class | String | No |
| isRetired | Boolean | No |
| retiredBy | String | No |
| dateRetired | DateTime | No |
| retiredReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| conceptClassId | String | Null | Yes |
| conceptDatatypeId | String | Null | Yes |
| conceptMapId | String | Null | Yes |
| conceptSetId | String | Null | Yes |
| conceptSourceId | String | Null | Yes |
| metaList | ConceptAnswerUncheckedCreateNestedManyWithoutConceptInput | No |
| answerList | ConceptAnswerUncheckedCreateNestedManyWithoutAnswerConceptInput | No |
| fieldList | FieldUncheckedCreateNestedManyWithoutConceptInput | No |
| obsList | ObsUncheckedCreateNestedManyWithoutConceptInput | No |
| conceptNameList | ConceptNameUncheckedCreateNestedManyWithoutConceptInput | No |
| conceptNumericList | ConceptNumericUncheckedCreateNestedManyWithoutConceptInput | No |
| conceptProposalList | ConceptProposalUncheckedCreateNestedManyWithoutConceptInput | No |
| conceptWordList | ConceptWordUncheckedCreateNestedManyWithoutConceptInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ConceptWhereUniqueInput | No |
| create | ConceptCreateWithoutOrderListInput | ConceptUncheckedCreateWithoutOrderListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| startDatetime | DateTime | No |
| endDatetime | DateTime | No |
| voided | Boolean | No |
| voidedBy | String | No |
| dateVoided | DateTime | No |
| voidReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| encounterType | EncounterTypeCreateNestedOneWithoutEncounterListInput | No |
| patient | PatientCreateNestedOneWithoutEncounterListInput | No |
| location | LocationCreateNestedOneWithoutEncounterListInput | No |
| form | FormCreateNestedOneWithoutEncounterListInput | No |
| provider | ProviderCreateNestedOneWithoutEncounterListInput | No |
| formEncounterList | FormEncounterCreateNestedManyWithoutEncounterInput | No |
| formSubmissionList | FormSubmissionCreateNestedManyWithoutEncounterInput | No |
| obsList | ObsCreateNestedManyWithoutEncounterInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| encounterTypeId | String | No |
| patientId | String | No |
| locationId | String | No |
| formId | String | No |
| providerId | String | No |
| startDatetime | DateTime | No |
| endDatetime | DateTime | No |
| voided | Boolean | No |
| voidedBy | String | No |
| dateVoided | DateTime | No |
| voidReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| formEncounterList | FormEncounterUncheckedCreateNestedManyWithoutEncounterInput | No |
| formSubmissionList | FormSubmissionUncheckedCreateNestedManyWithoutEncounterInput | No |
| obsList | ObsUncheckedCreateNestedManyWithoutEncounterInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EncounterWhereUniqueInput | No |
| create | EncounterCreateWithoutOrderListInput | EncounterUncheckedCreateWithoutOrderListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrderFrequencyWhereUniqueInput | No |
| create | OrderFrequencyCreateWithoutOrderListInput | OrderFrequencyUncheckedCreateWithoutOrderListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrderRouteWhereUniqueInput | No |
| create | OrderRouteCreateWithoutOrderListInput | OrderRouteUncheckedCreateWithoutOrderListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrderTypeWhereUniqueInput | No |
| create | OrderTypeCreateWithoutOrderListInput | OrderTypeUncheckedCreateWithoutOrderListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrderUnitWhereUniqueInput | No |
| create | OrderUnitCreateWithoutOrderListInput | OrderUnitUncheckedCreateWithoutOrderListInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | ConceptUpdateWithoutOrderListInput | ConceptUncheckedUpdateWithoutOrderListInput | No |
| create | ConceptCreateWithoutOrderListInput | ConceptUncheckedCreateWithoutOrderListInput | No |
| where | ConceptWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ConceptWhereInput | No |
| data | ConceptUpdateWithoutOrderListInput | ConceptUncheckedUpdateWithoutOrderListInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | EncounterUpdateWithoutOrderListInput | EncounterUncheckedUpdateWithoutOrderListInput | No |
| create | EncounterCreateWithoutOrderListInput | EncounterUncheckedCreateWithoutOrderListInput | No |
| where | EncounterWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EncounterWhereInput | No |
| data | EncounterUpdateWithoutOrderListInput | EncounterUncheckedUpdateWithoutOrderListInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | OrderFrequencyUpdateWithoutOrderListInput | OrderFrequencyUncheckedUpdateWithoutOrderListInput | No |
| create | OrderFrequencyCreateWithoutOrderListInput | OrderFrequencyUncheckedCreateWithoutOrderListInput | No |
| where | OrderFrequencyWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrderFrequencyWhereInput | No |
| data | OrderFrequencyUpdateWithoutOrderListInput | OrderFrequencyUncheckedUpdateWithoutOrderListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | OrderRouteUpdateWithoutOrderListInput | OrderRouteUncheckedUpdateWithoutOrderListInput | No |
| create | OrderRouteCreateWithoutOrderListInput | OrderRouteUncheckedCreateWithoutOrderListInput | No |
| where | OrderRouteWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrderRouteWhereInput | No |
| data | OrderRouteUpdateWithoutOrderListInput | OrderRouteUncheckedUpdateWithoutOrderListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | OrderTypeUpdateWithoutOrderListInput | OrderTypeUncheckedUpdateWithoutOrderListInput | No |
| create | OrderTypeCreateWithoutOrderListInput | OrderTypeUncheckedCreateWithoutOrderListInput | No |
| where | OrderTypeWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrderTypeWhereInput | No |
| data | OrderTypeUpdateWithoutOrderListInput | OrderTypeUncheckedUpdateWithoutOrderListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | OrderUnitUpdateWithoutOrderListInput | OrderUnitUncheckedUpdateWithoutOrderListInput | No |
| create | OrderUnitCreateWithoutOrderListInput | OrderUnitUncheckedCreateWithoutOrderListInput | No |
| where | OrderUnitWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrderUnitWhereInput | No |
| data | OrderUnitUpdateWithoutOrderListInput | OrderUnitUncheckedUpdateWithoutOrderListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| orderDatetime | DateTime | No |
| instructions | String | No |
| dosage | String | No |
| route | String | No |
| frequency | String | No |
| asNeeded | Boolean | No |
| prn | Boolean | No |
| quantity | Int | No |
| units | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| concept | ConceptCreateNestedOneWithoutOrderListInput | No |
| encounter | EncounterCreateNestedOneWithoutOrderListInput | No |
| OrderRoute | OrderRouteCreateNestedOneWithoutOrderListInput | No |
| OrderType | OrderTypeCreateNestedOneWithoutOrderListInput | No |
| OrderUnit | OrderUnitCreateNestedOneWithoutOrderListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| conceptId | String | No |
| encounterId | String | No |
| orderDatetime | DateTime | No |
| instructions | String | No |
| dosage | String | No |
| route | String | No |
| frequency | String | No |
| asNeeded | Boolean | No |
| prn | Boolean | No |
| quantity | Int | No |
| units | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| orderRouteId | String | Null | Yes |
| orderTypeId | String | Null | Yes |
| orderUnitId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | OrderWhereUniqueInput | No |
| create | OrderCreateWithoutOrderFrequencyInput | OrderUncheckedCreateWithoutOrderFrequencyInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | OrderCreateManyOrderFrequencyInput | OrderCreateManyOrderFrequencyInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrderWhereUniqueInput | No |
| update | OrderUpdateWithoutOrderFrequencyInput | OrderUncheckedUpdateWithoutOrderFrequencyInput | No |
| create | OrderCreateWithoutOrderFrequencyInput | OrderUncheckedCreateWithoutOrderFrequencyInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrderWhereUniqueInput | No |
| data | OrderUpdateWithoutOrderFrequencyInput | OrderUncheckedUpdateWithoutOrderFrequencyInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrderScalarWhereInput | No |
| data | OrderUpdateManyMutationInput | OrderUncheckedUpdateManyWithoutOrderFrequencyInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| orderDatetime | DateTime | No |
| instructions | String | No |
| dosage | String | No |
| route | String | No |
| frequency | String | No |
| asNeeded | Boolean | No |
| prn | Boolean | No |
| quantity | Int | No |
| units | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| concept | ConceptCreateNestedOneWithoutOrderListInput | No |
| encounter | EncounterCreateNestedOneWithoutOrderListInput | No |
| OrderFrequency | OrderFrequencyCreateNestedOneWithoutOrderListInput | No |
| OrderType | OrderTypeCreateNestedOneWithoutOrderListInput | No |
| OrderUnit | OrderUnitCreateNestedOneWithoutOrderListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| conceptId | String | No |
| encounterId | String | No |
| orderDatetime | DateTime | No |
| instructions | String | No |
| dosage | String | No |
| route | String | No |
| frequency | String | No |
| asNeeded | Boolean | No |
| prn | Boolean | No |
| quantity | Int | No |
| units | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| orderFrequencyId | String | Null | Yes |
| orderTypeId | String | Null | Yes |
| orderUnitId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | OrderWhereUniqueInput | No |
| create | OrderCreateWithoutOrderRouteInput | OrderUncheckedCreateWithoutOrderRouteInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | OrderCreateManyOrderRouteInput | OrderCreateManyOrderRouteInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrderWhereUniqueInput | No |
| update | OrderUpdateWithoutOrderRouteInput | OrderUncheckedUpdateWithoutOrderRouteInput | No |
| create | OrderCreateWithoutOrderRouteInput | OrderUncheckedCreateWithoutOrderRouteInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrderWhereUniqueInput | No |
| data | OrderUpdateWithoutOrderRouteInput | OrderUncheckedUpdateWithoutOrderRouteInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrderScalarWhereInput | No |
| data | OrderUpdateManyMutationInput | OrderUncheckedUpdateManyWithoutOrderRouteInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| orderDatetime | DateTime | No |
| instructions | String | No |
| dosage | String | No |
| route | String | No |
| frequency | String | No |
| asNeeded | Boolean | No |
| prn | Boolean | No |
| quantity | Int | No |
| units | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| concept | ConceptCreateNestedOneWithoutOrderListInput | No |
| encounter | EncounterCreateNestedOneWithoutOrderListInput | No |
| OrderFrequency | OrderFrequencyCreateNestedOneWithoutOrderListInput | No |
| OrderRoute | OrderRouteCreateNestedOneWithoutOrderListInput | No |
| OrderUnit | OrderUnitCreateNestedOneWithoutOrderListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| conceptId | String | No |
| encounterId | String | No |
| orderDatetime | DateTime | No |
| instructions | String | No |
| dosage | String | No |
| route | String | No |
| frequency | String | No |
| asNeeded | Boolean | No |
| prn | Boolean | No |
| quantity | Int | No |
| units | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| orderFrequencyId | String | Null | Yes |
| orderRouteId | String | Null | Yes |
| orderUnitId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | OrderWhereUniqueInput | No |
| create | OrderCreateWithoutOrderTypeInput | OrderUncheckedCreateWithoutOrderTypeInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | OrderCreateManyOrderTypeInput | OrderCreateManyOrderTypeInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrderWhereUniqueInput | No |
| update | OrderUpdateWithoutOrderTypeInput | OrderUncheckedUpdateWithoutOrderTypeInput | No |
| create | OrderCreateWithoutOrderTypeInput | OrderUncheckedCreateWithoutOrderTypeInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrderWhereUniqueInput | No |
| data | OrderUpdateWithoutOrderTypeInput | OrderUncheckedUpdateWithoutOrderTypeInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrderScalarWhereInput | No |
| data | OrderUpdateManyMutationInput | OrderUncheckedUpdateManyWithoutOrderTypeInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| orderDatetime | DateTime | No |
| instructions | String | No |
| dosage | String | No |
| route | String | No |
| frequency | String | No |
| asNeeded | Boolean | No |
| prn | Boolean | No |
| quantity | Int | No |
| units | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| concept | ConceptCreateNestedOneWithoutOrderListInput | No |
| encounter | EncounterCreateNestedOneWithoutOrderListInput | No |
| OrderFrequency | OrderFrequencyCreateNestedOneWithoutOrderListInput | No |
| OrderRoute | OrderRouteCreateNestedOneWithoutOrderListInput | No |
| OrderType | OrderTypeCreateNestedOneWithoutOrderListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| conceptId | String | No |
| encounterId | String | No |
| orderDatetime | DateTime | No |
| instructions | String | No |
| dosage | String | No |
| route | String | No |
| frequency | String | No |
| asNeeded | Boolean | No |
| prn | Boolean | No |
| quantity | Int | No |
| units | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| orderFrequencyId | String | Null | Yes |
| orderRouteId | String | Null | Yes |
| orderTypeId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | OrderWhereUniqueInput | No |
| create | OrderCreateWithoutOrderUnitInput | OrderUncheckedCreateWithoutOrderUnitInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | OrderCreateManyOrderUnitInput | OrderCreateManyOrderUnitInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrderWhereUniqueInput | No |
| update | OrderUpdateWithoutOrderUnitInput | OrderUncheckedUpdateWithoutOrderUnitInput | No |
| create | OrderCreateWithoutOrderUnitInput | OrderUncheckedCreateWithoutOrderUnitInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrderWhereUniqueInput | No |
| data | OrderUpdateWithoutOrderUnitInput | OrderUncheckedUpdateWithoutOrderUnitInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrderScalarWhereInput | No |
| data | OrderUpdateManyMutationInput | OrderUncheckedUpdateManyWithoutOrderUnitInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| answerConcept | ConceptCreateNestedOneWithoutAnswerListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| answerConceptId | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | ConceptAnswerWhereUniqueInput | No |
| create | ConceptAnswerCreateWithoutConceptInput | ConceptAnswerUncheckedCreateWithoutConceptInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | ConceptAnswerCreateManyConceptInput | ConceptAnswerCreateManyConceptInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| concept | ConceptCreateNestedOneWithoutMetaListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| conceptId | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | ConceptAnswerWhereUniqueInput | No |
| create | ConceptAnswerCreateWithoutAnswerConceptInput | ConceptAnswerUncheckedCreateWithoutAnswerConceptInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | ConceptAnswerCreateManyAnswerConceptInput | ConceptAnswerCreateManyAnswerConceptInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| fieldType | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| formList | FormCreateNestedManyWithoutDieldInput | No |
| fieldAnswerList | FieldAnswerCreateNestedManyWithoutFieldInput | No |
| fieldOptionList | FieldOptionCreateNestedManyWithoutFieldInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| fieldType | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| formList | FormUncheckedCreateNestedManyWithoutDieldInput | No |
| fieldAnswerList | FieldAnswerUncheckedCreateNestedManyWithoutFieldInput | No |
| fieldOptionList | FieldOptionUncheckedCreateNestedManyWithoutFieldInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FieldWhereUniqueInput | No |
| create | FieldCreateWithoutConceptInput | FieldUncheckedCreateWithoutConceptInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | FieldCreateManyConceptInput | FieldCreateManyConceptInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| obsDatetime | DateTime | No |
| valueDatetime | DateTime | No |
| valueNumeric | Float | No |
| valueText | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| encounter | EncounterCreateNestedOneWithoutObsListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| encounterId | String | No |
| obsDatetime | DateTime | No |
| valueDatetime | DateTime | No |
| valueNumeric | Float | No |
| valueText | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | ObsWhereUniqueInput | No |
| create | ObsCreateWithoutConceptInput | ObsUncheckedCreateWithoutConceptInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | ObsCreateManyConceptInput | ObsCreateManyConceptInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| orderDatetime | DateTime | No |
| instructions | String | No |
| dosage | String | No |
| route | String | No |
| frequency | String | No |
| asNeeded | Boolean | No |
| prn | Boolean | No |
| quantity | Int | No |
| units | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| encounter | EncounterCreateNestedOneWithoutOrderListInput | No |
| OrderFrequency | OrderFrequencyCreateNestedOneWithoutOrderListInput | No |
| OrderRoute | OrderRouteCreateNestedOneWithoutOrderListInput | No |
| OrderType | OrderTypeCreateNestedOneWithoutOrderListInput | No |
| OrderUnit | OrderUnitCreateNestedOneWithoutOrderListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| encounterId | String | No |
| orderDatetime | DateTime | No |
| instructions | String | No |
| dosage | String | No |
| route | String | No |
| frequency | String | No |
| asNeeded | Boolean | No |
| prn | Boolean | No |
| quantity | Int | No |
| units | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| orderFrequencyId | String | Null | Yes |
| orderRouteId | String | Null | Yes |
| orderTypeId | String | Null | Yes |
| orderUnitId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | OrderWhereUniqueInput | No |
| create | OrderCreateWithoutConceptInput | OrderUncheckedCreateWithoutConceptInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | OrderCreateManyConceptInput | OrderCreateManyConceptInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | ConceptClassWhereUniqueInput | No |
| create | ConceptClassCreateWithoutConceptListInput | ConceptClassUncheckedCreateWithoutConceptListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | ConceptDatatypeWhereUniqueInput | No |
| create | ConceptDatatypeCreateWithoutConceptListInput | ConceptDatatypeUncheckedCreateWithoutConceptListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | ConceptMapWhereUniqueInput | No |
| create | ConceptMapCreateWithoutConceptListInput | ConceptMapUncheckedCreateWithoutConceptListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| locale | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| locale | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | ConceptNameWhereUniqueInput | No |
| create | ConceptNameCreateWithoutConceptInput | ConceptNameUncheckedCreateWithoutConceptInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | ConceptNameCreateManyConceptInput | ConceptNameCreateManyConceptInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| hiAbsolute | Float | No |
| hiCritical | Float | No |
| hiNormal | Float | No |
| lowAbsolute | Float | No |
| lowCritical | Float | No |
| lowNormal | Float | No |
| units | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| hiAbsolute | Float | No |
| hiCritical | Float | No |
| hiNormal | Float | No |
| lowAbsolute | Float | No |
| lowCritical | Float | No |
| lowNormal | Float | No |
| units | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | ConceptNumericWhereUniqueInput | No |
| create | ConceptNumericCreateWithoutConceptInput | ConceptNumericUncheckedCreateWithoutConceptInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | ConceptNumericCreateManyConceptInput | ConceptNumericCreateManyConceptInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | ConceptProposalWhereUniqueInput | No |
| create | ConceptProposalCreateWithoutConceptInput | ConceptProposalUncheckedCreateWithoutConceptInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | ConceptProposalCreateManyConceptInput | ConceptProposalCreateManyConceptInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | ConceptSetWhereUniqueInput | No |
| create | ConceptSetCreateWithoutConceptListInput | ConceptSetUncheckedCreateWithoutConceptListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | ConceptSourceWhereUniqueInput | No |
| create | ConceptSourceCreateWithoutConceptListInput | ConceptSourceUncheckedCreateWithoutConceptListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| word | String | No |
| locale | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| word | String | No |
| locale | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | ConceptWordWhereUniqueInput | No |
| create | ConceptWordCreateWithoutConceptInput | ConceptWordUncheckedCreateWithoutConceptInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | ConceptWordCreateManyConceptInput | ConceptWordCreateManyConceptInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | ConceptAnswerWhereUniqueInput | No |
| update | ConceptAnswerUpdateWithoutConceptInput | ConceptAnswerUncheckedUpdateWithoutConceptInput | No |
| create | ConceptAnswerCreateWithoutConceptInput | ConceptAnswerUncheckedCreateWithoutConceptInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ConceptAnswerWhereUniqueInput | No |
| data | ConceptAnswerUpdateWithoutConceptInput | ConceptAnswerUncheckedUpdateWithoutConceptInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ConceptAnswerScalarWhereInput | No |
| data | ConceptAnswerUpdateManyMutationInput | ConceptAnswerUncheckedUpdateManyWithoutConceptInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ConceptAnswerScalarWhereInput | ConceptAnswerScalarWhereInput[] | No |
| OR | ConceptAnswerScalarWhereInput[] | No |
| NOT | ConceptAnswerScalarWhereInput | ConceptAnswerScalarWhereInput[] | No |
| id | StringFilter | String | No |
| uuid | StringFilter | String | No |
| conceptId | StringFilter | String | No |
| answerConceptId | StringFilter | String | No |
| creator | StringFilter | String | No |
| dateCreated | DateTimeFilter | DateTime | No |
| lastChangedBy | StringFilter | String | No |
| lastChangedDate | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | ConceptAnswerWhereUniqueInput | No |
| update | ConceptAnswerUpdateWithoutAnswerConceptInput | ConceptAnswerUncheckedUpdateWithoutAnswerConceptInput | No |
| create | ConceptAnswerCreateWithoutAnswerConceptInput | ConceptAnswerUncheckedCreateWithoutAnswerConceptInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ConceptAnswerWhereUniqueInput | No |
| data | ConceptAnswerUpdateWithoutAnswerConceptInput | ConceptAnswerUncheckedUpdateWithoutAnswerConceptInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ConceptAnswerScalarWhereInput | No |
| data | ConceptAnswerUpdateManyMutationInput | ConceptAnswerUncheckedUpdateManyWithoutAnswerConceptInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FieldWhereUniqueInput | No |
| update | FieldUpdateWithoutConceptInput | FieldUncheckedUpdateWithoutConceptInput | No |
| create | FieldCreateWithoutConceptInput | FieldUncheckedCreateWithoutConceptInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FieldWhereUniqueInput | No |
| data | FieldUpdateWithoutConceptInput | FieldUncheckedUpdateWithoutConceptInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FieldScalarWhereInput | No |
| data | FieldUpdateManyMutationInput | FieldUncheckedUpdateManyWithoutConceptInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | FieldScalarWhereInput | FieldScalarWhereInput[] | No |
| OR | FieldScalarWhereInput[] | No |
| NOT | FieldScalarWhereInput | FieldScalarWhereInput[] | No |
| id | StringFilter | String | No |
| uuid | StringFilter | String | No |
| name | StringFilter | String | No |
| description | StringFilter | String | No |
| fieldType | StringFilter | String | No |
| conceptId | StringFilter | String | No |
| creator | StringFilter | String | No |
| dateCreated | DateTimeFilter | DateTime | No |
| lastChangedBy | StringFilter | String | No |
| lastChangedDate | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | ObsWhereUniqueInput | No |
| update | ObsUpdateWithoutConceptInput | ObsUncheckedUpdateWithoutConceptInput | No |
| create | ObsCreateWithoutConceptInput | ObsUncheckedCreateWithoutConceptInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ObsWhereUniqueInput | No |
| data | ObsUpdateWithoutConceptInput | ObsUncheckedUpdateWithoutConceptInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ObsScalarWhereInput | No |
| data | ObsUpdateManyMutationInput | ObsUncheckedUpdateManyWithoutConceptInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrderWhereUniqueInput | No |
| update | OrderUpdateWithoutConceptInput | OrderUncheckedUpdateWithoutConceptInput | No |
| create | OrderCreateWithoutConceptInput | OrderUncheckedCreateWithoutConceptInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrderWhereUniqueInput | No |
| data | OrderUpdateWithoutConceptInput | OrderUncheckedUpdateWithoutConceptInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrderScalarWhereInput | No |
| data | OrderUpdateManyMutationInput | OrderUncheckedUpdateManyWithoutConceptInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | ConceptClassUpdateWithoutConceptListInput | ConceptClassUncheckedUpdateWithoutConceptListInput | No |
| create | ConceptClassCreateWithoutConceptListInput | ConceptClassUncheckedCreateWithoutConceptListInput | No |
| where | ConceptClassWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ConceptClassWhereInput | No |
| data | ConceptClassUpdateWithoutConceptListInput | ConceptClassUncheckedUpdateWithoutConceptListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | ConceptDatatypeUpdateWithoutConceptListInput | ConceptDatatypeUncheckedUpdateWithoutConceptListInput | No |
| create | ConceptDatatypeCreateWithoutConceptListInput | ConceptDatatypeUncheckedCreateWithoutConceptListInput | No |
| where | ConceptDatatypeWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ConceptDatatypeWhereInput | No |
| data | ConceptDatatypeUpdateWithoutConceptListInput | ConceptDatatypeUncheckedUpdateWithoutConceptListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | ConceptMapUpdateWithoutConceptListInput | ConceptMapUncheckedUpdateWithoutConceptListInput | No |
| create | ConceptMapCreateWithoutConceptListInput | ConceptMapUncheckedCreateWithoutConceptListInput | No |
| where | ConceptMapWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ConceptMapWhereInput | No |
| data | ConceptMapUpdateWithoutConceptListInput | ConceptMapUncheckedUpdateWithoutConceptListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ConceptNameWhereUniqueInput | No |
| update | ConceptNameUpdateWithoutConceptInput | ConceptNameUncheckedUpdateWithoutConceptInput | No |
| create | ConceptNameCreateWithoutConceptInput | ConceptNameUncheckedCreateWithoutConceptInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ConceptNameWhereUniqueInput | No |
| data | ConceptNameUpdateWithoutConceptInput | ConceptNameUncheckedUpdateWithoutConceptInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ConceptNameScalarWhereInput | No |
| data | ConceptNameUpdateManyMutationInput | ConceptNameUncheckedUpdateManyWithoutConceptInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ConceptNameScalarWhereInput | ConceptNameScalarWhereInput[] | No |
| OR | ConceptNameScalarWhereInput[] | No |
| NOT | ConceptNameScalarWhereInput | ConceptNameScalarWhereInput[] | No |
| id | StringFilter | String | No |
| uuid | StringFilter | String | No |
| conceptId | StringFilter | String | No |
| name | StringFilter | String | No |
| locale | StringFilter | String | No |
| creator | StringFilter | String | No |
| dateCreated | DateTimeFilter | DateTime | No |
| lastChangedBy | StringFilter | String | No |
| lastChangedDate | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | ConceptNumericWhereUniqueInput | No |
| update | ConceptNumericUpdateWithoutConceptInput | ConceptNumericUncheckedUpdateWithoutConceptInput | No |
| create | ConceptNumericCreateWithoutConceptInput | ConceptNumericUncheckedCreateWithoutConceptInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ConceptNumericWhereUniqueInput | No |
| data | ConceptNumericUpdateWithoutConceptInput | ConceptNumericUncheckedUpdateWithoutConceptInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ConceptNumericScalarWhereInput | No |
| data | ConceptNumericUpdateManyMutationInput | ConceptNumericUncheckedUpdateManyWithoutConceptInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ConceptNumericScalarWhereInput | ConceptNumericScalarWhereInput[] | No |
| OR | ConceptNumericScalarWhereInput[] | No |
| NOT | ConceptNumericScalarWhereInput | ConceptNumericScalarWhereInput[] | No |
| id | StringFilter | String | No |
| uuid | StringFilter | String | No |
| conceptId | StringFilter | String | No |
| hiAbsolute | FloatFilter | Float | No |
| hiCritical | FloatFilter | Float | No |
| hiNormal | FloatFilter | Float | No |
| lowAbsolute | FloatFilter | Float | No |
| lowCritical | FloatFilter | Float | No |
| lowNormal | FloatFilter | Float | No |
| units | StringFilter | String | No |
| creator | StringFilter | String | No |
| dateCreated | DateTimeFilter | DateTime | No |
| lastChangedBy | StringFilter | String | No |
| lastChangedDate | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | ConceptProposalWhereUniqueInput | No |
| update | ConceptProposalUpdateWithoutConceptInput | ConceptProposalUncheckedUpdateWithoutConceptInput | No |
| create | ConceptProposalCreateWithoutConceptInput | ConceptProposalUncheckedCreateWithoutConceptInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ConceptProposalWhereUniqueInput | No |
| data | ConceptProposalUpdateWithoutConceptInput | ConceptProposalUncheckedUpdateWithoutConceptInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ConceptProposalScalarWhereInput | No |
| data | ConceptProposalUpdateManyMutationInput | ConceptProposalUncheckedUpdateManyWithoutConceptInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ConceptProposalScalarWhereInput | ConceptProposalScalarWhereInput[] | No |
| OR | ConceptProposalScalarWhereInput[] | No |
| NOT | ConceptProposalScalarWhereInput | ConceptProposalScalarWhereInput[] | No |
| id | StringFilter | String | No |
| uuid | StringFilter | String | No |
| conceptId | StringFilter | String | No |
| name | StringFilter | String | No |
| description | StringFilter | String | No |
| creator | StringFilter | String | No |
| dateCreated | DateTimeFilter | DateTime | No |
| lastChangedBy | StringFilter | String | No |
| lastChangedDate | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| update | ConceptSetUpdateWithoutConceptListInput | ConceptSetUncheckedUpdateWithoutConceptListInput | No |
| create | ConceptSetCreateWithoutConceptListInput | ConceptSetUncheckedCreateWithoutConceptListInput | No |
| where | ConceptSetWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ConceptSetWhereInput | No |
| data | ConceptSetUpdateWithoutConceptListInput | ConceptSetUncheckedUpdateWithoutConceptListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | ConceptSourceUpdateWithoutConceptListInput | ConceptSourceUncheckedUpdateWithoutConceptListInput | No |
| create | ConceptSourceCreateWithoutConceptListInput | ConceptSourceUncheckedCreateWithoutConceptListInput | No |
| where | ConceptSourceWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ConceptSourceWhereInput | No |
| data | ConceptSourceUpdateWithoutConceptListInput | ConceptSourceUncheckedUpdateWithoutConceptListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ConceptWordWhereUniqueInput | No |
| update | ConceptWordUpdateWithoutConceptInput | ConceptWordUncheckedUpdateWithoutConceptInput | No |
| create | ConceptWordCreateWithoutConceptInput | ConceptWordUncheckedCreateWithoutConceptInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ConceptWordWhereUniqueInput | No |
| data | ConceptWordUpdateWithoutConceptInput | ConceptWordUncheckedUpdateWithoutConceptInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ConceptWordScalarWhereInput | No |
| data | ConceptWordUpdateManyMutationInput | ConceptWordUncheckedUpdateManyWithoutConceptInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ConceptWordScalarWhereInput | ConceptWordScalarWhereInput[] | No |
| OR | ConceptWordScalarWhereInput[] | No |
| NOT | ConceptWordScalarWhereInput | ConceptWordScalarWhereInput[] | No |
| id | StringFilter | String | No |
| uuid | StringFilter | String | No |
| conceptId | StringFilter | String | No |
| word | StringFilter | String | No |
| locale | StringFilter | String | No |
| creator | StringFilter | String | No |
| dateCreated | DateTimeFilter | DateTime | No |
| lastChangedBy | StringFilter | String | No |
| lastChangedDate | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| dataType | String | No |
| class | String | No |
| isRetired | Boolean | No |
| retiredBy | String | No |
| dateRetired | DateTime | No |
| retiredReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| conceptClassId | String | Null | Yes |
| conceptDatatypeId | String | Null | Yes |
| conceptMapId | String | Null | Yes |
| conceptSetId | String | Null | Yes |
| conceptSourceId | String | Null | Yes |
| answerList | ConceptAnswerUncheckedCreateNestedManyWithoutAnswerConceptInput | No |
| fieldList | FieldUncheckedCreateNestedManyWithoutConceptInput | No |
| obsList | ObsUncheckedCreateNestedManyWithoutConceptInput | No |
| orderList | OrderUncheckedCreateNestedManyWithoutConceptInput | No |
| conceptNameList | ConceptNameUncheckedCreateNestedManyWithoutConceptInput | No |
| conceptNumericList | ConceptNumericUncheckedCreateNestedManyWithoutConceptInput | No |
| conceptProposalList | ConceptProposalUncheckedCreateNestedManyWithoutConceptInput | No |
| conceptWordList | ConceptWordUncheckedCreateNestedManyWithoutConceptInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ConceptWhereUniqueInput | No |
| create | ConceptCreateWithoutMetaListInput | ConceptUncheckedCreateWithoutMetaListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| dataType | String | No |
| class | String | No |
| isRetired | Boolean | No |
| retiredBy | String | No |
| dateRetired | DateTime | No |
| retiredReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| conceptClassId | String | Null | Yes |
| conceptDatatypeId | String | Null | Yes |
| conceptMapId | String | Null | Yes |
| conceptSetId | String | Null | Yes |
| conceptSourceId | String | Null | Yes |
| metaList | ConceptAnswerUncheckedCreateNestedManyWithoutConceptInput | No |
| fieldList | FieldUncheckedCreateNestedManyWithoutConceptInput | No |
| obsList | ObsUncheckedCreateNestedManyWithoutConceptInput | No |
| orderList | OrderUncheckedCreateNestedManyWithoutConceptInput | No |
| conceptNameList | ConceptNameUncheckedCreateNestedManyWithoutConceptInput | No |
| conceptNumericList | ConceptNumericUncheckedCreateNestedManyWithoutConceptInput | No |
| conceptProposalList | ConceptProposalUncheckedCreateNestedManyWithoutConceptInput | No |
| conceptWordList | ConceptWordUncheckedCreateNestedManyWithoutConceptInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ConceptWhereUniqueInput | No |
| create | ConceptCreateWithoutAnswerListInput | ConceptUncheckedCreateWithoutAnswerListInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | ConceptUpdateWithoutMetaListInput | ConceptUncheckedUpdateWithoutMetaListInput | No |
| create | ConceptCreateWithoutMetaListInput | ConceptUncheckedCreateWithoutMetaListInput | No |
| where | ConceptWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ConceptWhereInput | No |
| data | ConceptUpdateWithoutMetaListInput | ConceptUncheckedUpdateWithoutMetaListInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | ConceptUpdateWithoutAnswerListInput | ConceptUncheckedUpdateWithoutAnswerListInput | No |
| create | ConceptCreateWithoutAnswerListInput | ConceptUncheckedCreateWithoutAnswerListInput | No |
| where | ConceptWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ConceptWhereInput | No |
| data | ConceptUpdateWithoutAnswerListInput | ConceptUncheckedUpdateWithoutAnswerListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| dataType | String | No |
| class | String | No |
| isRetired | Boolean | No |
| retiredBy | String | No |
| dateRetired | DateTime | No |
| retiredReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| conceptDatatypeId | String | Null | Yes |
| conceptMapId | String | Null | Yes |
| conceptSetId | String | Null | Yes |
| conceptSourceId | String | Null | Yes |
| metaList | ConceptAnswerUncheckedCreateNestedManyWithoutConceptInput | No |
| answerList | ConceptAnswerUncheckedCreateNestedManyWithoutAnswerConceptInput | No |
| fieldList | FieldUncheckedCreateNestedManyWithoutConceptInput | No |
| obsList | ObsUncheckedCreateNestedManyWithoutConceptInput | No |
| orderList | OrderUncheckedCreateNestedManyWithoutConceptInput | No |
| conceptNameList | ConceptNameUncheckedCreateNestedManyWithoutConceptInput | No |
| conceptNumericList | ConceptNumericUncheckedCreateNestedManyWithoutConceptInput | No |
| conceptProposalList | ConceptProposalUncheckedCreateNestedManyWithoutConceptInput | No |
| conceptWordList | ConceptWordUncheckedCreateNestedManyWithoutConceptInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ConceptWhereUniqueInput | No |
| create | ConceptCreateWithoutConceptClassInput | ConceptUncheckedCreateWithoutConceptClassInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | ConceptCreateManyConceptClassInput | ConceptCreateManyConceptClassInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | ConceptWhereUniqueInput | No |
| update | ConceptUpdateWithoutConceptClassInput | ConceptUncheckedUpdateWithoutConceptClassInput | No |
| create | ConceptCreateWithoutConceptClassInput | ConceptUncheckedCreateWithoutConceptClassInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ConceptWhereUniqueInput | No |
| data | ConceptUpdateWithoutConceptClassInput | ConceptUncheckedUpdateWithoutConceptClassInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ConceptScalarWhereInput | No |
| data | ConceptUpdateManyMutationInput | ConceptUncheckedUpdateManyWithoutConceptClassInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ConceptScalarWhereInput | ConceptScalarWhereInput[] | No |
| OR | ConceptScalarWhereInput[] | No |
| NOT | ConceptScalarWhereInput | ConceptScalarWhereInput[] | No |
| id | StringFilter | String | No |
| uuid | StringFilter | String | No |
| name | StringFilter | String | No |
| description | StringFilter | String | No |
| dataType | StringFilter | String | No |
| class | StringFilter | String | No |
| isRetired | BoolFilter | Boolean | No |
| retiredBy | StringFilter | String | No |
| dateRetired | DateTimeFilter | DateTime | No |
| retiredReason | StringFilter | String | No |
| creator | StringFilter | String | No |
| dateCreated | DateTimeFilter | DateTime | No |
| lastChangedBy | StringFilter | String | No |
| lastChangedDate | DateTimeFilter | DateTime | No |
| conceptClassId | StringNullableFilter | String | Null | Yes |
| conceptDatatypeId | StringNullableFilter | String | Null | Yes |
| conceptMapId | StringNullableFilter | String | Null | Yes |
| conceptSetId | StringNullableFilter | String | Null | Yes |
| conceptSourceId | StringNullableFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| dataType | String | No |
| class | String | No |
| isRetired | Boolean | No |
| retiredBy | String | No |
| dateRetired | DateTime | No |
| retiredReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| conceptClassId | String | Null | Yes |
| conceptMapId | String | Null | Yes |
| conceptSetId | String | Null | Yes |
| conceptSourceId | String | Null | Yes |
| metaList | ConceptAnswerUncheckedCreateNestedManyWithoutConceptInput | No |
| answerList | ConceptAnswerUncheckedCreateNestedManyWithoutAnswerConceptInput | No |
| fieldList | FieldUncheckedCreateNestedManyWithoutConceptInput | No |
| obsList | ObsUncheckedCreateNestedManyWithoutConceptInput | No |
| orderList | OrderUncheckedCreateNestedManyWithoutConceptInput | No |
| conceptNameList | ConceptNameUncheckedCreateNestedManyWithoutConceptInput | No |
| conceptNumericList | ConceptNumericUncheckedCreateNestedManyWithoutConceptInput | No |
| conceptProposalList | ConceptProposalUncheckedCreateNestedManyWithoutConceptInput | No |
| conceptWordList | ConceptWordUncheckedCreateNestedManyWithoutConceptInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ConceptWhereUniqueInput | No |
| create | ConceptCreateWithoutConceptDatatypeInput | ConceptUncheckedCreateWithoutConceptDatatypeInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | ConceptCreateManyConceptDatatypeInput | ConceptCreateManyConceptDatatypeInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | ConceptWhereUniqueInput | No |
| update | ConceptUpdateWithoutConceptDatatypeInput | ConceptUncheckedUpdateWithoutConceptDatatypeInput | No |
| create | ConceptCreateWithoutConceptDatatypeInput | ConceptUncheckedCreateWithoutConceptDatatypeInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ConceptWhereUniqueInput | No |
| data | ConceptUpdateWithoutConceptDatatypeInput | ConceptUncheckedUpdateWithoutConceptDatatypeInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ConceptScalarWhereInput | No |
| data | ConceptUpdateManyMutationInput | ConceptUncheckedUpdateManyWithoutConceptDatatypeInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| dataType | String | No |
| class | String | No |
| isRetired | Boolean | No |
| retiredBy | String | No |
| dateRetired | DateTime | No |
| retiredReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| conceptClassId | String | Null | Yes |
| conceptDatatypeId | String | Null | Yes |
| conceptSetId | String | Null | Yes |
| conceptSourceId | String | Null | Yes |
| metaList | ConceptAnswerUncheckedCreateNestedManyWithoutConceptInput | No |
| answerList | ConceptAnswerUncheckedCreateNestedManyWithoutAnswerConceptInput | No |
| fieldList | FieldUncheckedCreateNestedManyWithoutConceptInput | No |
| obsList | ObsUncheckedCreateNestedManyWithoutConceptInput | No |
| orderList | OrderUncheckedCreateNestedManyWithoutConceptInput | No |
| conceptNameList | ConceptNameUncheckedCreateNestedManyWithoutConceptInput | No |
| conceptNumericList | ConceptNumericUncheckedCreateNestedManyWithoutConceptInput | No |
| conceptProposalList | ConceptProposalUncheckedCreateNestedManyWithoutConceptInput | No |
| conceptWordList | ConceptWordUncheckedCreateNestedManyWithoutConceptInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ConceptWhereUniqueInput | No |
| create | ConceptCreateWithoutConceptMapInput | ConceptUncheckedCreateWithoutConceptMapInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | ConceptCreateManyConceptMapInput | ConceptCreateManyConceptMapInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | ConceptWhereUniqueInput | No |
| update | ConceptUpdateWithoutConceptMapInput | ConceptUncheckedUpdateWithoutConceptMapInput | No |
| create | ConceptCreateWithoutConceptMapInput | ConceptUncheckedCreateWithoutConceptMapInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ConceptWhereUniqueInput | No |
| data | ConceptUpdateWithoutConceptMapInput | ConceptUncheckedUpdateWithoutConceptMapInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ConceptScalarWhereInput | No |
| data | ConceptUpdateManyMutationInput | ConceptUncheckedUpdateManyWithoutConceptMapInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| dataType | String | No |
| class | String | No |
| isRetired | Boolean | No |
| retiredBy | String | No |
| dateRetired | DateTime | No |
| retiredReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| conceptClassId | String | Null | Yes |
| conceptDatatypeId | String | Null | Yes |
| conceptMapId | String | Null | Yes |
| conceptSetId | String | Null | Yes |
| conceptSourceId | String | Null | Yes |
| metaList | ConceptAnswerUncheckedCreateNestedManyWithoutConceptInput | No |
| answerList | ConceptAnswerUncheckedCreateNestedManyWithoutAnswerConceptInput | No |
| fieldList | FieldUncheckedCreateNestedManyWithoutConceptInput | No |
| obsList | ObsUncheckedCreateNestedManyWithoutConceptInput | No |
| orderList | OrderUncheckedCreateNestedManyWithoutConceptInput | No |
| conceptNumericList | ConceptNumericUncheckedCreateNestedManyWithoutConceptInput | No |
| conceptProposalList | ConceptProposalUncheckedCreateNestedManyWithoutConceptInput | No |
| conceptWordList | ConceptWordUncheckedCreateNestedManyWithoutConceptInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ConceptWhereUniqueInput | No |
| create | ConceptCreateWithoutConceptNameListInput | ConceptUncheckedCreateWithoutConceptNameListInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | ConceptUpdateWithoutConceptNameListInput | ConceptUncheckedUpdateWithoutConceptNameListInput | No |
| create | ConceptCreateWithoutConceptNameListInput | ConceptUncheckedCreateWithoutConceptNameListInput | No |
| where | ConceptWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ConceptWhereInput | No |
| data | ConceptUpdateWithoutConceptNameListInput | ConceptUncheckedUpdateWithoutConceptNameListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| dataType | String | No |
| class | String | No |
| isRetired | Boolean | No |
| retiredBy | String | No |
| dateRetired | DateTime | No |
| retiredReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| conceptClassId | String | Null | Yes |
| conceptDatatypeId | String | Null | Yes |
| conceptMapId | String | Null | Yes |
| conceptSetId | String | Null | Yes |
| conceptSourceId | String | Null | Yes |
| metaList | ConceptAnswerUncheckedCreateNestedManyWithoutConceptInput | No |
| answerList | ConceptAnswerUncheckedCreateNestedManyWithoutAnswerConceptInput | No |
| fieldList | FieldUncheckedCreateNestedManyWithoutConceptInput | No |
| obsList | ObsUncheckedCreateNestedManyWithoutConceptInput | No |
| orderList | OrderUncheckedCreateNestedManyWithoutConceptInput | No |
| conceptNameList | ConceptNameUncheckedCreateNestedManyWithoutConceptInput | No |
| conceptProposalList | ConceptProposalUncheckedCreateNestedManyWithoutConceptInput | No |
| conceptWordList | ConceptWordUncheckedCreateNestedManyWithoutConceptInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ConceptWhereUniqueInput | No |
| create | ConceptCreateWithoutConceptNumericListInput | ConceptUncheckedCreateWithoutConceptNumericListInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | ConceptUpdateWithoutConceptNumericListInput | ConceptUncheckedUpdateWithoutConceptNumericListInput | No |
| create | ConceptCreateWithoutConceptNumericListInput | ConceptUncheckedCreateWithoutConceptNumericListInput | No |
| where | ConceptWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ConceptWhereInput | No |
| data | ConceptUpdateWithoutConceptNumericListInput | ConceptUncheckedUpdateWithoutConceptNumericListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| dataType | String | No |
| class | String | No |
| isRetired | Boolean | No |
| retiredBy | String | No |
| dateRetired | DateTime | No |
| retiredReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| conceptClassId | String | Null | Yes |
| conceptDatatypeId | String | Null | Yes |
| conceptMapId | String | Null | Yes |
| conceptSetId | String | Null | Yes |
| conceptSourceId | String | Null | Yes |
| metaList | ConceptAnswerUncheckedCreateNestedManyWithoutConceptInput | No |
| answerList | ConceptAnswerUncheckedCreateNestedManyWithoutAnswerConceptInput | No |
| fieldList | FieldUncheckedCreateNestedManyWithoutConceptInput | No |
| obsList | ObsUncheckedCreateNestedManyWithoutConceptInput | No |
| orderList | OrderUncheckedCreateNestedManyWithoutConceptInput | No |
| conceptNameList | ConceptNameUncheckedCreateNestedManyWithoutConceptInput | No |
| conceptNumericList | ConceptNumericUncheckedCreateNestedManyWithoutConceptInput | No |
| conceptWordList | ConceptWordUncheckedCreateNestedManyWithoutConceptInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ConceptWhereUniqueInput | No |
| create | ConceptCreateWithoutConceptProposalListInput | ConceptUncheckedCreateWithoutConceptProposalListInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | ConceptUpdateWithoutConceptProposalListInput | ConceptUncheckedUpdateWithoutConceptProposalListInput | No |
| create | ConceptCreateWithoutConceptProposalListInput | ConceptUncheckedCreateWithoutConceptProposalListInput | No |
| where | ConceptWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ConceptWhereInput | No |
| data | ConceptUpdateWithoutConceptProposalListInput | ConceptUncheckedUpdateWithoutConceptProposalListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| dataType | String | No |
| class | String | No |
| isRetired | Boolean | No |
| retiredBy | String | No |
| dateRetired | DateTime | No |
| retiredReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| conceptClassId | String | Null | Yes |
| conceptDatatypeId | String | Null | Yes |
| conceptMapId | String | Null | Yes |
| conceptSourceId | String | Null | Yes |
| metaList | ConceptAnswerUncheckedCreateNestedManyWithoutConceptInput | No |
| answerList | ConceptAnswerUncheckedCreateNestedManyWithoutAnswerConceptInput | No |
| fieldList | FieldUncheckedCreateNestedManyWithoutConceptInput | No |
| obsList | ObsUncheckedCreateNestedManyWithoutConceptInput | No |
| orderList | OrderUncheckedCreateNestedManyWithoutConceptInput | No |
| conceptNameList | ConceptNameUncheckedCreateNestedManyWithoutConceptInput | No |
| conceptNumericList | ConceptNumericUncheckedCreateNestedManyWithoutConceptInput | No |
| conceptProposalList | ConceptProposalUncheckedCreateNestedManyWithoutConceptInput | No |
| conceptWordList | ConceptWordUncheckedCreateNestedManyWithoutConceptInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ConceptWhereUniqueInput | No |
| create | ConceptCreateWithoutConceptSetInput | ConceptUncheckedCreateWithoutConceptSetInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | ConceptCreateManyConceptSetInput | ConceptCreateManyConceptSetInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | ConceptWhereUniqueInput | No |
| update | ConceptUpdateWithoutConceptSetInput | ConceptUncheckedUpdateWithoutConceptSetInput | No |
| create | ConceptCreateWithoutConceptSetInput | ConceptUncheckedCreateWithoutConceptSetInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ConceptWhereUniqueInput | No |
| data | ConceptUpdateWithoutConceptSetInput | ConceptUncheckedUpdateWithoutConceptSetInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ConceptScalarWhereInput | No |
| data | ConceptUpdateManyMutationInput | ConceptUncheckedUpdateManyWithoutConceptSetInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| dataType | String | No |
| class | String | No |
| isRetired | Boolean | No |
| retiredBy | String | No |
| dateRetired | DateTime | No |
| retiredReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| conceptClassId | String | Null | Yes |
| conceptDatatypeId | String | Null | Yes |
| conceptMapId | String | Null | Yes |
| conceptSetId | String | Null | Yes |
| metaList | ConceptAnswerUncheckedCreateNestedManyWithoutConceptInput | No |
| answerList | ConceptAnswerUncheckedCreateNestedManyWithoutAnswerConceptInput | No |
| fieldList | FieldUncheckedCreateNestedManyWithoutConceptInput | No |
| obsList | ObsUncheckedCreateNestedManyWithoutConceptInput | No |
| orderList | OrderUncheckedCreateNestedManyWithoutConceptInput | No |
| conceptNameList | ConceptNameUncheckedCreateNestedManyWithoutConceptInput | No |
| conceptNumericList | ConceptNumericUncheckedCreateNestedManyWithoutConceptInput | No |
| conceptProposalList | ConceptProposalUncheckedCreateNestedManyWithoutConceptInput | No |
| conceptWordList | ConceptWordUncheckedCreateNestedManyWithoutConceptInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ConceptWhereUniqueInput | No |
| create | ConceptCreateWithoutConceptSourceInput | ConceptUncheckedCreateWithoutConceptSourceInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | ConceptCreateManyConceptSourceInput | ConceptCreateManyConceptSourceInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | ConceptWhereUniqueInput | No |
| update | ConceptUpdateWithoutConceptSourceInput | ConceptUncheckedUpdateWithoutConceptSourceInput | No |
| create | ConceptCreateWithoutConceptSourceInput | ConceptUncheckedCreateWithoutConceptSourceInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ConceptWhereUniqueInput | No |
| data | ConceptUpdateWithoutConceptSourceInput | ConceptUncheckedUpdateWithoutConceptSourceInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ConceptScalarWhereInput | No |
| data | ConceptUpdateManyMutationInput | ConceptUncheckedUpdateManyWithoutConceptSourceInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| dataType | String | No |
| class | String | No |
| isRetired | Boolean | No |
| retiredBy | String | No |
| dateRetired | DateTime | No |
| retiredReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| conceptClassId | String | Null | Yes |
| conceptDatatypeId | String | Null | Yes |
| conceptMapId | String | Null | Yes |
| conceptSetId | String | Null | Yes |
| conceptSourceId | String | Null | Yes |
| metaList | ConceptAnswerUncheckedCreateNestedManyWithoutConceptInput | No |
| answerList | ConceptAnswerUncheckedCreateNestedManyWithoutAnswerConceptInput | No |
| fieldList | FieldUncheckedCreateNestedManyWithoutConceptInput | No |
| obsList | ObsUncheckedCreateNestedManyWithoutConceptInput | No |
| orderList | OrderUncheckedCreateNestedManyWithoutConceptInput | No |
| conceptNameList | ConceptNameUncheckedCreateNestedManyWithoutConceptInput | No |
| conceptNumericList | ConceptNumericUncheckedCreateNestedManyWithoutConceptInput | No |
| conceptProposalList | ConceptProposalUncheckedCreateNestedManyWithoutConceptInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ConceptWhereUniqueInput | No |
| create | ConceptCreateWithoutConceptWordListInput | ConceptUncheckedCreateWithoutConceptWordListInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | ConceptUpdateWithoutConceptWordListInput | ConceptUncheckedUpdateWithoutConceptWordListInput | No |
| create | ConceptCreateWithoutConceptWordListInput | ConceptUncheckedCreateWithoutConceptWordListInput | No |
| where | ConceptWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ConceptWhereInput | No |
| data | ConceptUpdateWithoutConceptWordListInput | ConceptUncheckedUpdateWithoutConceptWordListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| form | FormCreateNestedOneWithoutFormResourceListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| formId | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | FormResourceWhereUniqueInput | No |
| create | FormResourceCreateWithoutResourceInput | FormResourceUncheckedCreateWithoutResourceInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | FormResourceCreateManyResourceInput | FormResourceCreateManyResourceInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | FormResourceWhereUniqueInput | No |
| update | FormResourceUpdateWithoutResourceInput | FormResourceUncheckedUpdateWithoutResourceInput | No |
| create | FormResourceCreateWithoutResourceInput | FormResourceUncheckedCreateWithoutResourceInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FormResourceWhereUniqueInput | No |
| data | FormResourceUpdateWithoutResourceInput | FormResourceUncheckedUpdateWithoutResourceInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FormResourceScalarWhereInput | No |
| data | FormResourceUpdateManyMutationInput | FormResourceUncheckedUpdateManyWithoutResourceInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | BlogPostAuthorWhereUniqueInput | No |
| create | BlogPostAuthorCreateWithoutBlogPostListInput | BlogPostAuthorUncheckedCreateWithoutBlogPostListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| latitude | Float | No |
| longitude | Float | No |
| startTime | Float | No |
| pauseTime | Float | Null | Yes |
| stopTime | Float | No |
| timezone | String | No |
| blogPostId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| latitude | Float | No |
| longitude | Float | No |
| startTime | Float | No |
| pauseTime | Float | Null | Yes |
| stopTime | Float | No |
| timezone | String | No |
| blogPostId | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | SpaceTimeCoordinatesWhereUniqueInput | No |
| create | SpaceTimeCoordinatesCreateWithoutBlogPostInput | SpaceTimeCoordinatesUncheckedCreateWithoutBlogPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| tag | BlogPostTagCreateNestedOneWithoutPostArrowListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| tagId | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | BlogPostTagArrowWhereUniqueInput | No |
| create | BlogPostTagArrowCreateWithoutPostInput | BlogPostTagArrowUncheckedCreateWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | BlogPostTagArrowCreateManyPostInput | BlogPostTagArrowCreateManyPostInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| update | BlogPostAuthorUpdateWithoutBlogPostListInput | BlogPostAuthorUncheckedUpdateWithoutBlogPostListInput | No |
| create | BlogPostAuthorCreateWithoutBlogPostListInput | BlogPostAuthorUncheckedCreateWithoutBlogPostListInput | No |
| where | BlogPostAuthorWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BlogPostAuthorWhereInput | No |
| data | BlogPostAuthorUpdateWithoutBlogPostListInput | BlogPostAuthorUncheckedUpdateWithoutBlogPostListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | SpaceTimeCoordinatesWhereInput | No |
| data | SpaceTimeCoordinatesUpdateWithoutBlogPostInput | SpaceTimeCoordinatesUncheckedUpdateWithoutBlogPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| latitude | Float | FloatFieldUpdateOperationsInput | No |
| longitude | Float | FloatFieldUpdateOperationsInput | No |
| startTime | Float | FloatFieldUpdateOperationsInput | No |
| pauseTime | Float | NullableFloatFieldUpdateOperationsInput | Null | Yes |
| stopTime | Float | FloatFieldUpdateOperationsInput | No |
| timezone | String | StringFieldUpdateOperationsInput | No |
| blogPostId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| latitude | Float | FloatFieldUpdateOperationsInput | No |
| longitude | Float | FloatFieldUpdateOperationsInput | No |
| startTime | Float | FloatFieldUpdateOperationsInput | No |
| pauseTime | Float | NullableFloatFieldUpdateOperationsInput | Null | Yes |
| stopTime | Float | FloatFieldUpdateOperationsInput | No |
| timezone | String | StringFieldUpdateOperationsInput | No |
| blogPostId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BlogPostTagArrowWhereUniqueInput | No |
| update | BlogPostTagArrowUpdateWithoutPostInput | BlogPostTagArrowUncheckedUpdateWithoutPostInput | No |
| create | BlogPostTagArrowCreateWithoutPostInput | BlogPostTagArrowUncheckedCreateWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BlogPostTagArrowWhereUniqueInput | No |
| data | BlogPostTagArrowUpdateWithoutPostInput | BlogPostTagArrowUncheckedUpdateWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BlogPostTagArrowScalarWhereInput | No |
| data | BlogPostTagArrowUpdateManyMutationInput | BlogPostTagArrowUncheckedUpdateManyWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | BlogPostTagArrowScalarWhereInput | BlogPostTagArrowScalarWhereInput[] | No |
| OR | BlogPostTagArrowScalarWhereInput[] | No |
| NOT | BlogPostTagArrowScalarWhereInput | BlogPostTagArrowScalarWhereInput[] | No |
| id | StringFilter | String | No |
| postId | StringFilter | String | No |
| tagId | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| post | BlogPostCreateNestedOneWithoutTagArrowListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| postId | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | BlogPostTagArrowWhereUniqueInput | No |
| create | BlogPostTagArrowCreateWithoutTagInput | BlogPostTagArrowUncheckedCreateWithoutTagInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | BlogPostTagArrowCreateManyTagInput | BlogPostTagArrowCreateManyTagInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | BlogPostTagArrowWhereUniqueInput | No |
| update | BlogPostTagArrowUpdateWithoutTagInput | BlogPostTagArrowUncheckedUpdateWithoutTagInput | No |
| create | BlogPostTagArrowCreateWithoutTagInput | BlogPostTagArrowUncheckedCreateWithoutTagInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BlogPostTagArrowWhereUniqueInput | No |
| data | BlogPostTagArrowUpdateWithoutTagInput | BlogPostTagArrowUncheckedUpdateWithoutTagInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BlogPostTagArrowScalarWhereInput | No |
| data | BlogPostTagArrowUpdateManyMutationInput | BlogPostTagArrowUncheckedUpdateManyWithoutTagInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| title | String | No |
| content | String | No |
| context | JsonNullValueInput | Json | No |
| author | BlogPostAuthorCreateNestedOneWithoutBlogPostListInput | No |
| spaceTimeCoordinates | SpaceTimeCoordinatesCreateNestedOneWithoutBlogPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| title | String | No |
| content | String | No |
| context | JsonNullValueInput | Json | No |
| authorId | String | No |
| spaceTimeCoordinatesId | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | BlogPostWhereUniqueInput | No |
| create | BlogPostCreateWithoutTagArrowListInput | BlogPostUncheckedCreateWithoutTagArrowListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| descriptor | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| descriptor | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | BlogPostTagWhereUniqueInput | No |
| create | BlogPostTagCreateWithoutPostArrowListInput | BlogPostTagUncheckedCreateWithoutPostArrowListInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | BlogPostUpdateWithoutTagArrowListInput | BlogPostUncheckedUpdateWithoutTagArrowListInput | No |
| create | BlogPostCreateWithoutTagArrowListInput | BlogPostUncheckedCreateWithoutTagArrowListInput | No |
| where | BlogPostWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BlogPostWhereInput | No |
| data | BlogPostUpdateWithoutTagArrowListInput | BlogPostUncheckedUpdateWithoutTagArrowListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| content | String | StringFieldUpdateOperationsInput | No |
| context | JsonNullValueInput | Json | No |
| author | BlogPostAuthorUpdateOneRequiredWithoutBlogPostListNestedInput | No |
| spaceTimeCoordinates | SpaceTimeCoordinatesUpdateOneRequiredWithoutBlogPostNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| content | String | StringFieldUpdateOperationsInput | No |
| context | JsonNullValueInput | Json | No |
| authorId | String | StringFieldUpdateOperationsInput | No |
| spaceTimeCoordinatesId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | BlogPostTagUpdateWithoutPostArrowListInput | BlogPostTagUncheckedUpdateWithoutPostArrowListInput | No |
| create | BlogPostTagCreateWithoutPostArrowListInput | BlogPostTagUncheckedCreateWithoutPostArrowListInput | No |
| where | BlogPostTagWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BlogPostTagWhereInput | No |
| data | BlogPostTagUpdateWithoutPostArrowListInput | BlogPostTagUncheckedUpdateWithoutPostArrowListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| descriptor | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| descriptor | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| title | String | No |
| content | String | No |
| context | JsonNullValueInput | Json | No |
| spaceTimeCoordinates | SpaceTimeCoordinatesCreateNestedOneWithoutBlogPostInput | No |
| tagArrowList | BlogPostTagArrowCreateNestedManyWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| title | String | No |
| content | String | No |
| context | JsonNullValueInput | Json | No |
| spaceTimeCoordinatesId | String | No |
| tagArrowList | BlogPostTagArrowUncheckedCreateNestedManyWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BlogPostWhereUniqueInput | No |
| create | BlogPostCreateWithoutAuthorInput | BlogPostUncheckedCreateWithoutAuthorInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | BlogPostCreateManyAuthorInput | BlogPostCreateManyAuthorInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | BlogPostWhereUniqueInput | No |
| update | BlogPostUpdateWithoutAuthorInput | BlogPostUncheckedUpdateWithoutAuthorInput | No |
| create | BlogPostCreateWithoutAuthorInput | BlogPostUncheckedCreateWithoutAuthorInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BlogPostWhereUniqueInput | No |
| data | BlogPostUpdateWithoutAuthorInput | BlogPostUncheckedUpdateWithoutAuthorInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BlogPostScalarWhereInput | No |
| data | BlogPostUpdateManyMutationInput | BlogPostUncheckedUpdateManyWithoutAuthorInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | BlogPostScalarWhereInput | BlogPostScalarWhereInput[] | No |
| OR | BlogPostScalarWhereInput[] | No |
| NOT | BlogPostScalarWhereInput | BlogPostScalarWhereInput[] | No |
| id | StringFilter | String | No |
| title | StringFilter | String | No |
| content | StringFilter | String | No |
| context | JsonFilter | No |
| authorId | StringFilter | String | No |
| spaceTimeCoordinatesId | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| title | String | No |
| content | String | No |
| context | JsonNullValueInput | Json | No |
| author | BlogPostAuthorCreateNestedOneWithoutBlogPostListInput | No |
| tagArrowList | BlogPostTagArrowCreateNestedManyWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| title | String | No |
| content | String | No |
| context | JsonNullValueInput | Json | No |
| authorId | String | No |
| tagArrowList | BlogPostTagArrowUncheckedCreateNestedManyWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BlogPostWhereUniqueInput | No |
| create | BlogPostCreateWithoutSpaceTimeCoordinatesInput | BlogPostUncheckedCreateWithoutSpaceTimeCoordinatesInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | BlogPostUpdateWithoutSpaceTimeCoordinatesInput | BlogPostUncheckedUpdateWithoutSpaceTimeCoordinatesInput | No |
| create | BlogPostCreateWithoutSpaceTimeCoordinatesInput | BlogPostUncheckedCreateWithoutSpaceTimeCoordinatesInput | No |
| where | BlogPostWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BlogPostWhereInput | No |
| data | BlogPostUpdateWithoutSpaceTimeCoordinatesInput | BlogPostUncheckedUpdateWithoutSpaceTimeCoordinatesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| content | String | StringFieldUpdateOperationsInput | No |
| context | JsonNullValueInput | Json | No |
| author | BlogPostAuthorUpdateOneRequiredWithoutBlogPostListNestedInput | No |
| tagArrowList | BlogPostTagArrowUpdateManyWithoutPostNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| content | String | StringFieldUpdateOperationsInput | No |
| context | JsonNullValueInput | Json | No |
| authorId | String | StringFieldUpdateOperationsInput | No |
| tagArrowList | BlogPostTagArrowUncheckedUpdateManyWithoutPostNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| description | String | No |
| category | String | No |
| metadata | JsonNullValueInput | Json | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| description | String | No |
| category | String | No |
| metadata | JsonNullValueInput | Json | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | ServiceWhereUniqueInput | No |
| create | ServiceCreateWithoutEntryListInput | ServiceUncheckedCreateWithoutEntryListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| fiscalYear | Int | No |
| reportId | String | Null | Yes |
| report | ReportCreateNestedOneWithoutBudgetInput | No |
| userList | BudgetBudUserCreateNestedManyWithoutBudgetInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| fiscalYear | Int | No |
| reportId | String | Null | Yes |
| report | ReportUncheckedCreateNestedOneWithoutBudgetInput | No |
| userList | BudgetBudUserUncheckedCreateNestedManyWithoutBudgetInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BudgetWhereUniqueInput | No |
| create | BudgetCreateWithoutEntryListInput | BudgetUncheckedCreateWithoutEntryListInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | ServiceUpdateWithoutEntryListInput | ServiceUncheckedUpdateWithoutEntryListInput | No |
| create | ServiceCreateWithoutEntryListInput | ServiceUncheckedCreateWithoutEntryListInput | No |
| where | ServiceWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ServiceWhereInput | No |
| data | ServiceUpdateWithoutEntryListInput | ServiceUncheckedUpdateWithoutEntryListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| category | String | StringFieldUpdateOperationsInput | No |
| metadata | JsonNullValueInput | Json | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| category | String | StringFieldUpdateOperationsInput | No |
| metadata | JsonNullValueInput | Json | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | BudgetUpdateWithoutEntryListInput | BudgetUncheckedUpdateWithoutEntryListInput | No |
| create | BudgetCreateWithoutEntryListInput | BudgetUncheckedCreateWithoutEntryListInput | No |
| where | BudgetWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BudgetWhereInput | No |
| data | BudgetUpdateWithoutEntryListInput | BudgetUncheckedUpdateWithoutEntryListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| fiscalYear | Int | IntFieldUpdateOperationsInput | No |
| reportId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| report | ReportUpdateOneWithoutBudgetNestedInput | No |
| userList | BudgetBudUserUpdateManyWithoutBudgetNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| fiscalYear | Int | IntFieldUpdateOperationsInput | No |
| reportId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| report | ReportUncheckedUpdateOneWithoutBudgetNestedInput | No |
| userList | BudgetBudUserUncheckedUpdateManyWithoutBudgetNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| cost | Float | No |
| discount | Float | No |
| promotion | Float | No |
| subtotal | Float | No |
| percentChange | Float | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| budget | BudgetCreateNestedOneWithoutEntryListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| cost | Float | No |
| discount | Float | No |
| promotion | Float | No |
| subtotal | Float | No |
| percentChange | Float | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| budgetId | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | BudgetEntryWhereUniqueInput | No |
| create | BudgetEntryCreateWithoutServiceInput | BudgetEntryUncheckedCreateWithoutServiceInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | BudgetEntryCreateManyServiceInput | BudgetEntryCreateManyServiceInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | BudgetEntryWhereUniqueInput | No |
| update | BudgetEntryUpdateWithoutServiceInput | BudgetEntryUncheckedUpdateWithoutServiceInput | No |
| create | BudgetEntryCreateWithoutServiceInput | BudgetEntryUncheckedCreateWithoutServiceInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BudgetEntryWhereUniqueInput | No |
| data | BudgetEntryUpdateWithoutServiceInput | BudgetEntryUncheckedUpdateWithoutServiceInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BudgetEntryScalarWhereInput | No |
| data | BudgetEntryUpdateManyMutationInput | BudgetEntryUncheckedUpdateManyWithoutServiceInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | BudgetEntryScalarWhereInput | BudgetEntryScalarWhereInput[] | No |
| OR | BudgetEntryScalarWhereInput[] | No |
| NOT | BudgetEntryScalarWhereInput | BudgetEntryScalarWhereInput[] | No |
| id | StringFilter | String | No |
| serviceId | StringFilter | String | No |
| cost | FloatFilter | Float | No |
| discount | FloatFilter | Float | No |
| promotion | FloatFilter | Float | No |
| subtotal | FloatFilter | Float | No |
| percentChange | FloatFilter | Float | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| budgetId | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| cost | Float | No |
| discount | Float | No |
| promotion | Float | No |
| subtotal | Float | No |
| percentChange | Float | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| service | ServiceCreateNestedOneWithoutEntryListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| serviceId | String | No |
| cost | Float | No |
| discount | Float | No |
| promotion | Float | No |
| subtotal | Float | No |
| percentChange | Float | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | BudgetEntryWhereUniqueInput | No |
| create | BudgetEntryCreateWithoutBudgetInput | BudgetEntryUncheckedCreateWithoutBudgetInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | BudgetEntryCreateManyBudgetInput | BudgetEntryCreateManyBudgetInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| totalCost | Float | No |
| totalDiscount | Float | No |
| totalPromotion | Float | No |
| totalSubtotal | Float | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| totalCost | Float | No |
| totalDiscount | Float | No |
| totalPromotion | Float | No |
| totalSubtotal | Float | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | ReportWhereUniqueInput | No |
| create | ReportCreateWithoutBudgetInput | ReportUncheckedCreateWithoutBudgetInput | No |
| Name | Type | Nullable |
|---|---|---|
| role | String | No |
| ability | String | No |
| category | String | No |
| user | BudUserCreateNestedOneWithoutBudgetListInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | No |
| role | String | No |
| ability | String | No |
| category | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | BudgetBudUserWhereUniqueInput | No |
| create | BudgetBudUserCreateWithoutBudgetInput | BudgetBudUserUncheckedCreateWithoutBudgetInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | BudgetBudUserCreateManyBudgetInput | BudgetBudUserCreateManyBudgetInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | BudgetEntryWhereUniqueInput | No |
| update | BudgetEntryUpdateWithoutBudgetInput | BudgetEntryUncheckedUpdateWithoutBudgetInput | No |
| create | BudgetEntryCreateWithoutBudgetInput | BudgetEntryUncheckedCreateWithoutBudgetInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BudgetEntryWhereUniqueInput | No |
| data | BudgetEntryUpdateWithoutBudgetInput | BudgetEntryUncheckedUpdateWithoutBudgetInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BudgetEntryScalarWhereInput | No |
| data | BudgetEntryUpdateManyMutationInput | BudgetEntryUncheckedUpdateManyWithoutBudgetInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | ReportUpdateWithoutBudgetInput | ReportUncheckedUpdateWithoutBudgetInput | No |
| create | ReportCreateWithoutBudgetInput | ReportUncheckedCreateWithoutBudgetInput | No |
| where | ReportWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ReportWhereInput | No |
| data | ReportUpdateWithoutBudgetInput | ReportUncheckedUpdateWithoutBudgetInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| totalCost | Float | FloatFieldUpdateOperationsInput | No |
| totalDiscount | Float | FloatFieldUpdateOperationsInput | No |
| totalPromotion | Float | FloatFieldUpdateOperationsInput | No |
| totalSubtotal | Float | FloatFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| totalCost | Float | FloatFieldUpdateOperationsInput | No |
| totalDiscount | Float | FloatFieldUpdateOperationsInput | No |
| totalPromotion | Float | FloatFieldUpdateOperationsInput | No |
| totalSubtotal | Float | FloatFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BudgetBudUserWhereUniqueInput | No |
| update | BudgetBudUserUpdateWithoutBudgetInput | BudgetBudUserUncheckedUpdateWithoutBudgetInput | No |
| create | BudgetBudUserCreateWithoutBudgetInput | BudgetBudUserUncheckedCreateWithoutBudgetInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BudgetBudUserWhereUniqueInput | No |
| data | BudgetBudUserUpdateWithoutBudgetInput | BudgetBudUserUncheckedUpdateWithoutBudgetInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BudgetBudUserScalarWhereInput | No |
| data | BudgetBudUserUpdateManyMutationInput | BudgetBudUserUncheckedUpdateManyWithoutBudgetInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | BudgetBudUserScalarWhereInput | BudgetBudUserScalarWhereInput[] | No |
| OR | BudgetBudUserScalarWhereInput[] | No |
| NOT | BudgetBudUserScalarWhereInput | BudgetBudUserScalarWhereInput[] | No |
| userId | StringFilter | String | No |
| budgetId | StringFilter | String | No |
| role | StringFilter | String | No |
| ability | StringFilter | String | No |
| category | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| fiscalYear | Int | No |
| reportId | String | Null | Yes |
| entryList | BudgetEntryCreateNestedManyWithoutBudgetInput | No |
| userList | BudgetBudUserCreateNestedManyWithoutBudgetInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| fiscalYear | Int | No |
| reportId | String | Null | Yes |
| entryList | BudgetEntryUncheckedCreateNestedManyWithoutBudgetInput | No |
| userList | BudgetBudUserUncheckedCreateNestedManyWithoutBudgetInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BudgetWhereUniqueInput | No |
| create | BudgetCreateWithoutReportInput | BudgetUncheckedCreateWithoutReportInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | BudgetUpdateWithoutReportInput | BudgetUncheckedUpdateWithoutReportInput | No |
| create | BudgetCreateWithoutReportInput | BudgetUncheckedCreateWithoutReportInput | No |
| where | BudgetWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BudgetWhereInput | No |
| data | BudgetUpdateWithoutReportInput | BudgetUncheckedUpdateWithoutReportInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| fiscalYear | Int | IntFieldUpdateOperationsInput | No |
| reportId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| entryList | BudgetEntryUpdateManyWithoutBudgetNestedInput | No |
| userList | BudgetBudUserUpdateManyWithoutBudgetNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| fiscalYear | Int | IntFieldUpdateOperationsInput | No |
| reportId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| entryList | BudgetEntryUncheckedUpdateManyWithoutBudgetNestedInput | No |
| userList | BudgetBudUserUncheckedUpdateManyWithoutBudgetNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| role | String | No |
| ability | String | No |
| category | String | No |
| budget | BudgetCreateNestedOneWithoutUserListInput | No |
| Name | Type | Nullable |
|---|---|---|
| budgetId | String | No |
| role | String | No |
| ability | String | No |
| category | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | BudgetBudUserWhereUniqueInput | No |
| create | BudgetBudUserCreateWithoutUserInput | BudgetBudUserUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | BudgetBudUserCreateManyUserInput | BudgetBudUserCreateManyUserInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| type | String | No |
| description | String | No |
| categoryList | BudEventCreatecategoryListInput | String | No |
| metadata | JsonNullValueInput | Json | No |
| createdAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| type | String | No |
| description | String | No |
| categoryList | BudEventCreatecategoryListInput | String | No |
| metadata | JsonNullValueInput | Json | No |
| createdAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | BudEventWhereUniqueInput | No |
| create | BudEventCreateWithoutBudUserInput | BudEventUncheckedCreateWithoutBudUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | BudEventCreateManyBudUserInput | BudEventCreateManyBudUserInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | BudgetBudUserWhereUniqueInput | No |
| update | BudgetBudUserUpdateWithoutUserInput | BudgetBudUserUncheckedUpdateWithoutUserInput | No |
| create | BudgetBudUserCreateWithoutUserInput | BudgetBudUserUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BudgetBudUserWhereUniqueInput | No |
| data | BudgetBudUserUpdateWithoutUserInput | BudgetBudUserUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BudgetBudUserScalarWhereInput | No |
| data | BudgetBudUserUpdateManyMutationInput | BudgetBudUserUncheckedUpdateManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BudEventWhereUniqueInput | No |
| update | BudEventUpdateWithoutBudUserInput | BudEventUncheckedUpdateWithoutBudUserInput | No |
| create | BudEventCreateWithoutBudUserInput | BudEventUncheckedCreateWithoutBudUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BudEventWhereUniqueInput | No |
| data | BudEventUpdateWithoutBudUserInput | BudEventUncheckedUpdateWithoutBudUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BudEventScalarWhereInput | No |
| data | BudEventUpdateManyMutationInput | BudEventUncheckedUpdateManyWithoutBudUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | BudEventScalarWhereInput | BudEventScalarWhereInput[] | No |
| OR | BudEventScalarWhereInput[] | No |
| NOT | BudEventScalarWhereInput | BudEventScalarWhereInput[] | No |
| id | StringFilter | String | No |
| type | StringFilter | String | No |
| description | StringFilter | String | No |
| categoryList | StringNullableListFilter | No |
| metadata | JsonFilter | No |
| budUserId | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| String | No | |
| password | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| eventList | BudEventCreateNestedManyWithoutBudUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| String | No | |
| password | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| eventList | BudEventUncheckedCreateNestedManyWithoutBudUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BudUserWhereUniqueInput | No |
| create | BudUserCreateWithoutBudgetListInput | BudUserUncheckedCreateWithoutBudgetListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| fiscalYear | Int | No |
| reportId | String | Null | Yes |
| entryList | BudgetEntryCreateNestedManyWithoutBudgetInput | No |
| report | ReportCreateNestedOneWithoutBudgetInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| fiscalYear | Int | No |
| reportId | String | Null | Yes |
| entryList | BudgetEntryUncheckedCreateNestedManyWithoutBudgetInput | No |
| report | ReportUncheckedCreateNestedOneWithoutBudgetInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BudgetWhereUniqueInput | No |
| create | BudgetCreateWithoutUserListInput | BudgetUncheckedCreateWithoutUserListInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | BudUserUpdateWithoutBudgetListInput | BudUserUncheckedUpdateWithoutBudgetListInput | No |
| create | BudUserCreateWithoutBudgetListInput | BudUserUncheckedCreateWithoutBudgetListInput | No |
| where | BudUserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BudUserWhereInput | No |
| data | BudUserUpdateWithoutBudgetListInput | BudUserUncheckedUpdateWithoutBudgetListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| String | StringFieldUpdateOperationsInput | No | |
| password | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| eventList | BudEventUpdateManyWithoutBudUserNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| String | StringFieldUpdateOperationsInput | No | |
| password | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| eventList | BudEventUncheckedUpdateManyWithoutBudUserNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | BudgetUpdateWithoutUserListInput | BudgetUncheckedUpdateWithoutUserListInput | No |
| create | BudgetCreateWithoutUserListInput | BudgetUncheckedCreateWithoutUserListInput | No |
| where | BudgetWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BudgetWhereInput | No |
| data | BudgetUpdateWithoutUserListInput | BudgetUncheckedUpdateWithoutUserListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| fiscalYear | Int | IntFieldUpdateOperationsInput | No |
| reportId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| entryList | BudgetEntryUpdateManyWithoutBudgetNestedInput | No |
| report | ReportUpdateOneWithoutBudgetNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| fiscalYear | Int | IntFieldUpdateOperationsInput | No |
| reportId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| entryList | BudgetEntryUncheckedUpdateManyWithoutBudgetNestedInput | No |
| report | ReportUncheckedUpdateOneWithoutBudgetNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| String | No | |
| password | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| budgetList | BudgetBudUserCreateNestedManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| String | No | |
| password | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| budgetList | BudgetBudUserUncheckedCreateNestedManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BudUserWhereUniqueInput | No |
| create | BudUserCreateWithoutEventListInput | BudUserUncheckedCreateWithoutEventListInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | BudUserUpdateWithoutEventListInput | BudUserUncheckedUpdateWithoutEventListInput | No |
| create | BudUserCreateWithoutEventListInput | BudUserUncheckedCreateWithoutEventListInput | No |
| where | BudUserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BudUserWhereInput | No |
| data | BudUserUpdateWithoutEventListInput | BudUserUncheckedUpdateWithoutEventListInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| String | StringFieldUpdateOperationsInput | No | |
| password | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| budgetList | BudgetBudUserUpdateManyWithoutUserNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| String | StringFieldUpdateOperationsInput | No | |
| password | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| budgetList | BudgetBudUserUncheckedUpdateManyWithoutUserNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| patientId | String | No |
| locationId | String | No |
| providerId | String | No |
| startDatetime | DateTime | No |
| endDatetime | DateTime | No |
| voided | Boolean | No |
| voidedBy | String | No |
| dateVoided | DateTime | No |
| voidReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| startDatetime | DateTime | DateTimeFieldUpdateOperationsInput | No |
| endDatetime | DateTime | DateTimeFieldUpdateOperationsInput | No |
| voided | Boolean | BoolFieldUpdateOperationsInput | No |
| voidedBy | String | StringFieldUpdateOperationsInput | No |
| dateVoided | DateTime | DateTimeFieldUpdateOperationsInput | No |
| voidReason | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| patient | PatientUpdateOneRequiredWithoutAppointmentListNestedInput | No |
| location | LocationUpdateOneRequiredWithoutAppointmentListNestedInput | No |
| provider | ProviderUpdateOneRequiredWithoutAppointmentListNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| patientId | String | StringFieldUpdateOperationsInput | No |
| locationId | String | StringFieldUpdateOperationsInput | No |
| providerId | String | StringFieldUpdateOperationsInput | No |
| startDatetime | DateTime | DateTimeFieldUpdateOperationsInput | No |
| endDatetime | DateTime | DateTimeFieldUpdateOperationsInput | No |
| voided | Boolean | BoolFieldUpdateOperationsInput | No |
| voidedBy | String | StringFieldUpdateOperationsInput | No |
| dateVoided | DateTime | DateTimeFieldUpdateOperationsInput | No |
| voidReason | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| patientId | String | StringFieldUpdateOperationsInput | No |
| locationId | String | StringFieldUpdateOperationsInput | No |
| providerId | String | StringFieldUpdateOperationsInput | No |
| startDatetime | DateTime | DateTimeFieldUpdateOperationsInput | No |
| endDatetime | DateTime | DateTimeFieldUpdateOperationsInput | No |
| voided | Boolean | BoolFieldUpdateOperationsInput | No |
| voidedBy | String | StringFieldUpdateOperationsInput | No |
| dateVoided | DateTime | DateTimeFieldUpdateOperationsInput | No |
| voidReason | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| appointmentTypeId | String | No |
| patientId | String | No |
| providerId | String | No |
| startDatetime | DateTime | No |
| endDatetime | DateTime | No |
| voided | Boolean | No |
| voidedBy | String | No |
| dateVoided | DateTime | No |
| voidReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| encounterTypeId | String | No |
| patientId | String | No |
| formId | String | No |
| providerId | String | No |
| startDatetime | DateTime | No |
| endDatetime | DateTime | No |
| voided | Boolean | No |
| voidedBy | String | No |
| dateVoided | DateTime | No |
| voidReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| startDatetime | DateTime | DateTimeFieldUpdateOperationsInput | No |
| endDatetime | DateTime | DateTimeFieldUpdateOperationsInput | No |
| voided | Boolean | BoolFieldUpdateOperationsInput | No |
| voidedBy | String | StringFieldUpdateOperationsInput | No |
| dateVoided | DateTime | DateTimeFieldUpdateOperationsInput | No |
| voidReason | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| appointmentType | AppointmentTypeUpdateOneRequiredWithoutAppointmentListNestedInput | No |
| patient | PatientUpdateOneRequiredWithoutAppointmentListNestedInput | No |
| provider | ProviderUpdateOneRequiredWithoutAppointmentListNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| appointmentTypeId | String | StringFieldUpdateOperationsInput | No |
| patientId | String | StringFieldUpdateOperationsInput | No |
| providerId | String | StringFieldUpdateOperationsInput | No |
| startDatetime | DateTime | DateTimeFieldUpdateOperationsInput | No |
| endDatetime | DateTime | DateTimeFieldUpdateOperationsInput | No |
| voided | Boolean | BoolFieldUpdateOperationsInput | No |
| voidedBy | String | StringFieldUpdateOperationsInput | No |
| dateVoided | DateTime | DateTimeFieldUpdateOperationsInput | No |
| voidReason | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| appointmentTypeId | String | StringFieldUpdateOperationsInput | No |
| patientId | String | StringFieldUpdateOperationsInput | No |
| providerId | String | StringFieldUpdateOperationsInput | No |
| startDatetime | DateTime | DateTimeFieldUpdateOperationsInput | No |
| endDatetime | DateTime | DateTimeFieldUpdateOperationsInput | No |
| voided | Boolean | BoolFieldUpdateOperationsInput | No |
| voidedBy | String | StringFieldUpdateOperationsInput | No |
| dateVoided | DateTime | DateTimeFieldUpdateOperationsInput | No |
| voidReason | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| encounterTypeId | String | StringFieldUpdateOperationsInput | No |
| patientId | String | StringFieldUpdateOperationsInput | No |
| formId | String | StringFieldUpdateOperationsInput | No |
| providerId | String | StringFieldUpdateOperationsInput | No |
| startDatetime | DateTime | DateTimeFieldUpdateOperationsInput | No |
| endDatetime | DateTime | DateTimeFieldUpdateOperationsInput | No |
| voided | Boolean | BoolFieldUpdateOperationsInput | No |
| voidedBy | String | StringFieldUpdateOperationsInput | No |
| dateVoided | DateTime | DateTimeFieldUpdateOperationsInput | No |
| voidReason | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| appointmentTypeId | String | No |
| locationId | String | No |
| providerId | String | No |
| startDatetime | DateTime | No |
| endDatetime | DateTime | No |
| voided | Boolean | No |
| voidedBy | String | No |
| dateVoided | DateTime | No |
| voidReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| encounterTypeId | String | No |
| locationId | String | No |
| formId | String | No |
| providerId | String | No |
| startDatetime | DateTime | No |
| endDatetime | DateTime | No |
| voided | Boolean | No |
| voidedBy | String | No |
| dateVoided | DateTime | No |
| voidReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| startDatetime | DateTime | DateTimeFieldUpdateOperationsInput | No |
| endDatetime | DateTime | DateTimeFieldUpdateOperationsInput | No |
| voided | Boolean | BoolFieldUpdateOperationsInput | No |
| voidedBy | String | StringFieldUpdateOperationsInput | No |
| dateVoided | DateTime | DateTimeFieldUpdateOperationsInput | No |
| voidReason | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| appointmentType | AppointmentTypeUpdateOneRequiredWithoutAppointmentListNestedInput | No |
| location | LocationUpdateOneRequiredWithoutAppointmentListNestedInput | No |
| provider | ProviderUpdateOneRequiredWithoutAppointmentListNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| appointmentTypeId | String | StringFieldUpdateOperationsInput | No |
| locationId | String | StringFieldUpdateOperationsInput | No |
| providerId | String | StringFieldUpdateOperationsInput | No |
| startDatetime | DateTime | DateTimeFieldUpdateOperationsInput | No |
| endDatetime | DateTime | DateTimeFieldUpdateOperationsInput | No |
| voided | Boolean | BoolFieldUpdateOperationsInput | No |
| voidedBy | String | StringFieldUpdateOperationsInput | No |
| dateVoided | DateTime | DateTimeFieldUpdateOperationsInput | No |
| voidReason | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| appointmentTypeId | String | StringFieldUpdateOperationsInput | No |
| locationId | String | StringFieldUpdateOperationsInput | No |
| providerId | String | StringFieldUpdateOperationsInput | No |
| startDatetime | DateTime | DateTimeFieldUpdateOperationsInput | No |
| endDatetime | DateTime | DateTimeFieldUpdateOperationsInput | No |
| voided | Boolean | BoolFieldUpdateOperationsInput | No |
| voidedBy | String | StringFieldUpdateOperationsInput | No |
| dateVoided | DateTime | DateTimeFieldUpdateOperationsInput | No |
| voidReason | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| encounterTypeId | String | StringFieldUpdateOperationsInput | No |
| locationId | String | StringFieldUpdateOperationsInput | No |
| formId | String | StringFieldUpdateOperationsInput | No |
| providerId | String | StringFieldUpdateOperationsInput | No |
| startDatetime | DateTime | DateTimeFieldUpdateOperationsInput | No |
| endDatetime | DateTime | DateTimeFieldUpdateOperationsInput | No |
| voided | Boolean | BoolFieldUpdateOperationsInput | No |
| voidedBy | String | StringFieldUpdateOperationsInput | No |
| dateVoided | DateTime | DateTimeFieldUpdateOperationsInput | No |
| voidReason | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| appointmentTypeId | String | No |
| patientId | String | No |
| locationId | String | No |
| startDatetime | DateTime | No |
| endDatetime | DateTime | No |
| voided | Boolean | No |
| voidedBy | String | No |
| dateVoided | DateTime | No |
| voidReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| encounterTypeId | String | No |
| patientId | String | No |
| locationId | String | No |
| formId | String | No |
| startDatetime | DateTime | No |
| endDatetime | DateTime | No |
| voided | Boolean | No |
| voidedBy | String | No |
| dateVoided | DateTime | No |
| voidReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| startDatetime | DateTime | DateTimeFieldUpdateOperationsInput | No |
| endDatetime | DateTime | DateTimeFieldUpdateOperationsInput | No |
| voided | Boolean | BoolFieldUpdateOperationsInput | No |
| voidedBy | String | StringFieldUpdateOperationsInput | No |
| dateVoided | DateTime | DateTimeFieldUpdateOperationsInput | No |
| voidReason | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| appointmentType | AppointmentTypeUpdateOneRequiredWithoutAppointmentListNestedInput | No |
| patient | PatientUpdateOneRequiredWithoutAppointmentListNestedInput | No |
| location | LocationUpdateOneRequiredWithoutAppointmentListNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| appointmentTypeId | String | StringFieldUpdateOperationsInput | No |
| patientId | String | StringFieldUpdateOperationsInput | No |
| locationId | String | StringFieldUpdateOperationsInput | No |
| startDatetime | DateTime | DateTimeFieldUpdateOperationsInput | No |
| endDatetime | DateTime | DateTimeFieldUpdateOperationsInput | No |
| voided | Boolean | BoolFieldUpdateOperationsInput | No |
| voidedBy | String | StringFieldUpdateOperationsInput | No |
| dateVoided | DateTime | DateTimeFieldUpdateOperationsInput | No |
| voidReason | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| appointmentTypeId | String | StringFieldUpdateOperationsInput | No |
| patientId | String | StringFieldUpdateOperationsInput | No |
| locationId | String | StringFieldUpdateOperationsInput | No |
| startDatetime | DateTime | DateTimeFieldUpdateOperationsInput | No |
| endDatetime | DateTime | DateTimeFieldUpdateOperationsInput | No |
| voided | Boolean | BoolFieldUpdateOperationsInput | No |
| voidedBy | String | StringFieldUpdateOperationsInput | No |
| dateVoided | DateTime | DateTimeFieldUpdateOperationsInput | No |
| voidReason | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| encounterTypeId | String | StringFieldUpdateOperationsInput | No |
| patientId | String | StringFieldUpdateOperationsInput | No |
| locationId | String | StringFieldUpdateOperationsInput | No |
| formId | String | StringFieldUpdateOperationsInput | No |
| startDatetime | DateTime | DateTimeFieldUpdateOperationsInput | No |
| endDatetime | DateTime | DateTimeFieldUpdateOperationsInput | No |
| voided | Boolean | BoolFieldUpdateOperationsInput | No |
| voidedBy | String | StringFieldUpdateOperationsInput | No |
| dateVoided | DateTime | DateTimeFieldUpdateOperationsInput | No |
| voidReason | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| encounterId | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| resourceId | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| encounterId | String | No |
| submissionDate | DateTime | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| encounterTypeId | String | No |
| patientId | String | No |
| locationId | String | No |
| providerId | String | No |
| startDatetime | DateTime | No |
| endDatetime | DateTime | No |
| voided | Boolean | No |
| voidedBy | String | No |
| dateVoided | DateTime | No |
| voidReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| encounter | EncounterUpdateOneRequiredWithoutFormEncounterListNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| encounterId | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| encounterId | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| resource | ResourceUpdateOneRequiredWithoutFormResourceListNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| resourceId | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| resourceId | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| submissionDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| encounter | EncounterUpdateOneRequiredWithoutFormSubmissionListNestedInput | No |
| fieldAnswerList | FieldAnswerUpdateManyWithoutFormSubmissionNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| encounterId | String | StringFieldUpdateOperationsInput | No |
| submissionDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| fieldAnswerList | FieldAnswerUncheckedUpdateManyWithoutFormSubmissionNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| encounterId | String | StringFieldUpdateOperationsInput | No |
| submissionDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| encounterTypeId | String | StringFieldUpdateOperationsInput | No |
| patientId | String | StringFieldUpdateOperationsInput | No |
| locationId | String | StringFieldUpdateOperationsInput | No |
| providerId | String | StringFieldUpdateOperationsInput | No |
| startDatetime | DateTime | DateTimeFieldUpdateOperationsInput | No |
| endDatetime | DateTime | DateTimeFieldUpdateOperationsInput | No |
| voided | Boolean | BoolFieldUpdateOperationsInput | No |
| voidedBy | String | StringFieldUpdateOperationsInput | No |
| dateVoided | DateTime | DateTimeFieldUpdateOperationsInput | No |
| voidReason | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| fieldId | String | No |
| value | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| value | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| field | FieldUpdateOneRequiredWithoutFieldAnswerListNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| fieldId | String | StringFieldUpdateOperationsInput | No |
| value | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| fieldId | String | StringFieldUpdateOperationsInput | No |
| value | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| version | String | No |
| retired | Boolean | No |
| retiredBy | String | No |
| dateRetired | DateTime | No |
| retiredReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| formSubmissionId | String | No |
| value | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| retired | Boolean | BoolFieldUpdateOperationsInput | No |
| retiredBy | String | StringFieldUpdateOperationsInput | No |
| dateRetired | DateTime | DateTimeFieldUpdateOperationsInput | No |
| retiredReason | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| value | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| formSubmission | FormSubmissionUpdateOneRequiredWithoutFieldAnswerListNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| formSubmissionId | String | StringFieldUpdateOperationsInput | No |
| value | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| formSubmissionId | String | StringFieldUpdateOperationsInput | No |
| value | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| formId | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| formId | String | No |
| submissionDate | DateTime | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| conceptId | String | No |
| obsDatetime | DateTime | No |
| valueDatetime | DateTime | No |
| valueNumeric | Float | No |
| valueText | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| conceptId | String | No |
| orderDatetime | DateTime | No |
| instructions | String | No |
| dosage | String | No |
| route | String | No |
| frequency | String | No |
| asNeeded | Boolean | No |
| prn | Boolean | No |
| quantity | Int | No |
| units | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| orderFrequencyId | String | Null | Yes |
| orderRouteId | String | Null | Yes |
| orderTypeId | String | Null | Yes |
| orderUnitId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| form | FormUpdateOneRequiredWithoutFormEncounterListNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| formId | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| formId | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| submissionDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| form | FormUpdateOneRequiredWithoutFormSubmissionListNestedInput | No |
| fieldAnswerList | FieldAnswerUpdateManyWithoutFormSubmissionNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| formId | String | StringFieldUpdateOperationsInput | No |
| submissionDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| fieldAnswerList | FieldAnswerUncheckedUpdateManyWithoutFormSubmissionNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| formId | String | StringFieldUpdateOperationsInput | No |
| submissionDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| obsDatetime | DateTime | DateTimeFieldUpdateOperationsInput | No |
| valueDatetime | DateTime | DateTimeFieldUpdateOperationsInput | No |
| valueNumeric | Float | FloatFieldUpdateOperationsInput | No |
| valueText | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| concept | ConceptUpdateOneRequiredWithoutObsListNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| conceptId | String | StringFieldUpdateOperationsInput | No |
| obsDatetime | DateTime | DateTimeFieldUpdateOperationsInput | No |
| valueDatetime | DateTime | DateTimeFieldUpdateOperationsInput | No |
| valueNumeric | Float | FloatFieldUpdateOperationsInput | No |
| valueText | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| conceptId | String | StringFieldUpdateOperationsInput | No |
| obsDatetime | DateTime | DateTimeFieldUpdateOperationsInput | No |
| valueDatetime | DateTime | DateTimeFieldUpdateOperationsInput | No |
| valueNumeric | Float | FloatFieldUpdateOperationsInput | No |
| valueText | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| patientId | String | No |
| locationId | String | No |
| formId | String | No |
| providerId | String | No |
| startDatetime | DateTime | No |
| endDatetime | DateTime | No |
| voided | Boolean | No |
| voidedBy | String | No |
| dateVoided | DateTime | No |
| voidReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| patientId | String | StringFieldUpdateOperationsInput | No |
| locationId | String | StringFieldUpdateOperationsInput | No |
| formId | String | StringFieldUpdateOperationsInput | No |
| providerId | String | StringFieldUpdateOperationsInput | No |
| startDatetime | DateTime | DateTimeFieldUpdateOperationsInput | No |
| endDatetime | DateTime | DateTimeFieldUpdateOperationsInput | No |
| voided | Boolean | BoolFieldUpdateOperationsInput | No |
| voidedBy | String | StringFieldUpdateOperationsInput | No |
| dateVoided | DateTime | DateTimeFieldUpdateOperationsInput | No |
| voidReason | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| conceptId | String | No |
| encounterId | String | No |
| orderDatetime | DateTime | No |
| instructions | String | No |
| dosage | String | No |
| route | String | No |
| frequency | String | No |
| asNeeded | Boolean | No |
| prn | Boolean | No |
| quantity | Int | No |
| units | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| orderRouteId | String | Null | Yes |
| orderTypeId | String | Null | Yes |
| orderUnitId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| conceptId | String | No |
| encounterId | String | No |
| orderDatetime | DateTime | No |
| instructions | String | No |
| dosage | String | No |
| route | String | No |
| frequency | String | No |
| asNeeded | Boolean | No |
| prn | Boolean | No |
| quantity | Int | No |
| units | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| orderFrequencyId | String | Null | Yes |
| orderTypeId | String | Null | Yes |
| orderUnitId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| conceptId | String | No |
| encounterId | String | No |
| orderDatetime | DateTime | No |
| instructions | String | No |
| dosage | String | No |
| route | String | No |
| frequency | String | No |
| asNeeded | Boolean | No |
| prn | Boolean | No |
| quantity | Int | No |
| units | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| orderFrequencyId | String | Null | Yes |
| orderRouteId | String | Null | Yes |
| orderUnitId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| conceptId | String | No |
| encounterId | String | No |
| orderDatetime | DateTime | No |
| instructions | String | No |
| dosage | String | No |
| route | String | No |
| frequency | String | No |
| asNeeded | Boolean | No |
| prn | Boolean | No |
| quantity | Int | No |
| units | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| orderFrequencyId | String | Null | Yes |
| orderRouteId | String | Null | Yes |
| orderTypeId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| answerConceptId | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| conceptId | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| fieldType | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| encounterId | String | No |
| obsDatetime | DateTime | No |
| valueDatetime | DateTime | No |
| valueNumeric | Float | No |
| valueText | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| encounterId | String | No |
| orderDatetime | DateTime | No |
| instructions | String | No |
| dosage | String | No |
| route | String | No |
| frequency | String | No |
| asNeeded | Boolean | No |
| prn | Boolean | No |
| quantity | Int | No |
| units | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| orderFrequencyId | String | Null | Yes |
| orderRouteId | String | Null | Yes |
| orderTypeId | String | Null | Yes |
| orderUnitId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| locale | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| hiAbsolute | Float | No |
| hiCritical | Float | No |
| hiNormal | Float | No |
| lowAbsolute | Float | No |
| lowCritical | Float | No |
| lowNormal | Float | No |
| units | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| word | String | No |
| locale | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| answerConcept | ConceptUpdateOneRequiredWithoutAnswerListNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| answerConceptId | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| answerConceptId | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| concept | ConceptUpdateOneRequiredWithoutMetaListNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| conceptId | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| conceptId | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| fieldType | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| formList | FormUpdateManyWithoutDieldNestedInput | No |
| fieldAnswerList | FieldAnswerUpdateManyWithoutFieldNestedInput | No |
| fieldOptionList | FieldOptionUpdateManyWithoutFieldNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| fieldType | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| formList | FormUncheckedUpdateManyWithoutDieldNestedInput | No |
| fieldAnswerList | FieldAnswerUncheckedUpdateManyWithoutFieldNestedInput | No |
| fieldOptionList | FieldOptionUncheckedUpdateManyWithoutFieldNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| fieldType | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| obsDatetime | DateTime | DateTimeFieldUpdateOperationsInput | No |
| valueDatetime | DateTime | DateTimeFieldUpdateOperationsInput | No |
| valueNumeric | Float | FloatFieldUpdateOperationsInput | No |
| valueText | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| encounter | EncounterUpdateOneRequiredWithoutObsListNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| encounterId | String | StringFieldUpdateOperationsInput | No |
| obsDatetime | DateTime | DateTimeFieldUpdateOperationsInput | No |
| valueDatetime | DateTime | DateTimeFieldUpdateOperationsInput | No |
| valueNumeric | Float | FloatFieldUpdateOperationsInput | No |
| valueText | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| encounterId | String | StringFieldUpdateOperationsInput | No |
| obsDatetime | DateTime | DateTimeFieldUpdateOperationsInput | No |
| valueDatetime | DateTime | DateTimeFieldUpdateOperationsInput | No |
| valueNumeric | Float | FloatFieldUpdateOperationsInput | No |
| valueText | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| locale | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| locale | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| locale | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| hiAbsolute | Float | FloatFieldUpdateOperationsInput | No |
| hiCritical | Float | FloatFieldUpdateOperationsInput | No |
| hiNormal | Float | FloatFieldUpdateOperationsInput | No |
| lowAbsolute | Float | FloatFieldUpdateOperationsInput | No |
| lowCritical | Float | FloatFieldUpdateOperationsInput | No |
| lowNormal | Float | FloatFieldUpdateOperationsInput | No |
| units | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| hiAbsolute | Float | FloatFieldUpdateOperationsInput | No |
| hiCritical | Float | FloatFieldUpdateOperationsInput | No |
| hiNormal | Float | FloatFieldUpdateOperationsInput | No |
| lowAbsolute | Float | FloatFieldUpdateOperationsInput | No |
| lowCritical | Float | FloatFieldUpdateOperationsInput | No |
| lowNormal | Float | FloatFieldUpdateOperationsInput | No |
| units | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| hiAbsolute | Float | FloatFieldUpdateOperationsInput | No |
| hiCritical | Float | FloatFieldUpdateOperationsInput | No |
| hiNormal | Float | FloatFieldUpdateOperationsInput | No |
| lowAbsolute | Float | FloatFieldUpdateOperationsInput | No |
| lowCritical | Float | FloatFieldUpdateOperationsInput | No |
| lowNormal | Float | FloatFieldUpdateOperationsInput | No |
| units | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| word | String | StringFieldUpdateOperationsInput | No |
| locale | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| word | String | StringFieldUpdateOperationsInput | No |
| locale | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| word | String | StringFieldUpdateOperationsInput | No |
| locale | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| dataType | String | No |
| class | String | No |
| isRetired | Boolean | No |
| retiredBy | String | No |
| dateRetired | DateTime | No |
| retiredReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| conceptDatatypeId | String | Null | Yes |
| conceptMapId | String | Null | Yes |
| conceptSetId | String | Null | Yes |
| conceptSourceId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| dataType | String | No |
| class | String | No |
| isRetired | Boolean | No |
| retiredBy | String | No |
| dateRetired | DateTime | No |
| retiredReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| conceptClassId | String | Null | Yes |
| conceptMapId | String | Null | Yes |
| conceptSetId | String | Null | Yes |
| conceptSourceId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| dataType | String | No |
| class | String | No |
| isRetired | Boolean | No |
| retiredBy | String | No |
| dateRetired | DateTime | No |
| retiredReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| conceptClassId | String | Null | Yes |
| conceptDatatypeId | String | Null | Yes |
| conceptSetId | String | Null | Yes |
| conceptSourceId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| dataType | String | No |
| class | String | No |
| isRetired | Boolean | No |
| retiredBy | String | No |
| dateRetired | DateTime | No |
| retiredReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| conceptClassId | String | Null | Yes |
| conceptDatatypeId | String | Null | Yes |
| conceptMapId | String | Null | Yes |
| conceptSourceId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| dataType | String | No |
| class | String | No |
| isRetired | Boolean | No |
| retiredBy | String | No |
| dateRetired | DateTime | No |
| retiredReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| conceptClassId | String | Null | Yes |
| conceptDatatypeId | String | Null | Yes |
| conceptMapId | String | Null | Yes |
| conceptSetId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| formId | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| form | FormUpdateOneRequiredWithoutFormResourceListNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| formId | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| formId | String | StringFieldUpdateOperationsInput | No |
| creator | String | StringFieldUpdateOperationsInput | No |
| dateCreated | DateTime | DateTimeFieldUpdateOperationsInput | No |
| lastChangedBy | String | StringFieldUpdateOperationsInput | No |
| lastChangedDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| tagId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| tag | BlogPostTagUpdateOneRequiredWithoutPostArrowListNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| tagId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| tagId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| postId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| post | BlogPostUpdateOneRequiredWithoutTagArrowListNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| postId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| postId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| title | String | No |
| content | String | No |
| context | JsonNullValueInput | Json | No |
| spaceTimeCoordinatesId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| content | String | StringFieldUpdateOperationsInput | No |
| context | JsonNullValueInput | Json | No |
| spaceTimeCoordinates | SpaceTimeCoordinatesUpdateOneRequiredWithoutBlogPostNestedInput | No |
| tagArrowList | BlogPostTagArrowUpdateManyWithoutPostNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| content | String | StringFieldUpdateOperationsInput | No |
| context | JsonNullValueInput | Json | No |
| spaceTimeCoordinatesId | String | StringFieldUpdateOperationsInput | No |
| tagArrowList | BlogPostTagArrowUncheckedUpdateManyWithoutPostNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| content | String | StringFieldUpdateOperationsInput | No |
| context | JsonNullValueInput | Json | No |
| spaceTimeCoordinatesId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| cost | Float | No |
| discount | Float | No |
| promotion | Float | No |
| subtotal | Float | No |
| percentChange | Float | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| budgetId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| cost | Float | FloatFieldUpdateOperationsInput | No |
| discount | Float | FloatFieldUpdateOperationsInput | No |
| promotion | Float | FloatFieldUpdateOperationsInput | No |
| subtotal | Float | FloatFieldUpdateOperationsInput | No |
| percentChange | Float | FloatFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| budget | BudgetUpdateOneRequiredWithoutEntryListNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| cost | Float | FloatFieldUpdateOperationsInput | No |
| discount | Float | FloatFieldUpdateOperationsInput | No |
| promotion | Float | FloatFieldUpdateOperationsInput | No |
| subtotal | Float | FloatFieldUpdateOperationsInput | No |
| percentChange | Float | FloatFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| budgetId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| cost | Float | FloatFieldUpdateOperationsInput | No |
| discount | Float | FloatFieldUpdateOperationsInput | No |
| promotion | Float | FloatFieldUpdateOperationsInput | No |
| subtotal | Float | FloatFieldUpdateOperationsInput | No |
| percentChange | Float | FloatFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| budgetId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| serviceId | String | No |
| cost | Float | No |
| discount | Float | No |
| promotion | Float | No |
| subtotal | Float | No |
| percentChange | Float | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | No |
| role | String | No |
| ability | String | No |
| category | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| cost | Float | FloatFieldUpdateOperationsInput | No |
| discount | Float | FloatFieldUpdateOperationsInput | No |
| promotion | Float | FloatFieldUpdateOperationsInput | No |
| subtotal | Float | FloatFieldUpdateOperationsInput | No |
| percentChange | Float | FloatFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| service | ServiceUpdateOneRequiredWithoutEntryListNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| serviceId | String | StringFieldUpdateOperationsInput | No |
| cost | Float | FloatFieldUpdateOperationsInput | No |
| discount | Float | FloatFieldUpdateOperationsInput | No |
| promotion | Float | FloatFieldUpdateOperationsInput | No |
| subtotal | Float | FloatFieldUpdateOperationsInput | No |
| percentChange | Float | FloatFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| serviceId | String | StringFieldUpdateOperationsInput | No |
| cost | Float | FloatFieldUpdateOperationsInput | No |
| discount | Float | FloatFieldUpdateOperationsInput | No |
| promotion | Float | FloatFieldUpdateOperationsInput | No |
| subtotal | Float | FloatFieldUpdateOperationsInput | No |
| percentChange | Float | FloatFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| role | String | StringFieldUpdateOperationsInput | No |
| ability | String | StringFieldUpdateOperationsInput | No |
| category | String | StringFieldUpdateOperationsInput | No |
| user | BudUserUpdateOneRequiredWithoutBudgetListNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | StringFieldUpdateOperationsInput | No |
| role | String | StringFieldUpdateOperationsInput | No |
| ability | String | StringFieldUpdateOperationsInput | No |
| category | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | StringFieldUpdateOperationsInput | No |
| role | String | StringFieldUpdateOperationsInput | No |
| ability | String | StringFieldUpdateOperationsInput | No |
| category | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| budgetId | String | No |
| role | String | No |
| ability | String | No |
| category | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| type | String | No |
| description | String | No |
| categoryList | BudEventCreatecategoryListInput | String | No |
| metadata | JsonNullValueInput | Json | No |
| createdAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| role | String | StringFieldUpdateOperationsInput | No |
| ability | String | StringFieldUpdateOperationsInput | No |
| category | String | StringFieldUpdateOperationsInput | No |
| budget | BudgetUpdateOneRequiredWithoutUserListNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| budgetId | String | StringFieldUpdateOperationsInput | No |
| role | String | StringFieldUpdateOperationsInput | No |
| ability | String | StringFieldUpdateOperationsInput | No |
| category | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| budgetId | String | StringFieldUpdateOperationsInput | No |
| role | String | StringFieldUpdateOperationsInput | No |
| ability | String | StringFieldUpdateOperationsInput | No |
| category | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| type | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| categoryList | BudEventUpdatecategoryListInput | String | No |
| metadata | JsonNullValueInput | Json | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| type | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| categoryList | BudEventUpdatecategoryListInput | String | No |
| metadata | JsonNullValueInput | Json | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| type | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| categoryList | BudEventUpdatecategoryListInput | String | No |
| metadata | JsonNullValueInput | Json | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| uuid | String | Yes |
| appointmentTypeId | String | Yes |
| patientId | String | Yes |
| locationId | String | Yes |
| providerId | String | Yes |
| startDatetime | DateTime | Yes |
| endDatetime | DateTime | Yes |
| voided | Boolean | Yes |
| voidedBy | String | Yes |
| dateVoided | DateTime | Yes |
| voidReason | String | Yes |
| creator | String | Yes |
| dateCreated | DateTime | Yes |
| lastChangedBy | String | Yes |
| lastChangedDate | DateTime | Yes |
| appointmentType | AppointmentType | Yes |
| patient | Patient | Yes |
| location | Location | Yes |
| provider | Provider | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| uuid | String | Yes |
| name | String | Yes |
| description | String | Yes |
| duration | Int | Yes |
| creator | String | Yes |
| dateCreated | DateTime | Yes |
| lastChangedBy | String | Yes |
| lastChangedDate | DateTime | Yes |
| appointmentList | Appointment[] | No |
| _count | AppointmentTypeCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| uuid | String | Yes |
| name | String | Yes |
| description | String | Yes |
| address1 | String | Yes |
| address2 | String | Yes |
| city | String | Yes |
| stateProvince | String | Yes |
| country | String | Yes |
| postalCode | String | Yes |
| latitude | Float | Yes |
| longitude | Float | Yes |
| creator | String | Yes |
| dateCreated | DateTime | Yes |
| lastChangedBy | String | Yes |
| lastChangedDate | DateTime | Yes |
| appointmentList | Appointment[] | No |
| encounterList | Encounter[] | No |
| _count | LocationCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| uuid | String | Yes |
| givenName | String | Yes |
| middleName | String | Yes |
| familyName | String | Yes |
| gender | String | Yes |
| birthdate | DateTime | Yes |
| dead | Boolean | Yes |
| deathDate | DateTime | Yes |
| causeOfDeath | String | Yes |
| creator | String | Yes |
| dateCreated | DateTime | Yes |
| lastChangedBy | String | Yes |
| lastChangedDate | DateTime | Yes |
| appointmentList | Appointment[] | No |
| encounterList | Encounter[] | No |
| _count | PatientCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| uuid | String | Yes |
| name | String | Yes |
| identifier | String | Yes |
| description | String | Yes |
| voided | Boolean | Yes |
| voidedBy | String | Yes |
| dateVoided | DateTime | Yes |
| voidReason | String | Yes |
| creator | String | Yes |
| dateCreated | DateTime | Yes |
| lastChangedBy | String | Yes |
| lastChangedDate | DateTime | Yes |
| appointmentList | Appointment[] | No |
| encounterList | Encounter[] | No |
| _count | ProviderCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| uuid | String | Yes |
| name | String | Yes |
| description | String | Yes |
| version | String | Yes |
| retired | Boolean | Yes |
| retiredBy | String | Yes |
| dateRetired | DateTime | Yes |
| retiredReason | String | Yes |
| creator | String | Yes |
| dateCreated | DateTime | Yes |
| lastChangedBy | String | Yes |
| lastChangedDate | DateTime | Yes |
| fieldId | String | No |
| formEncounterList | FormEncounter[] | No |
| formResourceList | FormResource[] | No |
| formSubmissionList | FormSubmission[] | No |
| dield | Field | No |
| encounterList | Encounter[] | No |
| _count | FormCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| uuid | String | Yes |
| formId | String | Yes |
| encounterId | String | Yes |
| creator | String | Yes |
| dateCreated | DateTime | Yes |
| lastChangedBy | String | Yes |
| lastChangedDate | DateTime | Yes |
| form | Form | Yes |
| encounter | Encounter | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| uuid | String | Yes |
| formId | String | Yes |
| resourceId | String | Yes |
| creator | String | Yes |
| dateCreated | DateTime | Yes |
| lastChangedBy | String | Yes |
| lastChangedDate | DateTime | Yes |
| form | Form | Yes |
| resource | Resource | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| uuid | String | Yes |
| formId | String | Yes |
| encounterId | String | Yes |
| submissionDate | DateTime | Yes |
| creator | String | Yes |
| dateCreated | DateTime | Yes |
| lastChangedBy | String | Yes |
| lastChangedDate | DateTime | Yes |
| form | Form | Yes |
| encounter | Encounter | Yes |
| fieldAnswerList | FieldAnswer[] | No |
| _count | FormSubmissionCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| uuid | String | Yes |
| name | String | Yes |
| description | String | Yes |
| fieldType | String | Yes |
| conceptId | String | Yes |
| creator | String | Yes |
| dateCreated | DateTime | Yes |
| lastChangedBy | String | Yes |
| lastChangedDate | DateTime | Yes |
| concept | Concept | Yes |
| formList | Form[] | No |
| fieldAnswerList | FieldAnswer[] | No |
| fieldOptionList | FieldOption[] | No |
| _count | FieldCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| uuid | String | Yes |
| formSubmissionId | String | Yes |
| fieldId | String | Yes |
| value | String | Yes |
| creator | String | Yes |
| dateCreated | DateTime | Yes |
| lastChangedBy | String | Yes |
| lastChangedDate | DateTime | Yes |
| formSubmission | FormSubmission | Yes |
| field | Field | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| uuid | String | Yes |
| fieldId | String | Yes |
| name | String | Yes |
| description | String | Yes |
| creator | String | Yes |
| dateCreated | DateTime | Yes |
| lastChangedBy | String | Yes |
| lastChangedDate | DateTime | Yes |
| field | Field | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| uuid | String | Yes |
| encounterTypeId | String | Yes |
| patientId | String | Yes |
| locationId | String | Yes |
| formId | String | Yes |
| providerId | String | Yes |
| startDatetime | DateTime | Yes |
| endDatetime | DateTime | Yes |
| voided | Boolean | Yes |
| voidedBy | String | Yes |
| dateVoided | DateTime | Yes |
| voidReason | String | Yes |
| creator | String | Yes |
| dateCreated | DateTime | Yes |
| lastChangedBy | String | Yes |
| lastChangedDate | DateTime | Yes |
| encounterType | EncounterType | Yes |
| patient | Patient | Yes |
| location | Location | Yes |
| form | Form | Yes |
| provider | Provider | Yes |
| formEncounterList | FormEncounter[] | No |
| formSubmissionList | FormSubmission[] | No |
| obsList | Obs[] | No |
| orderList | Order[] | No |
| _count | EncounterCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| uuid | String | Yes |
| name | String | Yes |
| description | String | Yes |
| creator | String | Yes |
| dateCreated | DateTime | Yes |
| lastChangedBy | String | Yes |
| lastChangedDate | DateTime | Yes |
| encounterList | Encounter[] | No |
| _count | EncounterTypeCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| uuid | String | Yes |
| conceptId | String | Yes |
| encounterId | String | Yes |
| obsDatetime | DateTime | Yes |
| valueDatetime | DateTime | Yes |
| valueNumeric | Float | Yes |
| valueText | String | Yes |
| creator | String | Yes |
| dateCreated | DateTime | Yes |
| lastChangedBy | String | Yes |
| lastChangedDate | DateTime | Yes |
| concept | Concept | Yes |
| encounter | Encounter | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| uuid | String | Yes |
| conceptId | String | Yes |
| encounterId | String | Yes |
| orderDatetime | DateTime | Yes |
| instructions | String | Yes |
| dosage | String | Yes |
| route | String | Yes |
| frequency | String | Yes |
| asNeeded | Boolean | Yes |
| prn | Boolean | Yes |
| quantity | Int | Yes |
| units | String | Yes |
| creator | String | Yes |
| dateCreated | DateTime | Yes |
| lastChangedBy | String | Yes |
| lastChangedDate | DateTime | Yes |
| orderFrequencyId | String | No |
| orderRouteId | String | No |
| orderTypeId | String | No |
| orderUnitId | String | No |
| concept | Concept | Yes |
| encounter | Encounter | Yes |
| OrderFrequency | OrderFrequency | No |
| OrderRoute | OrderRoute | No |
| OrderType | OrderType | No |
| OrderUnit | OrderUnit | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| uuid | String | Yes |
| name | String | Yes |
| description | String | Yes |
| creator | String | Yes |
| dateCreated | DateTime | Yes |
| lastChangedBy | String | Yes |
| lastChangedDate | DateTime | Yes |
| orderList | Order[] | No |
| _count | OrderFrequencyCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| uuid | String | Yes |
| name | String | Yes |
| description | String | Yes |
| creator | String | Yes |
| dateCreated | DateTime | Yes |
| lastChangedBy | String | Yes |
| lastChangedDate | DateTime | Yes |
| orderList | Order[] | No |
| _count | OrderRouteCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| uuid | String | Yes |
| name | String | Yes |
| description | String | Yes |
| creator | String | Yes |
| dateCreated | DateTime | Yes |
| lastChangedBy | String | Yes |
| lastChangedDate | DateTime | Yes |
| orderList | Order[] | No |
| _count | OrderTypeCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| uuid | String | Yes |
| name | String | Yes |
| description | String | Yes |
| creator | String | Yes |
| dateCreated | DateTime | Yes |
| lastChangedBy | String | Yes |
| lastChangedDate | DateTime | Yes |
| orderList | Order[] | No |
| _count | OrderUnitCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| uuid | String | Yes |
| name | String | Yes |
| description | String | Yes |
| dataType | String | Yes |
| class | String | Yes |
| isRetired | Boolean | Yes |
| retiredBy | String | Yes |
| dateRetired | DateTime | Yes |
| retiredReason | String | Yes |
| creator | String | Yes |
| dateCreated | DateTime | Yes |
| lastChangedBy | String | Yes |
| lastChangedDate | DateTime | Yes |
| conceptClassId | String | No |
| conceptDatatypeId | String | No |
| conceptMapId | String | No |
| conceptSetId | String | No |
| conceptSourceId | String | No |
| metaList | ConceptAnswer[] | No |
| answerList | ConceptAnswer[] | No |
| fieldList | Field[] | No |
| obsList | Obs[] | No |
| orderList | Order[] | No |
| ConceptClass | ConceptClass | No |
| ConceptDatatype | ConceptDatatype | No |
| conceptMap | ConceptMap | No |
| conceptNameList | ConceptName[] | No |
| conceptNumericList | ConceptNumeric[] | No |
| conceptProposalList | ConceptProposal[] | No |
| conceptSet | ConceptSet | No |
| conceptSource | ConceptSource | No |
| conceptWordList | ConceptWord[] | No |
| _count | ConceptCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| uuid | String | Yes |
| conceptId | String | Yes |
| answerConceptId | String | Yes |
| creator | String | Yes |
| dateCreated | DateTime | Yes |
| lastChangedBy | String | Yes |
| lastChangedDate | DateTime | Yes |
| concept | Concept | Yes |
| answerConcept | Concept | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| uuid | String | Yes |
| name | String | Yes |
| description | String | Yes |
| creator | String | Yes |
| dateCreated | DateTime | Yes |
| lastChangedBy | String | Yes |
| lastChangedDate | DateTime | Yes |
| conceptList | Concept[] | No |
| _count | ConceptClassCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| uuid | String | Yes |
| name | String | Yes |
| description | String | Yes |
| creator | String | Yes |
| dateCreated | DateTime | Yes |
| lastChangedBy | String | Yes |
| lastChangedDate | DateTime | Yes |
| conceptList | Concept[] | No |
| _count | ConceptDatatypeCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| uuid | String | Yes |
| name | String | Yes |
| description | String | Yes |
| creator | String | Yes |
| dateCreated | DateTime | Yes |
| lastChangedBy | String | Yes |
| lastChangedDate | DateTime | Yes |
| conceptList | Concept[] | No |
| _count | ConceptMapCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| uuid | String | Yes |
| conceptId | String | Yes |
| name | String | Yes |
| locale | String | Yes |
| creator | String | Yes |
| dateCreated | DateTime | Yes |
| lastChangedBy | String | Yes |
| lastChangedDate | DateTime | Yes |
| concept | Concept | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| uuid | String | Yes |
| conceptId | String | Yes |
| hiAbsolute | Float | Yes |
| hiCritical | Float | Yes |
| hiNormal | Float | Yes |
| lowAbsolute | Float | Yes |
| lowCritical | Float | Yes |
| lowNormal | Float | Yes |
| units | String | Yes |
| creator | String | Yes |
| dateCreated | DateTime | Yes |
| lastChangedBy | String | Yes |
| lastChangedDate | DateTime | Yes |
| concept | Concept | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| uuid | String | Yes |
| conceptId | String | Yes |
| name | String | Yes |
| description | String | Yes |
| creator | String | Yes |
| dateCreated | DateTime | Yes |
| lastChangedBy | String | Yes |
| lastChangedDate | DateTime | Yes |
| concept | Concept | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| uuid | String | Yes |
| name | String | Yes |
| description | String | Yes |
| creator | String | Yes |
| dateCreated | DateTime | Yes |
| lastChangedBy | String | Yes |
| lastChangedDate | DateTime | Yes |
| conceptList | Concept[] | No |
| _count | ConceptSetCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| uuid | String | Yes |
| name | String | Yes |
| description | String | Yes |
| creator | String | Yes |
| dateCreated | DateTime | Yes |
| lastChangedBy | String | Yes |
| lastChangedDate | DateTime | Yes |
| conceptList | Concept[] | No |
| _count | ConceptSourceCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| uuid | String | Yes |
| conceptId | String | Yes |
| word | String | Yes |
| locale | String | Yes |
| creator | String | Yes |
| dateCreated | DateTime | Yes |
| lastChangedBy | String | Yes |
| lastChangedDate | DateTime | Yes |
| concept | Concept | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| uuid | String | Yes |
| name | String | Yes |
| description | String | Yes |
| creator | String | Yes |
| dateCreated | DateTime | Yes |
| lastChangedBy | String | Yes |
| lastChangedDate | DateTime | Yes |
| formResourceList | FormResource[] | No |
| _count | ResourceCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| title | String | Yes |
| content | String | Yes |
| context | Json | Yes |
| authorId | String | Yes |
| spaceTimeCoordinatesId | String | Yes |
| author | BlogPostAuthor | Yes |
| spaceTimeCoordinates | SpaceTimeCoordinates | Yes |
| tagArrowList | BlogPostTagArrow[] | No |
| _count | BlogPostCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| name | String | Yes |
| descriptor | String | No |
| postArrowList | BlogPostTagArrow[] | No |
| _count | BlogPostTagCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| postId | String | Yes |
| tagId | String | Yes |
| post | BlogPost | Yes |
| tag | BlogPostTag | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| name | String | Yes |
| blogPostList | BlogPost[] | No |
| _count | BlogPostAuthorCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| latitude | Float | Yes |
| longitude | Float | Yes |
| startTime | Float | Yes |
| pauseTime | Float | No |
| stopTime | Float | Yes |
| timezone | String | Yes |
| blogPostId | String | Yes |
| BlogPost | BlogPost | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| serviceId | String | Yes |
| cost | Float | Yes |
| discount | Float | Yes |
| promotion | Float | Yes |
| subtotal | Float | Yes |
| percentChange | Float | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| budgetId | String | Yes |
| service | Service | Yes |
| budget | Budget | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| description | String | Yes |
| category | String | Yes |
| metadata | Json | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| entryList | BudgetEntry[] | No |
| _count | ServiceCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| fiscalYear | Int | Yes |
| reportId | String | No |
| entryList | BudgetEntry[] | No |
| report | Report | No |
| userList | BudgetBudUser[] | No |
| _count | BudgetCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| budgetId | String | Yes |
| totalCost | Float | Yes |
| totalDiscount | Float | Yes |
| totalPromotion | Float | Yes |
| totalSubtotal | Float | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| budget | Budget | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| name | String | Yes |
| String | Yes | |
| password | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| budgetList | BudgetBudUser[] | No |
| eventList | BudEvent[] | No |
| _count | BudUserCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| userId | String | Yes |
| budgetId | String | Yes |
| role | String | Yes |
| ability | String | Yes |
| category | String | Yes |
| user | BudUser | Yes |
| budget | Budget | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| type | String | Yes |
| description | String | Yes |
| categoryList | String | No |
| metadata | Json | Yes |
| budUserId | String | Yes |
| createdAt | DateTime | Yes |
| budUser | BudUser | Yes |
| Name | Type | Nullable |
|---|---|---|
| _count | AppointmentCountAggregateOutputType | No |
| _min | AppointmentMinAggregateOutputType | No |
| _max | AppointmentMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| uuid | String | Yes |
| appointmentTypeId | String | Yes |
| patientId | String | Yes |
| locationId | String | Yes |
| providerId | String | Yes |
| startDatetime | DateTime | Yes |
| endDatetime | DateTime | Yes |
| voided | Boolean | Yes |
| voidedBy | String | Yes |
| dateVoided | DateTime | Yes |
| voidReason | String | Yes |
| creator | String | Yes |
| dateCreated | DateTime | Yes |
| lastChangedBy | String | Yes |
| lastChangedDate | DateTime | Yes |
| _count | AppointmentCountAggregateOutputType | No |
| _min | AppointmentMinAggregateOutputType | No |
| _max | AppointmentMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | AppointmentTypeCountAggregateOutputType | No |
| _avg | AppointmentTypeAvgAggregateOutputType | No |
| _sum | AppointmentTypeSumAggregateOutputType | No |
| _min | AppointmentTypeMinAggregateOutputType | No |
| _max | AppointmentTypeMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| uuid | String | Yes |
| name | String | Yes |
| description | String | Yes |
| duration | Int | Yes |
| creator | String | Yes |
| dateCreated | DateTime | Yes |
| lastChangedBy | String | Yes |
| lastChangedDate | DateTime | Yes |
| _count | AppointmentTypeCountAggregateOutputType | No |
| _avg | AppointmentTypeAvgAggregateOutputType | No |
| _sum | AppointmentTypeSumAggregateOutputType | No |
| _min | AppointmentTypeMinAggregateOutputType | No |
| _max | AppointmentTypeMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | LocationCountAggregateOutputType | No |
| _avg | LocationAvgAggregateOutputType | No |
| _sum | LocationSumAggregateOutputType | No |
| _min | LocationMinAggregateOutputType | No |
| _max | LocationMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| uuid | String | Yes |
| name | String | Yes |
| description | String | Yes |
| address1 | String | Yes |
| address2 | String | Yes |
| city | String | Yes |
| stateProvince | String | Yes |
| country | String | Yes |
| postalCode | String | Yes |
| latitude | Float | Yes |
| longitude | Float | Yes |
| creator | String | Yes |
| dateCreated | DateTime | Yes |
| lastChangedBy | String | Yes |
| lastChangedDate | DateTime | Yes |
| _count | LocationCountAggregateOutputType | No |
| _avg | LocationAvgAggregateOutputType | No |
| _sum | LocationSumAggregateOutputType | No |
| _min | LocationMinAggregateOutputType | No |
| _max | LocationMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | PatientCountAggregateOutputType | No |
| _min | PatientMinAggregateOutputType | No |
| _max | PatientMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| uuid | String | Yes |
| givenName | String | Yes |
| middleName | String | Yes |
| familyName | String | Yes |
| gender | String | Yes |
| birthdate | DateTime | Yes |
| dead | Boolean | Yes |
| deathDate | DateTime | Yes |
| causeOfDeath | String | Yes |
| creator | String | Yes |
| dateCreated | DateTime | Yes |
| lastChangedBy | String | Yes |
| lastChangedDate | DateTime | Yes |
| _count | PatientCountAggregateOutputType | No |
| _min | PatientMinAggregateOutputType | No |
| _max | PatientMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | ProviderCountAggregateOutputType | No |
| _min | ProviderMinAggregateOutputType | No |
| _max | ProviderMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| uuid | String | Yes |
| name | String | Yes |
| identifier | String | Yes |
| description | String | Yes |
| voided | Boolean | Yes |
| voidedBy | String | Yes |
| dateVoided | DateTime | Yes |
| voidReason | String | Yes |
| creator | String | Yes |
| dateCreated | DateTime | Yes |
| lastChangedBy | String | Yes |
| lastChangedDate | DateTime | Yes |
| _count | ProviderCountAggregateOutputType | No |
| _min | ProviderMinAggregateOutputType | No |
| _max | ProviderMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | FormCountAggregateOutputType | No |
| _min | FormMinAggregateOutputType | No |
| _max | FormMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| uuid | String | Yes |
| name | String | Yes |
| description | String | Yes |
| version | String | Yes |
| retired | Boolean | Yes |
| retiredBy | String | Yes |
| dateRetired | DateTime | Yes |
| retiredReason | String | Yes |
| creator | String | Yes |
| dateCreated | DateTime | Yes |
| lastChangedBy | String | Yes |
| lastChangedDate | DateTime | Yes |
| fieldId | String | No |
| _count | FormCountAggregateOutputType | No |
| _min | FormMinAggregateOutputType | No |
| _max | FormMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | FormEncounterCountAggregateOutputType | No |
| _min | FormEncounterMinAggregateOutputType | No |
| _max | FormEncounterMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| uuid | String | Yes |
| formId | String | Yes |
| encounterId | String | Yes |
| creator | String | Yes |
| dateCreated | DateTime | Yes |
| lastChangedBy | String | Yes |
| lastChangedDate | DateTime | Yes |
| _count | FormEncounterCountAggregateOutputType | No |
| _min | FormEncounterMinAggregateOutputType | No |
| _max | FormEncounterMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | FormResourceCountAggregateOutputType | No |
| _min | FormResourceMinAggregateOutputType | No |
| _max | FormResourceMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| uuid | String | Yes |
| formId | String | Yes |
| resourceId | String | Yes |
| creator | String | Yes |
| dateCreated | DateTime | Yes |
| lastChangedBy | String | Yes |
| lastChangedDate | DateTime | Yes |
| _count | FormResourceCountAggregateOutputType | No |
| _min | FormResourceMinAggregateOutputType | No |
| _max | FormResourceMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | FormSubmissionCountAggregateOutputType | No |
| _min | FormSubmissionMinAggregateOutputType | No |
| _max | FormSubmissionMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| uuid | String | Yes |
| formId | String | Yes |
| encounterId | String | Yes |
| submissionDate | DateTime | Yes |
| creator | String | Yes |
| dateCreated | DateTime | Yes |
| lastChangedBy | String | Yes |
| lastChangedDate | DateTime | Yes |
| _count | FormSubmissionCountAggregateOutputType | No |
| _min | FormSubmissionMinAggregateOutputType | No |
| _max | FormSubmissionMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | FieldCountAggregateOutputType | No |
| _min | FieldMinAggregateOutputType | No |
| _max | FieldMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| uuid | String | Yes |
| name | String | Yes |
| description | String | Yes |
| fieldType | String | Yes |
| conceptId | String | Yes |
| creator | String | Yes |
| dateCreated | DateTime | Yes |
| lastChangedBy | String | Yes |
| lastChangedDate | DateTime | Yes |
| _count | FieldCountAggregateOutputType | No |
| _min | FieldMinAggregateOutputType | No |
| _max | FieldMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | FieldAnswerCountAggregateOutputType | No |
| _min | FieldAnswerMinAggregateOutputType | No |
| _max | FieldAnswerMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| uuid | String | Yes |
| formSubmissionId | String | Yes |
| fieldId | String | Yes |
| value | String | Yes |
| creator | String | Yes |
| dateCreated | DateTime | Yes |
| lastChangedBy | String | Yes |
| lastChangedDate | DateTime | Yes |
| _count | FieldAnswerCountAggregateOutputType | No |
| _min | FieldAnswerMinAggregateOutputType | No |
| _max | FieldAnswerMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | FieldOptionCountAggregateOutputType | No |
| _min | FieldOptionMinAggregateOutputType | No |
| _max | FieldOptionMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| uuid | String | Yes |
| fieldId | String | Yes |
| name | String | Yes |
| description | String | Yes |
| creator | String | Yes |
| dateCreated | DateTime | Yes |
| lastChangedBy | String | Yes |
| lastChangedDate | DateTime | Yes |
| _count | FieldOptionCountAggregateOutputType | No |
| _min | FieldOptionMinAggregateOutputType | No |
| _max | FieldOptionMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | EncounterCountAggregateOutputType | No |
| _min | EncounterMinAggregateOutputType | No |
| _max | EncounterMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| uuid | String | Yes |
| encounterTypeId | String | Yes |
| patientId | String | Yes |
| locationId | String | Yes |
| formId | String | Yes |
| providerId | String | Yes |
| startDatetime | DateTime | Yes |
| endDatetime | DateTime | Yes |
| voided | Boolean | Yes |
| voidedBy | String | Yes |
| dateVoided | DateTime | Yes |
| voidReason | String | Yes |
| creator | String | Yes |
| dateCreated | DateTime | Yes |
| lastChangedBy | String | Yes |
| lastChangedDate | DateTime | Yes |
| _count | EncounterCountAggregateOutputType | No |
| _min | EncounterMinAggregateOutputType | No |
| _max | EncounterMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | EncounterTypeCountAggregateOutputType | No |
| _min | EncounterTypeMinAggregateOutputType | No |
| _max | EncounterTypeMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| uuid | String | Yes |
| name | String | Yes |
| description | String | Yes |
| creator | String | Yes |
| dateCreated | DateTime | Yes |
| lastChangedBy | String | Yes |
| lastChangedDate | DateTime | Yes |
| _count | EncounterTypeCountAggregateOutputType | No |
| _min | EncounterTypeMinAggregateOutputType | No |
| _max | EncounterTypeMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | ObsCountAggregateOutputType | No |
| _avg | ObsAvgAggregateOutputType | No |
| _sum | ObsSumAggregateOutputType | No |
| _min | ObsMinAggregateOutputType | No |
| _max | ObsMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| uuid | String | Yes |
| conceptId | String | Yes |
| encounterId | String | Yes |
| obsDatetime | DateTime | Yes |
| valueDatetime | DateTime | Yes |
| valueNumeric | Float | Yes |
| valueText | String | Yes |
| creator | String | Yes |
| dateCreated | DateTime | Yes |
| lastChangedBy | String | Yes |
| lastChangedDate | DateTime | Yes |
| _count | ObsCountAggregateOutputType | No |
| _avg | ObsAvgAggregateOutputType | No |
| _sum | ObsSumAggregateOutputType | No |
| _min | ObsMinAggregateOutputType | No |
| _max | ObsMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | OrderCountAggregateOutputType | No |
| _avg | OrderAvgAggregateOutputType | No |
| _sum | OrderSumAggregateOutputType | No |
| _min | OrderMinAggregateOutputType | No |
| _max | OrderMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| uuid | String | Yes |
| conceptId | String | Yes |
| encounterId | String | Yes |
| orderDatetime | DateTime | Yes |
| instructions | String | Yes |
| dosage | String | Yes |
| route | String | Yes |
| frequency | String | Yes |
| asNeeded | Boolean | Yes |
| prn | Boolean | Yes |
| quantity | Int | Yes |
| units | String | Yes |
| creator | String | Yes |
| dateCreated | DateTime | Yes |
| lastChangedBy | String | Yes |
| lastChangedDate | DateTime | Yes |
| orderFrequencyId | String | No |
| orderRouteId | String | No |
| orderTypeId | String | No |
| orderUnitId | String | No |
| _count | OrderCountAggregateOutputType | No |
| _avg | OrderAvgAggregateOutputType | No |
| _sum | OrderSumAggregateOutputType | No |
| _min | OrderMinAggregateOutputType | No |
| _max | OrderMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | OrderFrequencyCountAggregateOutputType | No |
| _min | OrderFrequencyMinAggregateOutputType | No |
| _max | OrderFrequencyMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| uuid | String | Yes |
| name | String | Yes |
| description | String | Yes |
| creator | String | Yes |
| dateCreated | DateTime | Yes |
| lastChangedBy | String | Yes |
| lastChangedDate | DateTime | Yes |
| _count | OrderFrequencyCountAggregateOutputType | No |
| _min | OrderFrequencyMinAggregateOutputType | No |
| _max | OrderFrequencyMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | OrderRouteCountAggregateOutputType | No |
| _min | OrderRouteMinAggregateOutputType | No |
| _max | OrderRouteMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| uuid | String | Yes |
| name | String | Yes |
| description | String | Yes |
| creator | String | Yes |
| dateCreated | DateTime | Yes |
| lastChangedBy | String | Yes |
| lastChangedDate | DateTime | Yes |
| _count | OrderRouteCountAggregateOutputType | No |
| _min | OrderRouteMinAggregateOutputType | No |
| _max | OrderRouteMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | OrderTypeCountAggregateOutputType | No |
| _min | OrderTypeMinAggregateOutputType | No |
| _max | OrderTypeMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| uuid | String | Yes |
| name | String | Yes |
| description | String | Yes |
| creator | String | Yes |
| dateCreated | DateTime | Yes |
| lastChangedBy | String | Yes |
| lastChangedDate | DateTime | Yes |
| _count | OrderTypeCountAggregateOutputType | No |
| _min | OrderTypeMinAggregateOutputType | No |
| _max | OrderTypeMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | OrderUnitCountAggregateOutputType | No |
| _min | OrderUnitMinAggregateOutputType | No |
| _max | OrderUnitMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| uuid | String | Yes |
| name | String | Yes |
| description | String | Yes |
| creator | String | Yes |
| dateCreated | DateTime | Yes |
| lastChangedBy | String | Yes |
| lastChangedDate | DateTime | Yes |
| _count | OrderUnitCountAggregateOutputType | No |
| _min | OrderUnitMinAggregateOutputType | No |
| _max | OrderUnitMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | ConceptCountAggregateOutputType | No |
| _min | ConceptMinAggregateOutputType | No |
| _max | ConceptMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| uuid | String | Yes |
| name | String | Yes |
| description | String | Yes |
| dataType | String | Yes |
| class | String | Yes |
| isRetired | Boolean | Yes |
| retiredBy | String | Yes |
| dateRetired | DateTime | Yes |
| retiredReason | String | Yes |
| creator | String | Yes |
| dateCreated | DateTime | Yes |
| lastChangedBy | String | Yes |
| lastChangedDate | DateTime | Yes |
| conceptClassId | String | No |
| conceptDatatypeId | String | No |
| conceptMapId | String | No |
| conceptSetId | String | No |
| conceptSourceId | String | No |
| _count | ConceptCountAggregateOutputType | No |
| _min | ConceptMinAggregateOutputType | No |
| _max | ConceptMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | ConceptAnswerCountAggregateOutputType | No |
| _min | ConceptAnswerMinAggregateOutputType | No |
| _max | ConceptAnswerMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| uuid | String | Yes |
| conceptId | String | Yes |
| answerConceptId | String | Yes |
| creator | String | Yes |
| dateCreated | DateTime | Yes |
| lastChangedBy | String | Yes |
| lastChangedDate | DateTime | Yes |
| _count | ConceptAnswerCountAggregateOutputType | No |
| _min | ConceptAnswerMinAggregateOutputType | No |
| _max | ConceptAnswerMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | ConceptClassCountAggregateOutputType | No |
| _min | ConceptClassMinAggregateOutputType | No |
| _max | ConceptClassMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| uuid | String | Yes |
| name | String | Yes |
| description | String | Yes |
| creator | String | Yes |
| dateCreated | DateTime | Yes |
| lastChangedBy | String | Yes |
| lastChangedDate | DateTime | Yes |
| _count | ConceptClassCountAggregateOutputType | No |
| _min | ConceptClassMinAggregateOutputType | No |
| _max | ConceptClassMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | ConceptDatatypeCountAggregateOutputType | No |
| _min | ConceptDatatypeMinAggregateOutputType | No |
| _max | ConceptDatatypeMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| uuid | String | Yes |
| name | String | Yes |
| description | String | Yes |
| creator | String | Yes |
| dateCreated | DateTime | Yes |
| lastChangedBy | String | Yes |
| lastChangedDate | DateTime | Yes |
| _count | ConceptDatatypeCountAggregateOutputType | No |
| _min | ConceptDatatypeMinAggregateOutputType | No |
| _max | ConceptDatatypeMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | ConceptMapCountAggregateOutputType | No |
| _min | ConceptMapMinAggregateOutputType | No |
| _max | ConceptMapMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| uuid | String | Yes |
| name | String | Yes |
| description | String | Yes |
| creator | String | Yes |
| dateCreated | DateTime | Yes |
| lastChangedBy | String | Yes |
| lastChangedDate | DateTime | Yes |
| _count | ConceptMapCountAggregateOutputType | No |
| _min | ConceptMapMinAggregateOutputType | No |
| _max | ConceptMapMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | ConceptNameCountAggregateOutputType | No |
| _min | ConceptNameMinAggregateOutputType | No |
| _max | ConceptNameMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| uuid | String | Yes |
| conceptId | String | Yes |
| name | String | Yes |
| locale | String | Yes |
| creator | String | Yes |
| dateCreated | DateTime | Yes |
| lastChangedBy | String | Yes |
| lastChangedDate | DateTime | Yes |
| _count | ConceptNameCountAggregateOutputType | No |
| _min | ConceptNameMinAggregateOutputType | No |
| _max | ConceptNameMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | ConceptNumericCountAggregateOutputType | No |
| _avg | ConceptNumericAvgAggregateOutputType | No |
| _sum | ConceptNumericSumAggregateOutputType | No |
| _min | ConceptNumericMinAggregateOutputType | No |
| _max | ConceptNumericMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| uuid | String | Yes |
| conceptId | String | Yes |
| hiAbsolute | Float | Yes |
| hiCritical | Float | Yes |
| hiNormal | Float | Yes |
| lowAbsolute | Float | Yes |
| lowCritical | Float | Yes |
| lowNormal | Float | Yes |
| units | String | Yes |
| creator | String | Yes |
| dateCreated | DateTime | Yes |
| lastChangedBy | String | Yes |
| lastChangedDate | DateTime | Yes |
| _count | ConceptNumericCountAggregateOutputType | No |
| _avg | ConceptNumericAvgAggregateOutputType | No |
| _sum | ConceptNumericSumAggregateOutputType | No |
| _min | ConceptNumericMinAggregateOutputType | No |
| _max | ConceptNumericMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | ConceptProposalCountAggregateOutputType | No |
| _min | ConceptProposalMinAggregateOutputType | No |
| _max | ConceptProposalMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| uuid | String | Yes |
| conceptId | String | Yes |
| name | String | Yes |
| description | String | Yes |
| creator | String | Yes |
| dateCreated | DateTime | Yes |
| lastChangedBy | String | Yes |
| lastChangedDate | DateTime | Yes |
| _count | ConceptProposalCountAggregateOutputType | No |
| _min | ConceptProposalMinAggregateOutputType | No |
| _max | ConceptProposalMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | ConceptSetCountAggregateOutputType | No |
| _min | ConceptSetMinAggregateOutputType | No |
| _max | ConceptSetMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| uuid | String | Yes |
| name | String | Yes |
| description | String | Yes |
| creator | String | Yes |
| dateCreated | DateTime | Yes |
| lastChangedBy | String | Yes |
| lastChangedDate | DateTime | Yes |
| _count | ConceptSetCountAggregateOutputType | No |
| _min | ConceptSetMinAggregateOutputType | No |
| _max | ConceptSetMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | ConceptSourceCountAggregateOutputType | No |
| _min | ConceptSourceMinAggregateOutputType | No |
| _max | ConceptSourceMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| uuid | String | Yes |
| name | String | Yes |
| description | String | Yes |
| creator | String | Yes |
| dateCreated | DateTime | Yes |
| lastChangedBy | String | Yes |
| lastChangedDate | DateTime | Yes |
| _count | ConceptSourceCountAggregateOutputType | No |
| _min | ConceptSourceMinAggregateOutputType | No |
| _max | ConceptSourceMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | ConceptWordCountAggregateOutputType | No |
| _min | ConceptWordMinAggregateOutputType | No |
| _max | ConceptWordMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| uuid | String | Yes |
| conceptId | String | Yes |
| word | String | Yes |
| locale | String | Yes |
| creator | String | Yes |
| dateCreated | DateTime | Yes |
| lastChangedBy | String | Yes |
| lastChangedDate | DateTime | Yes |
| _count | ConceptWordCountAggregateOutputType | No |
| _min | ConceptWordMinAggregateOutputType | No |
| _max | ConceptWordMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | ResourceCountAggregateOutputType | No |
| _min | ResourceMinAggregateOutputType | No |
| _max | ResourceMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| uuid | String | Yes |
| name | String | Yes |
| description | String | Yes |
| creator | String | Yes |
| dateCreated | DateTime | Yes |
| lastChangedBy | String | Yes |
| lastChangedDate | DateTime | Yes |
| _count | ResourceCountAggregateOutputType | No |
| _min | ResourceMinAggregateOutputType | No |
| _max | ResourceMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | BlogPostCountAggregateOutputType | No |
| _min | BlogPostMinAggregateOutputType | No |
| _max | BlogPostMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| title | String | Yes |
| content | String | Yes |
| context | Json | Yes |
| authorId | String | Yes |
| spaceTimeCoordinatesId | String | Yes |
| _count | BlogPostCountAggregateOutputType | No |
| _min | BlogPostMinAggregateOutputType | No |
| _max | BlogPostMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | BlogPostTagCountAggregateOutputType | No |
| _min | BlogPostTagMinAggregateOutputType | No |
| _max | BlogPostTagMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| name | String | Yes |
| descriptor | String | No |
| _count | BlogPostTagCountAggregateOutputType | No |
| _min | BlogPostTagMinAggregateOutputType | No |
| _max | BlogPostTagMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | BlogPostTagArrowCountAggregateOutputType | No |
| _min | BlogPostTagArrowMinAggregateOutputType | No |
| _max | BlogPostTagArrowMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| postId | String | Yes |
| tagId | String | Yes |
| _count | BlogPostTagArrowCountAggregateOutputType | No |
| _min | BlogPostTagArrowMinAggregateOutputType | No |
| _max | BlogPostTagArrowMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | BlogPostAuthorCountAggregateOutputType | No |
| _min | BlogPostAuthorMinAggregateOutputType | No |
| _max | BlogPostAuthorMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| name | String | Yes |
| _count | BlogPostAuthorCountAggregateOutputType | No |
| _min | BlogPostAuthorMinAggregateOutputType | No |
| _max | BlogPostAuthorMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SpaceTimeCoordinatesCountAggregateOutputType | No |
| _avg | SpaceTimeCoordinatesAvgAggregateOutputType | No |
| _sum | SpaceTimeCoordinatesSumAggregateOutputType | No |
| _min | SpaceTimeCoordinatesMinAggregateOutputType | No |
| _max | SpaceTimeCoordinatesMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| latitude | Float | Yes |
| longitude | Float | Yes |
| startTime | Float | Yes |
| pauseTime | Float | No |
| stopTime | Float | Yes |
| timezone | String | Yes |
| blogPostId | String | Yes |
| _count | SpaceTimeCoordinatesCountAggregateOutputType | No |
| _avg | SpaceTimeCoordinatesAvgAggregateOutputType | No |
| _sum | SpaceTimeCoordinatesSumAggregateOutputType | No |
| _min | SpaceTimeCoordinatesMinAggregateOutputType | No |
| _max | SpaceTimeCoordinatesMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | BudgetEntryCountAggregateOutputType | No |
| _avg | BudgetEntryAvgAggregateOutputType | No |
| _sum | BudgetEntrySumAggregateOutputType | No |
| _min | BudgetEntryMinAggregateOutputType | No |
| _max | BudgetEntryMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| serviceId | String | Yes |
| cost | Float | Yes |
| discount | Float | Yes |
| promotion | Float | Yes |
| subtotal | Float | Yes |
| percentChange | Float | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| budgetId | String | Yes |
| _count | BudgetEntryCountAggregateOutputType | No |
| _avg | BudgetEntryAvgAggregateOutputType | No |
| _sum | BudgetEntrySumAggregateOutputType | No |
| _min | BudgetEntryMinAggregateOutputType | No |
| _max | BudgetEntryMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | ServiceCountAggregateOutputType | No |
| _min | ServiceMinAggregateOutputType | No |
| _max | ServiceMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| description | String | Yes |
| category | String | Yes |
| metadata | Json | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| _count | ServiceCountAggregateOutputType | No |
| _min | ServiceMinAggregateOutputType | No |
| _max | ServiceMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | BudgetCountAggregateOutputType | No |
| _avg | BudgetAvgAggregateOutputType | No |
| _sum | BudgetSumAggregateOutputType | No |
| _min | BudgetMinAggregateOutputType | No |
| _max | BudgetMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| fiscalYear | Int | Yes |
| reportId | String | No |
| _count | BudgetCountAggregateOutputType | No |
| _avg | BudgetAvgAggregateOutputType | No |
| _sum | BudgetSumAggregateOutputType | No |
| _min | BudgetMinAggregateOutputType | No |
| _max | BudgetMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | ReportCountAggregateOutputType | No |
| _avg | ReportAvgAggregateOutputType | No |
| _sum | ReportSumAggregateOutputType | No |
| _min | ReportMinAggregateOutputType | No |
| _max | ReportMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| budgetId | String | Yes |
| totalCost | Float | Yes |
| totalDiscount | Float | Yes |
| totalPromotion | Float | Yes |
| totalSubtotal | Float | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| _count | ReportCountAggregateOutputType | No |
| _avg | ReportAvgAggregateOutputType | No |
| _sum | ReportSumAggregateOutputType | No |
| _min | ReportMinAggregateOutputType | No |
| _max | ReportMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | BudUserCountAggregateOutputType | No |
| _min | BudUserMinAggregateOutputType | No |
| _max | BudUserMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| name | String | Yes |
| String | Yes | |
| password | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| _count | BudUserCountAggregateOutputType | No |
| _min | BudUserMinAggregateOutputType | No |
| _max | BudUserMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | BudgetBudUserCountAggregateOutputType | No |
| _min | BudgetBudUserMinAggregateOutputType | No |
| _max | BudgetBudUserMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | Yes |
| budgetId | String | Yes |
| role | String | Yes |
| ability | String | Yes |
| category | String | Yes |
| _count | BudgetBudUserCountAggregateOutputType | No |
| _min | BudgetBudUserMinAggregateOutputType | No |
| _max | BudgetBudUserMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | BudEventCountAggregateOutputType | No |
| _min | BudEventMinAggregateOutputType | No |
| _max | BudEventMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| type | String | Yes |
| description | String | Yes |
| categoryList | String | No |
| metadata | Json | Yes |
| budUserId | String | Yes |
| createdAt | DateTime | Yes |
| _count | BudEventCountAggregateOutputType | No |
| _min | BudEventMinAggregateOutputType | No |
| _max | BudEventMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| count | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| uuid | Int | Yes |
| appointmentTypeId | Int | Yes |
| patientId | Int | Yes |
| locationId | Int | Yes |
| providerId | Int | Yes |
| startDatetime | Int | Yes |
| endDatetime | Int | Yes |
| voided | Int | Yes |
| voidedBy | Int | Yes |
| dateVoided | Int | Yes |
| voidReason | Int | Yes |
| creator | Int | Yes |
| dateCreated | Int | Yes |
| lastChangedBy | Int | Yes |
| lastChangedDate | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| appointmentTypeId | String | No |
| patientId | String | No |
| locationId | String | No |
| providerId | String | No |
| startDatetime | DateTime | No |
| endDatetime | DateTime | No |
| voided | Boolean | No |
| voidedBy | String | No |
| dateVoided | DateTime | No |
| voidReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| appointmentTypeId | String | No |
| patientId | String | No |
| locationId | String | No |
| providerId | String | No |
| startDatetime | DateTime | No |
| endDatetime | DateTime | No |
| voided | Boolean | No |
| voidedBy | String | No |
| dateVoided | DateTime | No |
| voidReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| appointmentList | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| uuid | Int | Yes |
| name | Int | Yes |
| description | Int | Yes |
| duration | Int | Yes |
| creator | Int | Yes |
| dateCreated | Int | Yes |
| lastChangedBy | Int | Yes |
| lastChangedDate | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| duration | Float | No |
| Name | Type | Nullable |
|---|---|---|
| duration | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| duration | Int | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| duration | Int | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| appointmentList | Int | Yes |
| encounterList | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| uuid | Int | Yes |
| name | Int | Yes |
| description | Int | Yes |
| address1 | Int | Yes |
| address2 | Int | Yes |
| city | Int | Yes |
| stateProvince | Int | Yes |
| country | Int | Yes |
| postalCode | Int | Yes |
| latitude | Int | Yes |
| longitude | Int | Yes |
| creator | Int | Yes |
| dateCreated | Int | Yes |
| lastChangedBy | Int | Yes |
| lastChangedDate | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| latitude | Float | No |
| longitude | Float | No |
| Name | Type | Nullable |
|---|---|---|
| latitude | Float | No |
| longitude | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| address1 | String | No |
| address2 | String | No |
| city | String | No |
| stateProvince | String | No |
| country | String | No |
| postalCode | String | No |
| latitude | Float | No |
| longitude | Float | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| address1 | String | No |
| address2 | String | No |
| city | String | No |
| stateProvince | String | No |
| country | String | No |
| postalCode | String | No |
| latitude | Float | No |
| longitude | Float | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| appointmentList | Int | Yes |
| encounterList | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| uuid | Int | Yes |
| givenName | Int | Yes |
| middleName | Int | Yes |
| familyName | Int | Yes |
| gender | Int | Yes |
| birthdate | Int | Yes |
| dead | Int | Yes |
| deathDate | Int | Yes |
| causeOfDeath | Int | Yes |
| creator | Int | Yes |
| dateCreated | Int | Yes |
| lastChangedBy | Int | Yes |
| lastChangedDate | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| givenName | String | No |
| middleName | String | No |
| familyName | String | No |
| gender | String | No |
| birthdate | DateTime | No |
| dead | Boolean | No |
| deathDate | DateTime | No |
| causeOfDeath | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| givenName | String | No |
| middleName | String | No |
| familyName | String | No |
| gender | String | No |
| birthdate | DateTime | No |
| dead | Boolean | No |
| deathDate | DateTime | No |
| causeOfDeath | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| appointmentList | Int | Yes |
| encounterList | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| uuid | Int | Yes |
| name | Int | Yes |
| identifier | Int | Yes |
| description | Int | Yes |
| voided | Int | Yes |
| voidedBy | Int | Yes |
| dateVoided | Int | Yes |
| voidReason | Int | Yes |
| creator | Int | Yes |
| dateCreated | Int | Yes |
| lastChangedBy | Int | Yes |
| lastChangedDate | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| identifier | String | No |
| description | String | No |
| voided | Boolean | No |
| voidedBy | String | No |
| dateVoided | DateTime | No |
| voidReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| identifier | String | No |
| description | String | No |
| voided | Boolean | No |
| voidedBy | String | No |
| dateVoided | DateTime | No |
| voidReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| formEncounterList | Int | Yes |
| formResourceList | Int | Yes |
| formSubmissionList | Int | Yes |
| encounterList | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| uuid | Int | Yes |
| name | Int | Yes |
| description | Int | Yes |
| version | Int | Yes |
| retired | Int | Yes |
| retiredBy | Int | Yes |
| dateRetired | Int | Yes |
| retiredReason | Int | Yes |
| creator | Int | Yes |
| dateCreated | Int | Yes |
| lastChangedBy | Int | Yes |
| lastChangedDate | Int | Yes |
| fieldId | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| version | String | No |
| retired | Boolean | No |
| retiredBy | String | No |
| dateRetired | DateTime | No |
| retiredReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| fieldId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| version | String | No |
| retired | Boolean | No |
| retiredBy | String | No |
| dateRetired | DateTime | No |
| retiredReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| fieldId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| uuid | Int | Yes |
| formId | Int | Yes |
| encounterId | Int | Yes |
| creator | Int | Yes |
| dateCreated | Int | Yes |
| lastChangedBy | Int | Yes |
| lastChangedDate | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| formId | String | No |
| encounterId | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| formId | String | No |
| encounterId | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| uuid | Int | Yes |
| formId | Int | Yes |
| resourceId | Int | Yes |
| creator | Int | Yes |
| dateCreated | Int | Yes |
| lastChangedBy | Int | Yes |
| lastChangedDate | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| formId | String | No |
| resourceId | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| formId | String | No |
| resourceId | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| fieldAnswerList | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| uuid | Int | Yes |
| formId | Int | Yes |
| encounterId | Int | Yes |
| submissionDate | Int | Yes |
| creator | Int | Yes |
| dateCreated | Int | Yes |
| lastChangedBy | Int | Yes |
| lastChangedDate | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| formId | String | No |
| encounterId | String | No |
| submissionDate | DateTime | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| formId | String | No |
| encounterId | String | No |
| submissionDate | DateTime | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| formList | Int | Yes |
| fieldAnswerList | Int | Yes |
| fieldOptionList | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| uuid | Int | Yes |
| name | Int | Yes |
| description | Int | Yes |
| fieldType | Int | Yes |
| conceptId | Int | Yes |
| creator | Int | Yes |
| dateCreated | Int | Yes |
| lastChangedBy | Int | Yes |
| lastChangedDate | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| fieldType | String | No |
| conceptId | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| fieldType | String | No |
| conceptId | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| uuid | Int | Yes |
| formSubmissionId | Int | Yes |
| fieldId | Int | Yes |
| value | Int | Yes |
| creator | Int | Yes |
| dateCreated | Int | Yes |
| lastChangedBy | Int | Yes |
| lastChangedDate | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| formSubmissionId | String | No |
| fieldId | String | No |
| value | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| formSubmissionId | String | No |
| fieldId | String | No |
| value | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| uuid | Int | Yes |
| fieldId | Int | Yes |
| name | Int | Yes |
| description | Int | Yes |
| creator | Int | Yes |
| dateCreated | Int | Yes |
| lastChangedBy | Int | Yes |
| lastChangedDate | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| fieldId | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| fieldId | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| formEncounterList | Int | Yes |
| formSubmissionList | Int | Yes |
| obsList | Int | Yes |
| orderList | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| uuid | Int | Yes |
| encounterTypeId | Int | Yes |
| patientId | Int | Yes |
| locationId | Int | Yes |
| formId | Int | Yes |
| providerId | Int | Yes |
| startDatetime | Int | Yes |
| endDatetime | Int | Yes |
| voided | Int | Yes |
| voidedBy | Int | Yes |
| dateVoided | Int | Yes |
| voidReason | Int | Yes |
| creator | Int | Yes |
| dateCreated | Int | Yes |
| lastChangedBy | Int | Yes |
| lastChangedDate | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| encounterTypeId | String | No |
| patientId | String | No |
| locationId | String | No |
| formId | String | No |
| providerId | String | No |
| startDatetime | DateTime | No |
| endDatetime | DateTime | No |
| voided | Boolean | No |
| voidedBy | String | No |
| dateVoided | DateTime | No |
| voidReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| encounterTypeId | String | No |
| patientId | String | No |
| locationId | String | No |
| formId | String | No |
| providerId | String | No |
| startDatetime | DateTime | No |
| endDatetime | DateTime | No |
| voided | Boolean | No |
| voidedBy | String | No |
| dateVoided | DateTime | No |
| voidReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| encounterList | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| uuid | Int | Yes |
| name | Int | Yes |
| description | Int | Yes |
| creator | Int | Yes |
| dateCreated | Int | Yes |
| lastChangedBy | Int | Yes |
| lastChangedDate | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| uuid | Int | Yes |
| conceptId | Int | Yes |
| encounterId | Int | Yes |
| obsDatetime | Int | Yes |
| valueDatetime | Int | Yes |
| valueNumeric | Int | Yes |
| valueText | Int | Yes |
| creator | Int | Yes |
| dateCreated | Int | Yes |
| lastChangedBy | Int | Yes |
| lastChangedDate | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| valueNumeric | Float | No |
| Name | Type | Nullable |
|---|---|---|
| valueNumeric | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| conceptId | String | No |
| encounterId | String | No |
| obsDatetime | DateTime | No |
| valueDatetime | DateTime | No |
| valueNumeric | Float | No |
| valueText | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| conceptId | String | No |
| encounterId | String | No |
| obsDatetime | DateTime | No |
| valueDatetime | DateTime | No |
| valueNumeric | Float | No |
| valueText | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| uuid | Int | Yes |
| conceptId | Int | Yes |
| encounterId | Int | Yes |
| orderDatetime | Int | Yes |
| instructions | Int | Yes |
| dosage | Int | Yes |
| route | Int | Yes |
| frequency | Int | Yes |
| asNeeded | Int | Yes |
| prn | Int | Yes |
| quantity | Int | Yes |
| units | Int | Yes |
| creator | Int | Yes |
| dateCreated | Int | Yes |
| lastChangedBy | Int | Yes |
| lastChangedDate | Int | Yes |
| orderFrequencyId | Int | Yes |
| orderRouteId | Int | Yes |
| orderTypeId | Int | Yes |
| orderUnitId | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| quantity | Float | No |
| Name | Type | Nullable |
|---|---|---|
| quantity | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| conceptId | String | No |
| encounterId | String | No |
| orderDatetime | DateTime | No |
| instructions | String | No |
| dosage | String | No |
| route | String | No |
| frequency | String | No |
| asNeeded | Boolean | No |
| prn | Boolean | No |
| quantity | Int | No |
| units | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| orderFrequencyId | String | No |
| orderRouteId | String | No |
| orderTypeId | String | No |
| orderUnitId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| conceptId | String | No |
| encounterId | String | No |
| orderDatetime | DateTime | No |
| instructions | String | No |
| dosage | String | No |
| route | String | No |
| frequency | String | No |
| asNeeded | Boolean | No |
| prn | Boolean | No |
| quantity | Int | No |
| units | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| orderFrequencyId | String | No |
| orderRouteId | String | No |
| orderTypeId | String | No |
| orderUnitId | String | No |
| Name | Type | Nullable |
|---|---|---|
| orderList | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| uuid | Int | Yes |
| name | Int | Yes |
| description | Int | Yes |
| creator | Int | Yes |
| dateCreated | Int | Yes |
| lastChangedBy | Int | Yes |
| lastChangedDate | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| orderList | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| uuid | Int | Yes |
| name | Int | Yes |
| description | Int | Yes |
| creator | Int | Yes |
| dateCreated | Int | Yes |
| lastChangedBy | Int | Yes |
| lastChangedDate | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| orderList | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| uuid | Int | Yes |
| name | Int | Yes |
| description | Int | Yes |
| creator | Int | Yes |
| dateCreated | Int | Yes |
| lastChangedBy | Int | Yes |
| lastChangedDate | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| orderList | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| uuid | Int | Yes |
| name | Int | Yes |
| description | Int | Yes |
| creator | Int | Yes |
| dateCreated | Int | Yes |
| lastChangedBy | Int | Yes |
| lastChangedDate | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| metaList | Int | Yes |
| answerList | Int | Yes |
| fieldList | Int | Yes |
| obsList | Int | Yes |
| orderList | Int | Yes |
| conceptNameList | Int | Yes |
| conceptNumericList | Int | Yes |
| conceptProposalList | Int | Yes |
| conceptWordList | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| uuid | Int | Yes |
| name | Int | Yes |
| description | Int | Yes |
| dataType | Int | Yes |
| class | Int | Yes |
| isRetired | Int | Yes |
| retiredBy | Int | Yes |
| dateRetired | Int | Yes |
| retiredReason | Int | Yes |
| creator | Int | Yes |
| dateCreated | Int | Yes |
| lastChangedBy | Int | Yes |
| lastChangedDate | Int | Yes |
| conceptClassId | Int | Yes |
| conceptDatatypeId | Int | Yes |
| conceptMapId | Int | Yes |
| conceptSetId | Int | Yes |
| conceptSourceId | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| dataType | String | No |
| class | String | No |
| isRetired | Boolean | No |
| retiredBy | String | No |
| dateRetired | DateTime | No |
| retiredReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| conceptClassId | String | No |
| conceptDatatypeId | String | No |
| conceptMapId | String | No |
| conceptSetId | String | No |
| conceptSourceId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| dataType | String | No |
| class | String | No |
| isRetired | Boolean | No |
| retiredBy | String | No |
| dateRetired | DateTime | No |
| retiredReason | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| conceptClassId | String | No |
| conceptDatatypeId | String | No |
| conceptMapId | String | No |
| conceptSetId | String | No |
| conceptSourceId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| uuid | Int | Yes |
| conceptId | Int | Yes |
| answerConceptId | Int | Yes |
| creator | Int | Yes |
| dateCreated | Int | Yes |
| lastChangedBy | Int | Yes |
| lastChangedDate | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| conceptId | String | No |
| answerConceptId | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| conceptId | String | No |
| answerConceptId | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| conceptList | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| uuid | Int | Yes |
| name | Int | Yes |
| description | Int | Yes |
| creator | Int | Yes |
| dateCreated | Int | Yes |
| lastChangedBy | Int | Yes |
| lastChangedDate | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| conceptList | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| uuid | Int | Yes |
| name | Int | Yes |
| description | Int | Yes |
| creator | Int | Yes |
| dateCreated | Int | Yes |
| lastChangedBy | Int | Yes |
| lastChangedDate | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| conceptList | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| uuid | Int | Yes |
| name | Int | Yes |
| description | Int | Yes |
| creator | Int | Yes |
| dateCreated | Int | Yes |
| lastChangedBy | Int | Yes |
| lastChangedDate | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| uuid | Int | Yes |
| conceptId | Int | Yes |
| name | Int | Yes |
| locale | Int | Yes |
| creator | Int | Yes |
| dateCreated | Int | Yes |
| lastChangedBy | Int | Yes |
| lastChangedDate | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| conceptId | String | No |
| name | String | No |
| locale | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| conceptId | String | No |
| name | String | No |
| locale | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| uuid | Int | Yes |
| conceptId | Int | Yes |
| hiAbsolute | Int | Yes |
| hiCritical | Int | Yes |
| hiNormal | Int | Yes |
| lowAbsolute | Int | Yes |
| lowCritical | Int | Yes |
| lowNormal | Int | Yes |
| units | Int | Yes |
| creator | Int | Yes |
| dateCreated | Int | Yes |
| lastChangedBy | Int | Yes |
| lastChangedDate | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| hiAbsolute | Float | No |
| hiCritical | Float | No |
| hiNormal | Float | No |
| lowAbsolute | Float | No |
| lowCritical | Float | No |
| lowNormal | Float | No |
| Name | Type | Nullable |
|---|---|---|
| hiAbsolute | Float | No |
| hiCritical | Float | No |
| hiNormal | Float | No |
| lowAbsolute | Float | No |
| lowCritical | Float | No |
| lowNormal | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| conceptId | String | No |
| hiAbsolute | Float | No |
| hiCritical | Float | No |
| hiNormal | Float | No |
| lowAbsolute | Float | No |
| lowCritical | Float | No |
| lowNormal | Float | No |
| units | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| conceptId | String | No |
| hiAbsolute | Float | No |
| hiCritical | Float | No |
| hiNormal | Float | No |
| lowAbsolute | Float | No |
| lowCritical | Float | No |
| lowNormal | Float | No |
| units | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| uuid | Int | Yes |
| conceptId | Int | Yes |
| name | Int | Yes |
| description | Int | Yes |
| creator | Int | Yes |
| dateCreated | Int | Yes |
| lastChangedBy | Int | Yes |
| lastChangedDate | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| conceptId | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| conceptId | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| conceptList | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| uuid | Int | Yes |
| name | Int | Yes |
| description | Int | Yes |
| creator | Int | Yes |
| dateCreated | Int | Yes |
| lastChangedBy | Int | Yes |
| lastChangedDate | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| conceptList | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| uuid | Int | Yes |
| name | Int | Yes |
| description | Int | Yes |
| creator | Int | Yes |
| dateCreated | Int | Yes |
| lastChangedBy | Int | Yes |
| lastChangedDate | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| uuid | Int | Yes |
| conceptId | Int | Yes |
| word | Int | Yes |
| locale | Int | Yes |
| creator | Int | Yes |
| dateCreated | Int | Yes |
| lastChangedBy | Int | Yes |
| lastChangedDate | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| conceptId | String | No |
| word | String | No |
| locale | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| conceptId | String | No |
| word | String | No |
| locale | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| formResourceList | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| uuid | Int | Yes |
| name | Int | Yes |
| description | Int | Yes |
| creator | Int | Yes |
| dateCreated | Int | Yes |
| lastChangedBy | Int | Yes |
| lastChangedDate | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| name | String | No |
| description | String | No |
| creator | String | No |
| dateCreated | DateTime | No |
| lastChangedBy | String | No |
| lastChangedDate | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| tagArrowList | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| title | Int | Yes |
| content | Int | Yes |
| context | Int | Yes |
| authorId | Int | Yes |
| spaceTimeCoordinatesId | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| title | String | No |
| content | String | No |
| authorId | String | No |
| spaceTimeCoordinatesId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| title | String | No |
| content | String | No |
| authorId | String | No |
| spaceTimeCoordinatesId | String | No |
| Name | Type | Nullable |
|---|---|---|
| postArrowList | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| name | Int | Yes |
| descriptor | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| descriptor | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| descriptor | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| postId | Int | Yes |
| tagId | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| postId | String | No |
| tagId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| postId | String | No |
| tagId | String | No |
| Name | Type | Nullable |
|---|---|---|
| blogPostList | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| name | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| latitude | Int | Yes |
| longitude | Int | Yes |
| startTime | Int | Yes |
| pauseTime | Int | Yes |
| stopTime | Int | Yes |
| timezone | Int | Yes |
| blogPostId | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| latitude | Float | No |
| longitude | Float | No |
| startTime | Float | No |
| pauseTime | Float | No |
| stopTime | Float | No |
| Name | Type | Nullable |
|---|---|---|
| latitude | Float | No |
| longitude | Float | No |
| startTime | Float | No |
| pauseTime | Float | No |
| stopTime | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| latitude | Float | No |
| longitude | Float | No |
| startTime | Float | No |
| pauseTime | Float | No |
| stopTime | Float | No |
| timezone | String | No |
| blogPostId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| latitude | Float | No |
| longitude | Float | No |
| startTime | Float | No |
| pauseTime | Float | No |
| stopTime | Float | No |
| timezone | String | No |
| blogPostId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| serviceId | Int | Yes |
| cost | Int | Yes |
| discount | Int | Yes |
| promotion | Int | Yes |
| subtotal | Int | Yes |
| percentChange | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| budgetId | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| cost | Float | No |
| discount | Float | No |
| promotion | Float | No |
| subtotal | Float | No |
| percentChange | Float | No |
| Name | Type | Nullable |
|---|---|---|
| cost | Float | No |
| discount | Float | No |
| promotion | Float | No |
| subtotal | Float | No |
| percentChange | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| serviceId | String | No |
| cost | Float | No |
| discount | Float | No |
| promotion | Float | No |
| subtotal | Float | No |
| percentChange | Float | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| budgetId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| serviceId | String | No |
| cost | Float | No |
| discount | Float | No |
| promotion | Float | No |
| subtotal | Float | No |
| percentChange | Float | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| budgetId | String | No |
| Name | Type | Nullable |
|---|---|---|
| entryList | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| description | Int | Yes |
| category | Int | Yes |
| metadata | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| description | String | No |
| category | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| description | String | No |
| category | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| entryList | Int | Yes |
| userList | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| fiscalYear | Int | Yes |
| reportId | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| fiscalYear | Float | No |
| Name | Type | Nullable |
|---|---|---|
| fiscalYear | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| fiscalYear | Int | No |
| reportId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| fiscalYear | Int | No |
| reportId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| budgetId | Int | Yes |
| totalCost | Int | Yes |
| totalDiscount | Int | Yes |
| totalPromotion | Int | Yes |
| totalSubtotal | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| totalCost | Float | No |
| totalDiscount | Float | No |
| totalPromotion | Float | No |
| totalSubtotal | Float | No |
| Name | Type | Nullable |
|---|---|---|
| totalCost | Float | No |
| totalDiscount | Float | No |
| totalPromotion | Float | No |
| totalSubtotal | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| budgetId | String | No |
| totalCost | Float | No |
| totalDiscount | Float | No |
| totalPromotion | Float | No |
| totalSubtotal | Float | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| budgetId | String | No |
| totalCost | Float | No |
| totalDiscount | Float | No |
| totalPromotion | Float | No |
| totalSubtotal | Float | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| budgetList | Int | Yes |
| eventList | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| name | Int | Yes |
| Int | Yes | |
| password | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| String | No | |
| password | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| String | No | |
| password | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| userId | Int | Yes |
| budgetId | Int | Yes |
| role | Int | Yes |
| ability | Int | Yes |
| category | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| userId | String | No |
| budgetId | String | No |
| role | String | No |
| ability | String | No |
| category | String | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | No |
| budgetId | String | No |
| role | String | No |
| ability | String | No |
| category | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| type | Int | Yes |
| description | Int | Yes |
| categoryList | Int | Yes |
| metadata | Int | Yes |
| budUserId | Int | Yes |
| createdAt | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| type | String | No |
| description | String | No |
| budUserId | String | No |
| createdAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| type | String | No |
| description | String | No |
| budUserId | String | No |
| createdAt | DateTime | No |