Name | Value |
---|---|
@@unique |
|
@@index |
|
Find zero or one Person
// Get one Person
const person = await prisma.person.findUnique({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | PersonWhereUniqueInput | Yes |
Find first Person
// Get one Person
const person = await prisma.person.findFirst({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | PersonWhereInput | No |
orderBy | PersonOrderByWithRelationInput[] | PersonOrderByWithRelationInput | No |
cursor | PersonWhereUniqueInput | No |
take | Int | No |
skip | Int | No |
distinct | PersonScalarFieldEnum | PersonScalarFieldEnum[] | No |
Find zero or more Person
// Get all Person
const Person = await prisma.person.findMany()
// Get first 10 Person
const Person = await prisma.person.findMany({ take: 10 })
Name | Type | Required |
---|---|---|
where | PersonWhereInput | No |
orderBy | PersonOrderByWithRelationInput[] | PersonOrderByWithRelationInput | No |
cursor | PersonWhereUniqueInput | No |
take | Int | No |
skip | Int | No |
distinct | PersonScalarFieldEnum | PersonScalarFieldEnum[] | No |
Create one Person
// Create one Person
const Person = await prisma.person.create({
data: {
// ... data to create a Person
}
})
Name | Type | Required |
---|---|---|
data | PersonCreateInput | PersonUncheckedCreateInput | Yes |
Delete one Person
// Delete one Person
const Person = await prisma.person.delete({
where: {
// ... filter to delete one Person
}
})
Name | Type | Required |
---|---|---|
where | PersonWhereUniqueInput | Yes |
Update one Person
// Update one Person
const person = await prisma.person.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
Name | Type | Required |
---|---|---|
data | PersonUpdateInput | PersonUncheckedUpdateInput | Yes |
where | PersonWhereUniqueInput | Yes |
Delete zero or more Person
// Delete a few Person
const { count } = await prisma.person.deleteMany({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | PersonWhereInput | No |
limit | Int | No |
Update zero or one Person
const { count } = await prisma.person.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
Name | Type | Required |
---|---|---|
data | PersonUpdateManyMutationInput | PersonUncheckedUpdateManyInput | Yes |
where | PersonWhereInput | No |
limit | Int | No |
Create or update one Person
// Update or create a Person
const person = await prisma.person.upsert({
create: {
// ... data to create a Person
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Person we want to update
}
})
Name | Type | Required |
---|---|---|
where | PersonWhereUniqueInput | Yes |
create | PersonCreateInput | PersonUncheckedCreateInput | Yes |
update | PersonUpdateInput | PersonUncheckedUpdateInput | Yes |
Name | Type | Attributes | Required | Comment |
---|---|---|---|---|
id | String |
|
Yes | - |
person | Person |
|
Yes | - |
personId | String |
|
Yes | - |
settings | UserSettings? |
|
No | - |
admin | Admin? |
|
No | - |
userSettingsId | String? |
|
No | - |
Find zero or one User
// Get one User
const user = await prisma.user.findUnique({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | UserWhereUniqueInput | Yes |
Find first User
// Get one User
const user = await prisma.user.findFirst({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | UserWhereInput | No |
orderBy | UserOrderByWithRelationInput[] | UserOrderByWithRelationInput | No |
cursor | UserWhereUniqueInput | No |
take | Int | No |
skip | Int | No |
distinct | UserScalarFieldEnum | UserScalarFieldEnum[] | No |
Find zero or more User
// Get all User
const User = await prisma.user.findMany()
// Get first 10 User
const User = await prisma.user.findMany({ take: 10 })
Name | Type | Required |
---|---|---|
where | UserWhereInput | No |
orderBy | UserOrderByWithRelationInput[] | UserOrderByWithRelationInput | No |
cursor | UserWhereUniqueInput | No |
take | Int | No |
skip | Int | No |
distinct | UserScalarFieldEnum | UserScalarFieldEnum[] | No |
Create one User
// Create one User
const User = await prisma.user.create({
data: {
// ... data to create a User
}
})
Name | Type | Required |
---|---|---|
data | UserCreateInput | UserUncheckedCreateInput | Yes |
Delete one User
// Delete one User
const User = await prisma.user.delete({
where: {
// ... filter to delete one User
}
})
Name | Type | Required |
---|---|---|
where | UserWhereUniqueInput | Yes |
Update one User
// Update one User
const user = await prisma.user.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
Name | Type | Required |
---|---|---|
data | UserUpdateInput | UserUncheckedUpdateInput | Yes |
where | UserWhereUniqueInput | Yes |
Delete zero or more User
// Delete a few User
const { count } = await prisma.user.deleteMany({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | UserWhereInput | No |
limit | Int | No |
Update zero or one User
const { count } = await prisma.user.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
Name | Type | Required |
---|---|---|
data | UserUpdateManyMutationInput | UserUncheckedUpdateManyInput | Yes |
where | UserWhereInput | No |
limit | Int | No |
Create or update one User
// Update or create a User
const user = await prisma.user.upsert({
create: {
// ... data to create a User
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the User we want to update
}
})
Name | Type | Required |
---|---|---|
where | UserWhereUniqueInput | Yes |
create | UserCreateInput | UserUncheckedCreateInput | Yes |
update | UserUpdateInput | UserUncheckedUpdateInput | Yes |
Find zero or one Admin
// Get one Admin
const admin = await prisma.admin.findUnique({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | AdminWhereUniqueInput | Yes |
Find first Admin
// Get one Admin
const admin = await prisma.admin.findFirst({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | AdminWhereInput | No |
orderBy | AdminOrderByWithRelationInput[] | AdminOrderByWithRelationInput | No |
cursor | AdminWhereUniqueInput | No |
take | Int | No |
skip | Int | No |
distinct | AdminScalarFieldEnum | AdminScalarFieldEnum[] | No |
Find zero or more Admin
// Get all Admin
const Admin = await prisma.admin.findMany()
// Get first 10 Admin
const Admin = await prisma.admin.findMany({ take: 10 })
Name | Type | Required |
---|---|---|
where | AdminWhereInput | No |
orderBy | AdminOrderByWithRelationInput[] | AdminOrderByWithRelationInput | No |
cursor | AdminWhereUniqueInput | No |
take | Int | No |
skip | Int | No |
distinct | AdminScalarFieldEnum | AdminScalarFieldEnum[] | No |
Create one Admin
// Create one Admin
const Admin = await prisma.admin.create({
data: {
// ... data to create a Admin
}
})
Name | Type | Required |
---|---|---|
data | AdminCreateInput | AdminUncheckedCreateInput | Yes |
Delete one Admin
// Delete one Admin
const Admin = await prisma.admin.delete({
where: {
// ... filter to delete one Admin
}
})
Name | Type | Required |
---|---|---|
where | AdminWhereUniqueInput | Yes |
Update one Admin
// Update one Admin
const admin = await prisma.admin.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
Name | Type | Required |
---|---|---|
data | AdminUpdateInput | AdminUncheckedUpdateInput | Yes |
where | AdminWhereUniqueInput | Yes |
Delete zero or more Admin
// Delete a few Admin
const { count } = await prisma.admin.deleteMany({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | AdminWhereInput | No |
limit | Int | No |
Update zero or one Admin
const { count } = await prisma.admin.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
Name | Type | Required |
---|---|---|
data | AdminUpdateManyMutationInput | AdminUncheckedUpdateManyInput | Yes |
where | AdminWhereInput | No |
limit | Int | No |
Create or update one Admin
// Update or create a Admin
const admin = await prisma.admin.upsert({
create: {
// ... data to create a Admin
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Admin we want to update
}
})
Name | Type | Required |
---|---|---|
where | AdminWhereUniqueInput | Yes |
create | AdminCreateInput | AdminUncheckedCreateInput | Yes |
update | AdminUpdateInput | AdminUncheckedUpdateInput | Yes |
Name | Type | Attributes | Required | Comment |
---|---|---|---|---|
id | String |
|
Yes | - |
theme | String |
|
Yes | - |
notificationLevel | NotificationLevel |
|
Yes | - |
gui | Boolean |
|
Yes | - |
User | User[] |
|
Yes | - |
Find zero or one UserSettings
// Get one UserSettings
const userSettings = await prisma.userSettings.findUnique({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | UserSettingsWhereUniqueInput | Yes |
Find first UserSettings
// Get one UserSettings
const userSettings = await prisma.userSettings.findFirst({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | UserSettingsWhereInput | No |
orderBy | UserSettingsOrderByWithRelationInput[] | UserSettingsOrderByWithRelationInput | No |
cursor | UserSettingsWhereUniqueInput | No |
take | Int | No |
skip | Int | No |
distinct | UserSettingsScalarFieldEnum | UserSettingsScalarFieldEnum[] | No |
Find zero or more UserSettings
// Get all UserSettings
const UserSettings = await prisma.userSettings.findMany()
// Get first 10 UserSettings
const UserSettings = await prisma.userSettings.findMany({ take: 10 })
Name | Type | Required |
---|---|---|
where | UserSettingsWhereInput | No |
orderBy | UserSettingsOrderByWithRelationInput[] | UserSettingsOrderByWithRelationInput | No |
cursor | UserSettingsWhereUniqueInput | No |
take | Int | No |
skip | Int | No |
distinct | UserSettingsScalarFieldEnum | UserSettingsScalarFieldEnum[] | No |
Create one UserSettings
// Create one UserSettings
const UserSettings = await prisma.userSettings.create({
data: {
// ... data to create a UserSettings
}
})
Name | Type | Required |
---|---|---|
data | UserSettingsCreateInput | UserSettingsUncheckedCreateInput | Yes |
Delete one UserSettings
// Delete one UserSettings
const UserSettings = await prisma.userSettings.delete({
where: {
// ... filter to delete one UserSettings
}
})
Name | Type | Required |
---|---|---|
where | UserSettingsWhereUniqueInput | Yes |
Update one UserSettings
// Update one UserSettings
const userSettings = await prisma.userSettings.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
Name | Type | Required |
---|---|---|
data | UserSettingsUpdateInput | UserSettingsUncheckedUpdateInput | Yes |
where | UserSettingsWhereUniqueInput | Yes |
Delete zero or more UserSettings
// Delete a few UserSettings
const { count } = await prisma.userSettings.deleteMany({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | UserSettingsWhereInput | No |
limit | Int | No |
Update zero or one UserSettings
const { count } = await prisma.userSettings.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
Name | Type | Required |
---|---|---|
data | UserSettingsUpdateManyMutationInput | UserSettingsUncheckedUpdateManyInput | Yes |
where | UserSettingsWhereInput | No |
limit | Int | No |
Create or update one UserSettings
// Update or create a UserSettings
const userSettings = await prisma.userSettings.upsert({
create: {
// ... data to create a UserSettings
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the UserSettings we want to update
}
})
Name | Type | Required |
---|---|---|
where | UserSettingsWhereUniqueInput | Yes |
create | UserSettingsCreateInput | UserSettingsUncheckedCreateInput | Yes |
update | UserSettingsUpdateInput | UserSettingsUncheckedUpdateInput | Yes |
Name | Type | Attributes | Required | Comment |
---|---|---|---|---|
id | String |
|
Yes | - |
streetNumber | String |
|
Yes | - |
streetName | String |
|
Yes | - |
city | String |
|
Yes | - |
zipCode | String |
|
Yes | - |
country | String |
|
Yes | - |
person | Person? |
|
No | - |
Company | Company? |
|
No | - |
personId | String? |
|
No | - |
companyId | String? |
|
No | - |
Find zero or one Address
// Get one Address
const address = await prisma.address.findUnique({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | AddressWhereUniqueInput | Yes |
Find first Address
// Get one Address
const address = await prisma.address.findFirst({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | AddressWhereInput | No |
orderBy | AddressOrderByWithRelationInput[] | AddressOrderByWithRelationInput | No |
cursor | AddressWhereUniqueInput | No |
take | Int | No |
skip | Int | No |
distinct | AddressScalarFieldEnum | AddressScalarFieldEnum[] | No |
Find zero or more Address
// Get all Address
const Address = await prisma.address.findMany()
// Get first 10 Address
const Address = await prisma.address.findMany({ take: 10 })
Name | Type | Required |
---|---|---|
where | AddressWhereInput | No |
orderBy | AddressOrderByWithRelationInput[] | AddressOrderByWithRelationInput | No |
cursor | AddressWhereUniqueInput | No |
take | Int | No |
skip | Int | No |
distinct | AddressScalarFieldEnum | AddressScalarFieldEnum[] | No |
Create one Address
// Create one Address
const Address = await prisma.address.create({
data: {
// ... data to create a Address
}
})
Name | Type | Required |
---|---|---|
data | AddressCreateInput | AddressUncheckedCreateInput | Yes |
Delete one Address
// Delete one Address
const Address = await prisma.address.delete({
where: {
// ... filter to delete one Address
}
})
Name | Type | Required |
---|---|---|
where | AddressWhereUniqueInput | Yes |
Update one Address
// Update one Address
const address = await prisma.address.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
Name | Type | Required |
---|---|---|
data | AddressUpdateInput | AddressUncheckedUpdateInput | Yes |
where | AddressWhereUniqueInput | Yes |
Delete zero or more Address
// Delete a few Address
const { count } = await prisma.address.deleteMany({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | AddressWhereInput | No |
limit | Int | No |
Update zero or one Address
const { count } = await prisma.address.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
Name | Type | Required |
---|---|---|
data | AddressUpdateManyMutationInput | AddressUncheckedUpdateManyInput | Yes |
where | AddressWhereInput | No |
limit | Int | No |
Create or update one Address
// Update or create a Address
const address = await prisma.address.upsert({
create: {
// ... data to create a Address
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Address we want to update
}
})
Name | Type | Required |
---|---|---|
where | AddressWhereUniqueInput | Yes |
create | AddressCreateInput | AddressUncheckedCreateInput | Yes |
update | AddressUpdateInput | AddressUncheckedUpdateInput | Yes |
Name | Type | Attributes | Required | Comment |
---|---|---|---|---|
id | String |
|
Yes | - |
privateIndividual | Boolean |
|
Yes | - |
company | Company? |
|
No | - |
companyId | String? |
|
No | - |
person | Person |
|
Yes | - |
personId | String |
|
Yes | - |
job | String |
|
Yes | - |
studyClients | StudyClient[] |
|
Yes | - |
Find zero or one Client
// Get one Client
const client = await prisma.client.findUnique({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | ClientWhereUniqueInput | Yes |
Find first Client
// Get one Client
const client = await prisma.client.findFirst({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | ClientWhereInput | No |
orderBy | ClientOrderByWithRelationInput[] | ClientOrderByWithRelationInput | No |
cursor | ClientWhereUniqueInput | No |
take | Int | No |
skip | Int | No |
distinct | ClientScalarFieldEnum | ClientScalarFieldEnum[] | No |
Find zero or more Client
// Get all Client
const Client = await prisma.client.findMany()
// Get first 10 Client
const Client = await prisma.client.findMany({ take: 10 })
Name | Type | Required |
---|---|---|
where | ClientWhereInput | No |
orderBy | ClientOrderByWithRelationInput[] | ClientOrderByWithRelationInput | No |
cursor | ClientWhereUniqueInput | No |
take | Int | No |
skip | Int | No |
distinct | ClientScalarFieldEnum | ClientScalarFieldEnum[] | No |
Create one Client
// Create one Client
const Client = await prisma.client.create({
data: {
// ... data to create a Client
}
})
Name | Type | Required |
---|---|---|
data | ClientCreateInput | ClientUncheckedCreateInput | Yes |
Delete one Client
// Delete one Client
const Client = await prisma.client.delete({
where: {
// ... filter to delete one Client
}
})
Name | Type | Required |
---|---|---|
where | ClientWhereUniqueInput | Yes |
Update one Client
// Update one Client
const client = await prisma.client.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
Name | Type | Required |
---|---|---|
data | ClientUpdateInput | ClientUncheckedUpdateInput | Yes |
where | ClientWhereUniqueInput | Yes |
Delete zero or more Client
// Delete a few Client
const { count } = await prisma.client.deleteMany({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | ClientWhereInput | No |
limit | Int | No |
Update zero or one Client
const { count } = await prisma.client.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
Name | Type | Required |
---|---|---|
data | ClientUpdateManyMutationInput | ClientUncheckedUpdateManyInput | Yes |
where | ClientWhereInput | No |
limit | Int | No |
Create or update one Client
// Update or create a Client
const client = await prisma.client.upsert({
create: {
// ... data to create a Client
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Client we want to update
}
})
Name | Type | Required |
---|---|---|
where | ClientWhereUniqueInput | Yes |
create | ClientCreateInput | ClientUncheckedCreateInput | Yes |
update | ClientUpdateInput | ClientUncheckedUpdateInput | Yes |
Name | Type | Attributes | Required | Comment |
---|---|---|---|---|
id | String |
|
Yes | - |
study | Study |
|
Yes | - |
studyId | String |
|
Yes | - |
client | Client |
|
Yes | - |
clientId | String |
|
Yes | - |
satisfaction | Satisfaction? |
|
No | - |
Find zero or one StudyClient
// Get one StudyClient
const studyClient = await prisma.studyClient.findUnique({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | StudyClientWhereUniqueInput | Yes |
Find first StudyClient
// Get one StudyClient
const studyClient = await prisma.studyClient.findFirst({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | StudyClientWhereInput | No |
orderBy | StudyClientOrderByWithRelationInput[] | StudyClientOrderByWithRelationInput | No |
cursor | StudyClientWhereUniqueInput | No |
take | Int | No |
skip | Int | No |
distinct | StudyClientScalarFieldEnum | StudyClientScalarFieldEnum[] | No |
Find zero or more StudyClient
// Get all StudyClient
const StudyClient = await prisma.studyClient.findMany()
// Get first 10 StudyClient
const StudyClient = await prisma.studyClient.findMany({ take: 10 })
Name | Type | Required |
---|---|---|
where | StudyClientWhereInput | No |
orderBy | StudyClientOrderByWithRelationInput[] | StudyClientOrderByWithRelationInput | No |
cursor | StudyClientWhereUniqueInput | No |
take | Int | No |
skip | Int | No |
distinct | StudyClientScalarFieldEnum | StudyClientScalarFieldEnum[] | No |
Create one StudyClient
// Create one StudyClient
const StudyClient = await prisma.studyClient.create({
data: {
// ... data to create a StudyClient
}
})
Name | Type | Required |
---|---|---|
data | StudyClientCreateInput | StudyClientUncheckedCreateInput | Yes |
Delete one StudyClient
// Delete one StudyClient
const StudyClient = await prisma.studyClient.delete({
where: {
// ... filter to delete one StudyClient
}
})
Name | Type | Required |
---|---|---|
where | StudyClientWhereUniqueInput | Yes |
Update one StudyClient
// Update one StudyClient
const studyClient = await prisma.studyClient.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
Name | Type | Required |
---|---|---|
data | StudyClientUpdateInput | StudyClientUncheckedUpdateInput | Yes |
where | StudyClientWhereUniqueInput | Yes |
Delete zero or more StudyClient
// Delete a few StudyClient
const { count } = await prisma.studyClient.deleteMany({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | StudyClientWhereInput | No |
limit | Int | No |
Update zero or one StudyClient
const { count } = await prisma.studyClient.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
Name | Type | Required |
---|---|---|
data | StudyClientUpdateManyMutationInput | StudyClientUncheckedUpdateManyInput | Yes |
where | StudyClientWhereInput | No |
limit | Int | No |
Create or update one StudyClient
// Update or create a StudyClient
const studyClient = await prisma.studyClient.upsert({
create: {
// ... data to create a StudyClient
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the StudyClient we want to update
}
})
Name | Type | Required |
---|---|---|
where | StudyClientWhereUniqueInput | Yes |
create | StudyClientCreateInput | StudyClientUncheckedCreateInput | Yes |
update | StudyClientUpdateInput | StudyClientUncheckedUpdateInput | Yes |
Name | Type | Attributes | Required | Comment |
---|---|---|---|---|
id | String |
|
Yes | - |
studyClient | StudyClient |
|
Yes | - |
studyClientId | String |
|
Yes | - |
study | Study |
|
Yes | - |
studyId | String |
|
Yes | - |
publish | Boolean |
|
Yes | - |
howKnowUs | String |
|
Yes | - |
whyUs | String |
|
Yes | - |
satisfactionObjectives | Int |
|
Yes | - |
easiness | Int |
|
Yes | - |
timeElapsed | Int |
|
Yes | - |
recommendUs | Int |
|
Yes | - |
Find zero or one Satisfaction
// Get one Satisfaction
const satisfaction = await prisma.satisfaction.findUnique({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | SatisfactionWhereUniqueInput | Yes |
Find first Satisfaction
// Get one Satisfaction
const satisfaction = await prisma.satisfaction.findFirst({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | SatisfactionWhereInput | No |
orderBy | SatisfactionOrderByWithRelationInput[] | SatisfactionOrderByWithRelationInput | No |
cursor | SatisfactionWhereUniqueInput | No |
take | Int | No |
skip | Int | No |
distinct | SatisfactionScalarFieldEnum | SatisfactionScalarFieldEnum[] | No |
Find zero or more Satisfaction
// Get all Satisfaction
const Satisfaction = await prisma.satisfaction.findMany()
// Get first 10 Satisfaction
const Satisfaction = await prisma.satisfaction.findMany({ take: 10 })
Name | Type | Required |
---|---|---|
where | SatisfactionWhereInput | No |
orderBy | SatisfactionOrderByWithRelationInput[] | SatisfactionOrderByWithRelationInput | No |
cursor | SatisfactionWhereUniqueInput | No |
take | Int | No |
skip | Int | No |
distinct | SatisfactionScalarFieldEnum | SatisfactionScalarFieldEnum[] | No |
Create one Satisfaction
// Create one Satisfaction
const Satisfaction = await prisma.satisfaction.create({
data: {
// ... data to create a Satisfaction
}
})
Name | Type | Required |
---|---|---|
data | SatisfactionCreateInput | SatisfactionUncheckedCreateInput | Yes |
Delete one Satisfaction
// Delete one Satisfaction
const Satisfaction = await prisma.satisfaction.delete({
where: {
// ... filter to delete one Satisfaction
}
})
Name | Type | Required |
---|---|---|
where | SatisfactionWhereUniqueInput | Yes |
Update one Satisfaction
// Update one Satisfaction
const satisfaction = await prisma.satisfaction.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
Name | Type | Required |
---|---|---|
data | SatisfactionUpdateInput | SatisfactionUncheckedUpdateInput | Yes |
where | SatisfactionWhereUniqueInput | Yes |
Delete zero or more Satisfaction
// Delete a few Satisfaction
const { count } = await prisma.satisfaction.deleteMany({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | SatisfactionWhereInput | No |
limit | Int | No |
Update zero or one Satisfaction
const { count } = await prisma.satisfaction.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
Name | Type | Required |
---|---|---|
data | SatisfactionUpdateManyMutationInput | SatisfactionUncheckedUpdateManyInput | Yes |
where | SatisfactionWhereInput | No |
limit | Int | No |
Create or update one Satisfaction
// Update or create a Satisfaction
const satisfaction = await prisma.satisfaction.upsert({
create: {
// ... data to create a Satisfaction
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Satisfaction we want to update
}
})
Name | Type | Required |
---|---|---|
where | SatisfactionWhereUniqueInput | Yes |
create | SatisfactionCreateInput | SatisfactionUncheckedCreateInput | Yes |
update | SatisfactionUpdateInput | SatisfactionUncheckedUpdateInput | Yes |
Name | Type | Attributes | Required | Comment |
---|---|---|---|---|
id | String |
|
Yes | - |
name | String |
|
Yes | - |
address | Address? |
|
No | - |
companyInfos | CompanyInfos |
|
Yes | - |
members | Client[] |
|
Yes | Members of the company we are likely to encounter. |
companyInfosId | String |
|
Yes | - |
Find zero or one Company
// Get one Company
const company = await prisma.company.findUnique({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | CompanyWhereUniqueInput | Yes |
Find first Company
// Get one Company
const company = await prisma.company.findFirst({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | CompanyWhereInput | No |
orderBy | CompanyOrderByWithRelationInput[] | CompanyOrderByWithRelationInput | No |
cursor | CompanyWhereUniqueInput | No |
take | Int | No |
skip | Int | No |
distinct | CompanyScalarFieldEnum | CompanyScalarFieldEnum[] | No |
Find zero or more Company
// Get all Company
const Company = await prisma.company.findMany()
// Get first 10 Company
const Company = await prisma.company.findMany({ take: 10 })
Name | Type | Required |
---|---|---|
where | CompanyWhereInput | No |
orderBy | CompanyOrderByWithRelationInput[] | CompanyOrderByWithRelationInput | No |
cursor | CompanyWhereUniqueInput | No |
take | Int | No |
skip | Int | No |
distinct | CompanyScalarFieldEnum | CompanyScalarFieldEnum[] | No |
Create one Company
// Create one Company
const Company = await prisma.company.create({
data: {
// ... data to create a Company
}
})
Name | Type | Required |
---|---|---|
data | CompanyCreateInput | CompanyUncheckedCreateInput | Yes |
Delete one Company
// Delete one Company
const Company = await prisma.company.delete({
where: {
// ... filter to delete one Company
}
})
Name | Type | Required |
---|---|---|
where | CompanyWhereUniqueInput | Yes |
Update one Company
// Update one Company
const company = await prisma.company.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
Name | Type | Required |
---|---|---|
data | CompanyUpdateInput | CompanyUncheckedUpdateInput | Yes |
where | CompanyWhereUniqueInput | Yes |
Delete zero or more Company
// Delete a few Company
const { count } = await prisma.company.deleteMany({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | CompanyWhereInput | No |
limit | Int | No |
Update zero or one Company
const { count } = await prisma.company.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
Name | Type | Required |
---|---|---|
data | CompanyUpdateManyMutationInput | CompanyUncheckedUpdateManyInput | Yes |
where | CompanyWhereInput | No |
limit | Int | No |
Create or update one Company
// Update or create a Company
const company = await prisma.company.upsert({
create: {
// ... data to create a Company
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Company we want to update
}
})
Name | Type | Required |
---|---|---|
where | CompanyWhereUniqueInput | Yes |
create | CompanyCreateInput | CompanyUncheckedCreateInput | Yes |
update | CompanyUpdateInput | CompanyUncheckedUpdateInput | Yes |
Name | Type | Attributes | Required | Comment |
---|---|---|---|---|
id | String |
|
Yes | - |
domains | Domain[] |
|
Yes | - |
ca | Int? |
|
No | - |
size | CompanySize? |
|
No | - |
company | Company[] |
|
Yes | - |
Find zero or one CompanyInfos
// Get one CompanyInfos
const companyInfos = await prisma.companyInfos.findUnique({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | CompanyInfosWhereUniqueInput | Yes |
Find first CompanyInfos
// Get one CompanyInfos
const companyInfos = await prisma.companyInfos.findFirst({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | CompanyInfosWhereInput | No |
orderBy | CompanyInfosOrderByWithRelationInput[] | CompanyInfosOrderByWithRelationInput | No |
cursor | CompanyInfosWhereUniqueInput | No |
take | Int | No |
skip | Int | No |
distinct | CompanyInfosScalarFieldEnum | CompanyInfosScalarFieldEnum[] | No |
Find zero or more CompanyInfos
// Get all CompanyInfos
const CompanyInfos = await prisma.companyInfos.findMany()
// Get first 10 CompanyInfos
const CompanyInfos = await prisma.companyInfos.findMany({ take: 10 })
Name | Type | Required |
---|---|---|
where | CompanyInfosWhereInput | No |
orderBy | CompanyInfosOrderByWithRelationInput[] | CompanyInfosOrderByWithRelationInput | No |
cursor | CompanyInfosWhereUniqueInput | No |
take | Int | No |
skip | Int | No |
distinct | CompanyInfosScalarFieldEnum | CompanyInfosScalarFieldEnum[] | No |
Create one CompanyInfos
// Create one CompanyInfos
const CompanyInfos = await prisma.companyInfos.create({
data: {
// ... data to create a CompanyInfos
}
})
Name | Type | Required |
---|---|---|
data | CompanyInfosCreateInput | CompanyInfosUncheckedCreateInput | No |
Delete one CompanyInfos
// Delete one CompanyInfos
const CompanyInfos = await prisma.companyInfos.delete({
where: {
// ... filter to delete one CompanyInfos
}
})
Name | Type | Required |
---|---|---|
where | CompanyInfosWhereUniqueInput | Yes |
Update one CompanyInfos
// Update one CompanyInfos
const companyInfos = await prisma.companyInfos.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
Name | Type | Required |
---|---|---|
data | CompanyInfosUpdateInput | CompanyInfosUncheckedUpdateInput | Yes |
where | CompanyInfosWhereUniqueInput | Yes |
Delete zero or more CompanyInfos
// Delete a few CompanyInfos
const { count } = await prisma.companyInfos.deleteMany({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | CompanyInfosWhereInput | No |
limit | Int | No |
Update zero or one CompanyInfos
const { count } = await prisma.companyInfos.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
Name | Type | Required |
---|---|---|
data | CompanyInfosUpdateManyMutationInput | CompanyInfosUncheckedUpdateManyInput | Yes |
where | CompanyInfosWhereInput | No |
limit | Int | No |
Create or update one CompanyInfos
// Update or create a CompanyInfos
const companyInfos = await prisma.companyInfos.upsert({
create: {
// ... data to create a CompanyInfos
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the CompanyInfos we want to update
}
})
Name | Type | Required |
---|---|---|
where | CompanyInfosWhereUniqueInput | Yes |
create | CompanyInfosCreateInput | CompanyInfosUncheckedCreateInput | Yes |
update | CompanyInfosUpdateInput | CompanyInfosUncheckedUpdateInput | Yes |
Name | Type | Attributes | Required | Comment |
---|---|---|---|---|
id | String |
|
Yes | Don't use this id to reference the document. Use googleId. |
title | String |
|
Yes | - |
googleId | String |
|
Yes | / Id of the google document. Refer to google_drive.md |
type | String |
|
Yes | Mime type of the file. Refer to google_drive.md. |
status | Status? |
|
No | - |
assigneeCni | AssigneeDocs? |
|
No | Identity card |
assigneeSocialSecurity | AssigneeDocs? |
|
No | - |
assigneeStudentCard | AssigneeDocs? |
|
No | - |
studyDocsId | String? |
|
No | - |
statusId | String? |
|
No | - |
Find zero or one Document
// Get one Document
const document = await prisma.document.findUnique({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | DocumentWhereUniqueInput | Yes |
Find first Document
// Get one Document
const document = await prisma.document.findFirst({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | DocumentWhereInput | No |
orderBy | DocumentOrderByWithRelationInput[] | DocumentOrderByWithRelationInput | No |
cursor | DocumentWhereUniqueInput | No |
take | Int | No |
skip | Int | No |
distinct | DocumentScalarFieldEnum | DocumentScalarFieldEnum[] | No |
Find zero or more Document
// Get all Document
const Document = await prisma.document.findMany()
// Get first 10 Document
const Document = await prisma.document.findMany({ take: 10 })
Name | Type | Required |
---|---|---|
where | DocumentWhereInput | No |
orderBy | DocumentOrderByWithRelationInput[] | DocumentOrderByWithRelationInput | No |
cursor | DocumentWhereUniqueInput | No |
take | Int | No |
skip | Int | No |
distinct | DocumentScalarFieldEnum | DocumentScalarFieldEnum[] | No |
Create one Document
// Create one Document
const Document = await prisma.document.create({
data: {
// ... data to create a Document
}
})
Name | Type | Required |
---|---|---|
data | DocumentCreateInput | DocumentUncheckedCreateInput | Yes |
Delete one Document
// Delete one Document
const Document = await prisma.document.delete({
where: {
// ... filter to delete one Document
}
})
Name | Type | Required |
---|---|---|
where | DocumentWhereUniqueInput | Yes |
Update one Document
// Update one Document
const document = await prisma.document.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
Name | Type | Required |
---|---|---|
data | DocumentUpdateInput | DocumentUncheckedUpdateInput | Yes |
where | DocumentWhereUniqueInput | Yes |
Delete zero or more Document
// Delete a few Document
const { count } = await prisma.document.deleteMany({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | DocumentWhereInput | No |
limit | Int | No |
Update zero or one Document
const { count } = await prisma.document.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
Name | Type | Required |
---|---|---|
data | DocumentUpdateManyMutationInput | DocumentUncheckedUpdateManyInput | Yes |
where | DocumentWhereInput | No |
limit | Int | No |
Create or update one Document
// Update or create a Document
const document = await prisma.document.upsert({
create: {
// ... data to create a Document
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Document we want to update
}
})
Name | Type | Required |
---|---|---|
where | DocumentWhereUniqueInput | Yes |
create | DocumentCreateInput | DocumentUncheckedCreateInput | Yes |
update | DocumentUpdateInput | DocumentUncheckedUpdateInput | Yes |
Name | Type | Attributes | Required | Comment |
---|---|---|---|---|
id | String |
|
Yes | - |
docsId | String |
|
Yes | - |
created | DateTime? |
|
No | The template was cloned at this date. |
wrote | DateTime? |
|
No |
Writing finished by the project managers.
The document was sent to audit at this date. |
audited | DateTime? |
|
No | Audited ended at this date. |
sent | DateTime? |
|
No | Sent to the client at this date. |
approved | DateTime? |
|
No |
Approved by the client at this date.
This is only applicable when the client wants access to the documents before signing them. |
signed | DateTime? |
|
No | Signed by all parties at this date. |
end_of_validity | DateTime? |
|
No | End of validty of the document. |
writing_deadline | DateTime? |
|
No | Deadline for delivering the document. |
document | Document[] |
|
Yes | - |
documentId | String |
|
Yes | - |
Find zero or one Status
// Get one Status
const status = await prisma.status.findUnique({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | StatusWhereUniqueInput | Yes |
Find first Status
// Get one Status
const status = await prisma.status.findFirst({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | StatusWhereInput | No |
orderBy | StatusOrderByWithRelationInput[] | StatusOrderByWithRelationInput | No |
cursor | StatusWhereUniqueInput | No |
take | Int | No |
skip | Int | No |
distinct | StatusScalarFieldEnum | StatusScalarFieldEnum[] | No |
Find zero or more Status
// Get all Status
const Status = await prisma.status.findMany()
// Get first 10 Status
const Status = await prisma.status.findMany({ take: 10 })
Name | Type | Required |
---|---|---|
where | StatusWhereInput | No |
orderBy | StatusOrderByWithRelationInput[] | StatusOrderByWithRelationInput | No |
cursor | StatusWhereUniqueInput | No |
take | Int | No |
skip | Int | No |
distinct | StatusScalarFieldEnum | StatusScalarFieldEnum[] | No |
Create one Status
// Create one Status
const Status = await prisma.status.create({
data: {
// ... data to create a Status
}
})
Name | Type | Required |
---|---|---|
data | StatusCreateInput | StatusUncheckedCreateInput | Yes |
Delete one Status
// Delete one Status
const Status = await prisma.status.delete({
where: {
// ... filter to delete one Status
}
})
Name | Type | Required |
---|---|---|
where | StatusWhereUniqueInput | Yes |
Update one Status
// Update one Status
const status = await prisma.status.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
Name | Type | Required |
---|---|---|
data | StatusUpdateInput | StatusUncheckedUpdateInput | Yes |
where | StatusWhereUniqueInput | Yes |
Delete zero or more Status
// Delete a few Status
const { count } = await prisma.status.deleteMany({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | StatusWhereInput | No |
limit | Int | No |
Update zero or one Status
const { count } = await prisma.status.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
Name | Type | Required |
---|---|---|
data | StatusUpdateManyMutationInput | StatusUncheckedUpdateManyInput | Yes |
where | StatusWhereInput | No |
limit | Int | No |
Create or update one Status
// Update or create a Status
const status = await prisma.status.upsert({
create: {
// ... data to create a Status
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Status we want to update
}
})
Name | Type | Required |
---|---|---|
where | StatusWhereUniqueInput | Yes |
create | StatusCreateInput | StatusUncheckedCreateInput | Yes |
update | StatusUpdateInput | StatusUncheckedUpdateInput | Yes |
Name | Type | Attributes | Required | Comment |
---|---|---|---|---|
id | String |
|
Yes | - |
wageLowerBound | Int? |
|
No | Approximate lower bound of the total `retribution` |
wageUpperBound | Int? |
|
No | Approximate upper bound of the total `retribution` |
wageLevel | Level? |
|
No | Is it a good `retribution`? |
difficulty | Level? |
|
No | Estimated difficulty of the mission |
mainDomain | Domain? |
|
No | Main domain of the mission (fixes the image) |
introductionText | String? |
|
No | - |
descriptionText | String? |
|
No | Mission description |
timeLapsText | String? |
|
No | Schedule wanted by the client |
requiredSkillsText | String? |
|
No | Skills that the assignee is expected to have |
status | MriStatus |
|
Yes | Status of the MRI: written? validated? sent? expired? |
study | Study |
|
Yes | - |
studyId | String |
|
Yes | - |
formMRIs | MriForm[] |
|
Yes | - |
Find zero or one Mri
// Get one Mri
const mri = await prisma.mri.findUnique({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | MriWhereUniqueInput | Yes |
Find first Mri
// Get one Mri
const mri = await prisma.mri.findFirst({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | MriWhereInput | No |
orderBy | MriOrderByWithRelationInput[] | MriOrderByWithRelationInput | No |
cursor | MriWhereUniqueInput | No |
take | Int | No |
skip | Int | No |
distinct | MriScalarFieldEnum | MriScalarFieldEnum[] | No |
Find zero or more Mri
// Get all Mri
const Mri = await prisma.mri.findMany()
// Get first 10 Mri
const Mri = await prisma.mri.findMany({ take: 10 })
Name | Type | Required |
---|---|---|
where | MriWhereInput | No |
orderBy | MriOrderByWithRelationInput[] | MriOrderByWithRelationInput | No |
cursor | MriWhereUniqueInput | No |
take | Int | No |
skip | Int | No |
distinct | MriScalarFieldEnum | MriScalarFieldEnum[] | No |
Create one Mri
// Create one Mri
const Mri = await prisma.mri.create({
data: {
// ... data to create a Mri
}
})
Name | Type | Required |
---|---|---|
data | MriCreateInput | MriUncheckedCreateInput | Yes |
Delete one Mri
// Delete one Mri
const Mri = await prisma.mri.delete({
where: {
// ... filter to delete one Mri
}
})
Name | Type | Required |
---|---|---|
where | MriWhereUniqueInput | Yes |
Update one Mri
// Update one Mri
const mri = await prisma.mri.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
Name | Type | Required |
---|---|---|
data | MriUpdateInput | MriUncheckedUpdateInput | Yes |
where | MriWhereUniqueInput | Yes |
Delete zero or more Mri
// Delete a few Mri
const { count } = await prisma.mri.deleteMany({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | MriWhereInput | No |
limit | Int | No |
Update zero or one Mri
const { count } = await prisma.mri.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
Name | Type | Required |
---|---|---|
data | MriUpdateManyMutationInput | MriUncheckedUpdateManyInput | Yes |
where | MriWhereInput | No |
limit | Int | No |
Create or update one Mri
// Update or create a Mri
const mri = await prisma.mri.upsert({
create: {
// ... data to create a Mri
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Mri we want to update
}
})
Name | Type | Required |
---|---|---|
where | MriWhereUniqueInput | Yes |
create | MriCreateInput | MriUncheckedCreateInput | Yes |
update | MriUpdateInput | MriUncheckedUpdateInput | Yes |
Name | Type | Attributes | Required | Comment |
---|---|---|---|---|
id | String |
|
Yes | - |
nbApplications | Int |
|
Yes | Number of times the assignee applied to mission. |
docs | AssigneeDocs[] |
|
Yes | - |
information | AssigneeInfos? |
|
No | - |
person | Person |
|
Yes | - |
peopleId | String |
|
Yes | - |
studyAssign | StudyAssignee[] |
|
Yes | - |
Find zero or one Assignee
// Get one Assignee
const assignee = await prisma.assignee.findUnique({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | AssigneeWhereUniqueInput | Yes |
Find first Assignee
// Get one Assignee
const assignee = await prisma.assignee.findFirst({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | AssigneeWhereInput | No |
orderBy | AssigneeOrderByWithRelationInput[] | AssigneeOrderByWithRelationInput | No |
cursor | AssigneeWhereUniqueInput | No |
take | Int | No |
skip | Int | No |
distinct | AssigneeScalarFieldEnum | AssigneeScalarFieldEnum[] | No |
Find zero or more Assignee
// Get all Assignee
const Assignee = await prisma.assignee.findMany()
// Get first 10 Assignee
const Assignee = await prisma.assignee.findMany({ take: 10 })
Name | Type | Required |
---|---|---|
where | AssigneeWhereInput | No |
orderBy | AssigneeOrderByWithRelationInput[] | AssigneeOrderByWithRelationInput | No |
cursor | AssigneeWhereUniqueInput | No |
take | Int | No |
skip | Int | No |
distinct | AssigneeScalarFieldEnum | AssigneeScalarFieldEnum[] | No |
Create one Assignee
// Create one Assignee
const Assignee = await prisma.assignee.create({
data: {
// ... data to create a Assignee
}
})
Name | Type | Required |
---|---|---|
data | AssigneeCreateInput | AssigneeUncheckedCreateInput | Yes |
Delete one Assignee
// Delete one Assignee
const Assignee = await prisma.assignee.delete({
where: {
// ... filter to delete one Assignee
}
})
Name | Type | Required |
---|---|---|
where | AssigneeWhereUniqueInput | Yes |
Update one Assignee
// Update one Assignee
const assignee = await prisma.assignee.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
Name | Type | Required |
---|---|---|
data | AssigneeUpdateInput | AssigneeUncheckedUpdateInput | Yes |
where | AssigneeWhereUniqueInput | Yes |
Delete zero or more Assignee
// Delete a few Assignee
const { count } = await prisma.assignee.deleteMany({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | AssigneeWhereInput | No |
limit | Int | No |
Update zero or one Assignee
const { count } = await prisma.assignee.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
Name | Type | Required |
---|---|---|
data | AssigneeUpdateManyMutationInput | AssigneeUncheckedUpdateManyInput | Yes |
where | AssigneeWhereInput | No |
limit | Int | No |
Create or update one Assignee
// Update or create a Assignee
const assignee = await prisma.assignee.upsert({
create: {
// ... data to create a Assignee
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Assignee we want to update
}
})
Name | Type | Required |
---|---|---|
where | AssigneeWhereUniqueInput | Yes |
create | AssigneeCreateInput | AssigneeUncheckedCreateInput | Yes |
update | AssigneeUpdateInput | AssigneeUncheckedUpdateInput | Yes |
Name | Type | Attributes | Required | Comment |
---|---|---|---|---|
id | String |
|
Yes | - |
assignee | Assignee |
|
Yes | - |
assigneeId | String |
|
Yes | - |
age | Int |
|
Yes | - |
promotion | Int |
|
Yes | In which year will the assignee graduate? |
hasScholarship | Boolean |
|
Yes | - |
oldJet | Boolean |
|
Yes | - |
Find zero or one AssigneeInfos
// Get one AssigneeInfos
const assigneeInfos = await prisma.assigneeInfos.findUnique({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | AssigneeInfosWhereUniqueInput | Yes |
Find first AssigneeInfos
// Get one AssigneeInfos
const assigneeInfos = await prisma.assigneeInfos.findFirst({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | AssigneeInfosWhereInput | No |
orderBy | AssigneeInfosOrderByWithRelationInput[] | AssigneeInfosOrderByWithRelationInput | No |
cursor | AssigneeInfosWhereUniqueInput | No |
take | Int | No |
skip | Int | No |
distinct | AssigneeInfosScalarFieldEnum | AssigneeInfosScalarFieldEnum[] | No |
Find zero or more AssigneeInfos
// Get all AssigneeInfos
const AssigneeInfos = await prisma.assigneeInfos.findMany()
// Get first 10 AssigneeInfos
const AssigneeInfos = await prisma.assigneeInfos.findMany({ take: 10 })
Name | Type | Required |
---|---|---|
where | AssigneeInfosWhereInput | No |
orderBy | AssigneeInfosOrderByWithRelationInput[] | AssigneeInfosOrderByWithRelationInput | No |
cursor | AssigneeInfosWhereUniqueInput | No |
take | Int | No |
skip | Int | No |
distinct | AssigneeInfosScalarFieldEnum | AssigneeInfosScalarFieldEnum[] | No |
Create one AssigneeInfos
// Create one AssigneeInfos
const AssigneeInfos = await prisma.assigneeInfos.create({
data: {
// ... data to create a AssigneeInfos
}
})
Name | Type | Required |
---|---|---|
data | AssigneeInfosCreateInput | AssigneeInfosUncheckedCreateInput | Yes |
Delete one AssigneeInfos
// Delete one AssigneeInfos
const AssigneeInfos = await prisma.assigneeInfos.delete({
where: {
// ... filter to delete one AssigneeInfos
}
})
Name | Type | Required |
---|---|---|
where | AssigneeInfosWhereUniqueInput | Yes |
Update one AssigneeInfos
// Update one AssigneeInfos
const assigneeInfos = await prisma.assigneeInfos.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
Name | Type | Required |
---|---|---|
data | AssigneeInfosUpdateInput | AssigneeInfosUncheckedUpdateInput | Yes |
where | AssigneeInfosWhereUniqueInput | Yes |
Delete zero or more AssigneeInfos
// Delete a few AssigneeInfos
const { count } = await prisma.assigneeInfos.deleteMany({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | AssigneeInfosWhereInput | No |
limit | Int | No |
Update zero or one AssigneeInfos
const { count } = await prisma.assigneeInfos.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
Name | Type | Required |
---|---|---|
data | AssigneeInfosUpdateManyMutationInput | AssigneeInfosUncheckedUpdateManyInput | Yes |
where | AssigneeInfosWhereInput | No |
limit | Int | No |
Create or update one AssigneeInfos
// Update or create a AssigneeInfos
const assigneeInfos = await prisma.assigneeInfos.upsert({
create: {
// ... data to create a AssigneeInfos
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the AssigneeInfos we want to update
}
})
Name | Type | Required |
---|---|---|
where | AssigneeInfosWhereUniqueInput | Yes |
create | AssigneeInfosCreateInput | AssigneeInfosUncheckedCreateInput | Yes |
update | AssigneeInfosUpdateInput | AssigneeInfosUncheckedUpdateInput | Yes |
Name | Type | Attributes | Required | Comment |
---|---|---|---|---|
id | String |
|
Yes | - |
assignee | Assignee |
|
Yes | - |
assigneeId | String |
|
Yes | - |
cni | Document |
|
Yes | Identity card |
cniId | String |
|
Yes | - |
socialSecurity | Document |
|
Yes | - |
socialSecurityId | String |
|
Yes | - |
studentCard | Document |
|
Yes | - |
studentCardId | String |
|
Yes | - |
Find zero or one AssigneeDocs
// Get one AssigneeDocs
const assigneeDocs = await prisma.assigneeDocs.findUnique({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | AssigneeDocsWhereUniqueInput | Yes |
Find first AssigneeDocs
// Get one AssigneeDocs
const assigneeDocs = await prisma.assigneeDocs.findFirst({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | AssigneeDocsWhereInput | No |
orderBy | AssigneeDocsOrderByWithRelationInput[] | AssigneeDocsOrderByWithRelationInput | No |
cursor | AssigneeDocsWhereUniqueInput | No |
take | Int | No |
skip | Int | No |
distinct | AssigneeDocsScalarFieldEnum | AssigneeDocsScalarFieldEnum[] | No |
Find zero or more AssigneeDocs
// Get all AssigneeDocs
const AssigneeDocs = await prisma.assigneeDocs.findMany()
// Get first 10 AssigneeDocs
const AssigneeDocs = await prisma.assigneeDocs.findMany({ take: 10 })
Name | Type | Required |
---|---|---|
where | AssigneeDocsWhereInput | No |
orderBy | AssigneeDocsOrderByWithRelationInput[] | AssigneeDocsOrderByWithRelationInput | No |
cursor | AssigneeDocsWhereUniqueInput | No |
take | Int | No |
skip | Int | No |
distinct | AssigneeDocsScalarFieldEnum | AssigneeDocsScalarFieldEnum[] | No |
Create one AssigneeDocs
// Create one AssigneeDocs
const AssigneeDocs = await prisma.assigneeDocs.create({
data: {
// ... data to create a AssigneeDocs
}
})
Name | Type | Required |
---|---|---|
data | AssigneeDocsCreateInput | AssigneeDocsUncheckedCreateInput | Yes |
Delete one AssigneeDocs
// Delete one AssigneeDocs
const AssigneeDocs = await prisma.assigneeDocs.delete({
where: {
// ... filter to delete one AssigneeDocs
}
})
Name | Type | Required |
---|---|---|
where | AssigneeDocsWhereUniqueInput | Yes |
Update one AssigneeDocs
// Update one AssigneeDocs
const assigneeDocs = await prisma.assigneeDocs.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
Name | Type | Required |
---|---|---|
data | AssigneeDocsUpdateInput | AssigneeDocsUncheckedUpdateInput | Yes |
where | AssigneeDocsWhereUniqueInput | Yes |
Delete zero or more AssigneeDocs
// Delete a few AssigneeDocs
const { count } = await prisma.assigneeDocs.deleteMany({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | AssigneeDocsWhereInput | No |
limit | Int | No |
Update zero or one AssigneeDocs
const { count } = await prisma.assigneeDocs.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
Name | Type | Required |
---|---|---|
data | AssigneeDocsUpdateManyMutationInput | AssigneeDocsUncheckedUpdateManyInput | Yes |
where | AssigneeDocsWhereInput | No |
limit | Int | No |
Create or update one AssigneeDocs
// Update or create a AssigneeDocs
const assigneeDocs = await prisma.assigneeDocs.upsert({
create: {
// ... data to create a AssigneeDocs
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the AssigneeDocs we want to update
}
})
Name | Type | Required |
---|---|---|
where | AssigneeDocsWhereUniqueInput | Yes |
create | AssigneeDocsCreateInput | AssigneeDocsUncheckedCreateInput | Yes |
update | AssigneeDocsUpdateInput | AssigneeDocsUncheckedUpdateInput | Yes |
Name | Type | Attributes | Required | Comment |
---|---|---|---|---|
id | String |
|
Yes | - |
study | Study |
|
Yes | - |
studyId | String |
|
Yes | - |
assignee | Assignee |
|
Yes | - |
assigneeId | String |
|
Yes | - |
formInterview | FormInterviews |
|
Yes | - |
formInterviewId | String |
|
Yes | - |
mriForm | MriForm |
|
Yes | - |
mriFormId | String |
|
Yes | - |
selectionNotes | String |
|
Yes |
Place to store notes about the selection of this assignee
E.g. date at which the assignee will stop being a Telecom Paris student |
taken | Boolean |
|
Yes | Whether he was chosen for the mission or not. |
Find zero or one StudyAssignee
// Get one StudyAssignee
const studyAssignee = await prisma.studyAssignee.findUnique({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | StudyAssigneeWhereUniqueInput | Yes |
Find first StudyAssignee
// Get one StudyAssignee
const studyAssignee = await prisma.studyAssignee.findFirst({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | StudyAssigneeWhereInput | No |
orderBy | StudyAssigneeOrderByWithRelationInput[] | StudyAssigneeOrderByWithRelationInput | No |
cursor | StudyAssigneeWhereUniqueInput | No |
take | Int | No |
skip | Int | No |
distinct | StudyAssigneeScalarFieldEnum | StudyAssigneeScalarFieldEnum[] | No |
Find zero or more StudyAssignee
// Get all StudyAssignee
const StudyAssignee = await prisma.studyAssignee.findMany()
// Get first 10 StudyAssignee
const StudyAssignee = await prisma.studyAssignee.findMany({ take: 10 })
Name | Type | Required |
---|---|---|
where | StudyAssigneeWhereInput | No |
orderBy | StudyAssigneeOrderByWithRelationInput[] | StudyAssigneeOrderByWithRelationInput | No |
cursor | StudyAssigneeWhereUniqueInput | No |
take | Int | No |
skip | Int | No |
distinct | StudyAssigneeScalarFieldEnum | StudyAssigneeScalarFieldEnum[] | No |
Create one StudyAssignee
// Create one StudyAssignee
const StudyAssignee = await prisma.studyAssignee.create({
data: {
// ... data to create a StudyAssignee
}
})
Name | Type | Required |
---|---|---|
data | StudyAssigneeCreateInput | StudyAssigneeUncheckedCreateInput | Yes |
Delete one StudyAssignee
// Delete one StudyAssignee
const StudyAssignee = await prisma.studyAssignee.delete({
where: {
// ... filter to delete one StudyAssignee
}
})
Name | Type | Required |
---|---|---|
where | StudyAssigneeWhereUniqueInput | Yes |
Update one StudyAssignee
// Update one StudyAssignee
const studyAssignee = await prisma.studyAssignee.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
Name | Type | Required |
---|---|---|
data | StudyAssigneeUpdateInput | StudyAssigneeUncheckedUpdateInput | Yes |
where | StudyAssigneeWhereUniqueInput | Yes |
Delete zero or more StudyAssignee
// Delete a few StudyAssignee
const { count } = await prisma.studyAssignee.deleteMany({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | StudyAssigneeWhereInput | No |
limit | Int | No |
Update zero or one StudyAssignee
const { count } = await prisma.studyAssignee.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
Name | Type | Required |
---|---|---|
data | StudyAssigneeUpdateManyMutationInput | StudyAssigneeUncheckedUpdateManyInput | Yes |
where | StudyAssigneeWhereInput | No |
limit | Int | No |
Create or update one StudyAssignee
// Update or create a StudyAssignee
const studyAssignee = await prisma.studyAssignee.upsert({
create: {
// ... data to create a StudyAssignee
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the StudyAssignee we want to update
}
})
Name | Type | Required |
---|---|---|
where | StudyAssigneeWhereUniqueInput | Yes |
create | StudyAssigneeCreateInput | StudyAssigneeUncheckedCreateInput | Yes |
update | StudyAssigneeUpdateInput | StudyAssigneeUncheckedUpdateInput | Yes |
Name | Type | Attributes | Required | Comment |
---|---|---|---|---|
id | String |
|
Yes | - |
mri | Mri |
|
Yes | - |
mriId | String |
|
Yes | - |
studyAssignees | StudyAssignee? |
|
No | - |
experience | String |
|
Yes | Experience related to the mission |
knowledge | String |
|
Yes | Knowledge related to the mission |
ideas | String |
|
Yes |
How would the assignee approach the mission?
What is his plan? His approach? How much time? |
jeExperience | Int |
|
Yes |
|
Find zero or one MriForm
// Get one MriForm
const mriForm = await prisma.mriForm.findUnique({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | MriFormWhereUniqueInput | Yes |
Find first MriForm
// Get one MriForm
const mriForm = await prisma.mriForm.findFirst({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | MriFormWhereInput | No |
orderBy | MriFormOrderByWithRelationInput[] | MriFormOrderByWithRelationInput | No |
cursor | MriFormWhereUniqueInput | No |
take | Int | No |
skip | Int | No |
distinct | MriFormScalarFieldEnum | MriFormScalarFieldEnum[] | No |
Find zero or more MriForm
// Get all MriForm
const MriForm = await prisma.mriForm.findMany()
// Get first 10 MriForm
const MriForm = await prisma.mriForm.findMany({ take: 10 })
Name | Type | Required |
---|---|---|
where | MriFormWhereInput | No |
orderBy | MriFormOrderByWithRelationInput[] | MriFormOrderByWithRelationInput | No |
cursor | MriFormWhereUniqueInput | No |
take | Int | No |
skip | Int | No |
distinct | MriFormScalarFieldEnum | MriFormScalarFieldEnum[] | No |
Create one MriForm
// Create one MriForm
const MriForm = await prisma.mriForm.create({
data: {
// ... data to create a MriForm
}
})
Name | Type | Required |
---|---|---|
data | MriFormCreateInput | MriFormUncheckedCreateInput | Yes |
Delete one MriForm
// Delete one MriForm
const MriForm = await prisma.mriForm.delete({
where: {
// ... filter to delete one MriForm
}
})
Name | Type | Required |
---|---|---|
where | MriFormWhereUniqueInput | Yes |
Update one MriForm
// Update one MriForm
const mriForm = await prisma.mriForm.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
Name | Type | Required |
---|---|---|
data | MriFormUpdateInput | MriFormUncheckedUpdateInput | Yes |
where | MriFormWhereUniqueInput | Yes |
Delete zero or more MriForm
// Delete a few MriForm
const { count } = await prisma.mriForm.deleteMany({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | MriFormWhereInput | No |
limit | Int | No |
Update zero or one MriForm
const { count } = await prisma.mriForm.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
Name | Type | Required |
---|---|---|
data | MriFormUpdateManyMutationInput | MriFormUncheckedUpdateManyInput | Yes |
where | MriFormWhereInput | No |
limit | Int | No |
Create or update one MriForm
// Update or create a MriForm
const mriForm = await prisma.mriForm.upsert({
create: {
// ... data to create a MriForm
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the MriForm we want to update
}
})
Name | Type | Required |
---|---|---|
where | MriFormWhereUniqueInput | Yes |
create | MriFormCreateInput | MriFormUncheckedCreateInput | Yes |
update | MriFormUpdateInput | MriFormUncheckedUpdateInput | Yes |
Name | Type | Attributes | Required | Comment |
---|---|---|---|---|
id | String |
|
Yes | - |
studyAssignees | StudyAssignee? |
|
No | - |
available | Boolean |
|
Yes | Assignee is avalaible for the mission |
approach | String |
|
Yes | How would the assignee approach the mission? What is his plan? His approach? How much time? |
courses | String |
|
Yes | Courses that the assignee followed that are related to the mission. |
starS | String |
|
Yes | Situation & general context of the project See STAR method for more information. |
starT | String |
|
Yes | Tasks & specific situations See STAR method for more information. |
starA | String |
|
Yes | Action & individual contribution See STAR method for more information. |
starR | String |
|
Yes | / Results & accumplished objectives See STAR method for more information. |
motivation | String |
|
Yes | Why is the assignee applying? |
cdpRequirements | String |
|
Yes | What does the assignee |
questions | String |
|
Yes | Questions asked by the assignee during the interview |
Find zero or one FormInterviews
// Get one FormInterviews
const formInterviews = await prisma.formInterviews.findUnique({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | FormInterviewsWhereUniqueInput | Yes |
Find first FormInterviews
// Get one FormInterviews
const formInterviews = await prisma.formInterviews.findFirst({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | FormInterviewsWhereInput | No |
orderBy | FormInterviewsOrderByWithRelationInput[] | FormInterviewsOrderByWithRelationInput | No |
cursor | FormInterviewsWhereUniqueInput | No |
take | Int | No |
skip | Int | No |
distinct | FormInterviewsScalarFieldEnum | FormInterviewsScalarFieldEnum[] | No |
Find zero or more FormInterviews
// Get all FormInterviews
const FormInterviews = await prisma.formInterviews.findMany()
// Get first 10 FormInterviews
const FormInterviews = await prisma.formInterviews.findMany({ take: 10 })
Name | Type | Required |
---|---|---|
where | FormInterviewsWhereInput | No |
orderBy | FormInterviewsOrderByWithRelationInput[] | FormInterviewsOrderByWithRelationInput | No |
cursor | FormInterviewsWhereUniqueInput | No |
take | Int | No |
skip | Int | No |
distinct | FormInterviewsScalarFieldEnum | FormInterviewsScalarFieldEnum[] | No |
Create one FormInterviews
// Create one FormInterviews
const FormInterviews = await prisma.formInterviews.create({
data: {
// ... data to create a FormInterviews
}
})
Name | Type | Required |
---|---|---|
data | FormInterviewsCreateInput | FormInterviewsUncheckedCreateInput | Yes |
Delete one FormInterviews
// Delete one FormInterviews
const FormInterviews = await prisma.formInterviews.delete({
where: {
// ... filter to delete one FormInterviews
}
})
Name | Type | Required |
---|---|---|
where | FormInterviewsWhereUniqueInput | Yes |
Update one FormInterviews
// Update one FormInterviews
const formInterviews = await prisma.formInterviews.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
Name | Type | Required |
---|---|---|
data | FormInterviewsUpdateInput | FormInterviewsUncheckedUpdateInput | Yes |
where | FormInterviewsWhereUniqueInput | Yes |
Delete zero or more FormInterviews
// Delete a few FormInterviews
const { count } = await prisma.formInterviews.deleteMany({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | FormInterviewsWhereInput | No |
limit | Int | No |
Update zero or one FormInterviews
const { count } = await prisma.formInterviews.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
Name | Type | Required |
---|---|---|
data | FormInterviewsUpdateManyMutationInput | FormInterviewsUncheckedUpdateManyInput | Yes |
where | FormInterviewsWhereInput | No |
limit | Int | No |
Create or update one FormInterviews
// Update or create a FormInterviews
const formInterviews = await prisma.formInterviews.upsert({
create: {
// ... data to create a FormInterviews
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the FormInterviews we want to update
}
})
Name | Type | Required |
---|---|---|
where | FormInterviewsWhereUniqueInput | Yes |
create | FormInterviewsCreateInput | FormInterviewsUncheckedCreateInput | Yes |
update | FormInterviewsUpdateInput | FormInterviewsUncheckedUpdateInput | Yes |
Name | Type | Attributes | Required | Comment |
---|---|---|---|---|
id | String |
|
Yes | - |
cdps | Admin[] |
|
Yes | - |
auditors | Admin[] |
|
Yes | - |
information | StudyInfos |
|
Yes | - |
informationId | String |
|
Yes | - |
studyProceedings | StudyProceedings? |
|
No | - |
clients | StudyClient[] |
|
Yes | - |
mri | Mri? |
|
No | - |
studyAssignees | StudyAssignee[] |
|
Yes | - |
satisfaction | Satisfaction? |
|
No | - |
studyProceedingsId | String? |
|
No | - |
Find zero or one Study
// Get one Study
const study = await prisma.study.findUnique({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | StudyWhereUniqueInput | Yes |
Find first Study
// Get one Study
const study = await prisma.study.findFirst({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | StudyWhereInput | No |
orderBy | StudyOrderByWithRelationInput[] | StudyOrderByWithRelationInput | No |
cursor | StudyWhereUniqueInput | No |
take | Int | No |
skip | Int | No |
distinct | StudyScalarFieldEnum | StudyScalarFieldEnum[] | No |
Find zero or more Study
// Get all Study
const Study = await prisma.study.findMany()
// Get first 10 Study
const Study = await prisma.study.findMany({ take: 10 })
Name | Type | Required |
---|---|---|
where | StudyWhereInput | No |
orderBy | StudyOrderByWithRelationInput[] | StudyOrderByWithRelationInput | No |
cursor | StudyWhereUniqueInput | No |
take | Int | No |
skip | Int | No |
distinct | StudyScalarFieldEnum | StudyScalarFieldEnum[] | No |
Create one Study
// Create one Study
const Study = await prisma.study.create({
data: {
// ... data to create a Study
}
})
Name | Type | Required |
---|---|---|
data | StudyCreateInput | StudyUncheckedCreateInput | Yes |
Delete one Study
// Delete one Study
const Study = await prisma.study.delete({
where: {
// ... filter to delete one Study
}
})
Name | Type | Required |
---|---|---|
where | StudyWhereUniqueInput | Yes |
Update one Study
// Update one Study
const study = await prisma.study.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
Name | Type | Required |
---|---|---|
data | StudyUpdateInput | StudyUncheckedUpdateInput | Yes |
where | StudyWhereUniqueInput | Yes |
Delete zero or more Study
// Delete a few Study
const { count } = await prisma.study.deleteMany({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | StudyWhereInput | No |
limit | Int | No |
Update zero or one Study
const { count } = await prisma.study.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
Name | Type | Required |
---|---|---|
data | StudyUpdateManyMutationInput | StudyUncheckedUpdateManyInput | Yes |
where | StudyWhereInput | No |
limit | Int | No |
Create or update one Study
// Update or create a Study
const study = await prisma.study.upsert({
create: {
// ... data to create a Study
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Study we want to update
}
})
Name | Type | Required |
---|---|---|
where | StudyWhereUniqueInput | Yes |
create | StudyCreateInput | StudyUncheckedCreateInput | Yes |
update | StudyUpdateInput | StudyUncheckedUpdateInput | Yes |
Name | Type | Attributes | Required | Comment |
---|---|---|---|---|
id | String |
|
Yes | - |
code | String |
|
Yes | - |
googleFolder | String? |
|
No |
Id of the folder in Google Drive that contains the study.
This folder is normally in the "Dossiers de suivi" directory. |
title | String? |
|
No | Title of the study |
applicationFee | Float |
|
Yes |
The client usually pays for administrative costs.
Unit: percentage added to the price for this cost. |
cc | Boolean |
|
Yes | Indicates whether the mission is a CC or not. |
domains | Domain[] |
|
Yes | Different domains related to the mission |
estimatedDuration | Int? |
|
No |
Estimated duration of the mission
Unit: number of JEH |
deadlinePreStudy | DateTime? |
|
No | Deadline for signing the CE |
study | Study? |
|
No | - |
Find zero or one StudyInfos
// Get one StudyInfos
const studyInfos = await prisma.studyInfos.findUnique({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | StudyInfosWhereUniqueInput | Yes |
Find first StudyInfos
// Get one StudyInfos
const studyInfos = await prisma.studyInfos.findFirst({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | StudyInfosWhereInput | No |
orderBy | StudyInfosOrderByWithRelationInput[] | StudyInfosOrderByWithRelationInput | No |
cursor | StudyInfosWhereUniqueInput | No |
take | Int | No |
skip | Int | No |
distinct | StudyInfosScalarFieldEnum | StudyInfosScalarFieldEnum[] | No |
Find zero or more StudyInfos
// Get all StudyInfos
const StudyInfos = await prisma.studyInfos.findMany()
// Get first 10 StudyInfos
const StudyInfos = await prisma.studyInfos.findMany({ take: 10 })
Name | Type | Required |
---|---|---|
where | StudyInfosWhereInput | No |
orderBy | StudyInfosOrderByWithRelationInput[] | StudyInfosOrderByWithRelationInput | No |
cursor | StudyInfosWhereUniqueInput | No |
take | Int | No |
skip | Int | No |
distinct | StudyInfosScalarFieldEnum | StudyInfosScalarFieldEnum[] | No |
Create one StudyInfos
// Create one StudyInfos
const StudyInfos = await prisma.studyInfos.create({
data: {
// ... data to create a StudyInfos
}
})
Name | Type | Required |
---|---|---|
data | StudyInfosCreateInput | StudyInfosUncheckedCreateInput | Yes |
Delete one StudyInfos
// Delete one StudyInfos
const StudyInfos = await prisma.studyInfos.delete({
where: {
// ... filter to delete one StudyInfos
}
})
Name | Type | Required |
---|---|---|
where | StudyInfosWhereUniqueInput | Yes |
Update one StudyInfos
// Update one StudyInfos
const studyInfos = await prisma.studyInfos.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
Name | Type | Required |
---|---|---|
data | StudyInfosUpdateInput | StudyInfosUncheckedUpdateInput | Yes |
where | StudyInfosWhereUniqueInput | Yes |
Delete zero or more StudyInfos
// Delete a few StudyInfos
const { count } = await prisma.studyInfos.deleteMany({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | StudyInfosWhereInput | No |
limit | Int | No |
Update zero or one StudyInfos
const { count } = await prisma.studyInfos.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
Name | Type | Required |
---|---|---|
data | StudyInfosUpdateManyMutationInput | StudyInfosUncheckedUpdateManyInput | Yes |
where | StudyInfosWhereInput | No |
limit | Int | No |
Create or update one StudyInfos
// Update or create a StudyInfos
const studyInfos = await prisma.studyInfos.upsert({
create: {
// ... data to create a StudyInfos
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the StudyInfos we want to update
}
})
Name | Type | Required |
---|---|---|
where | StudyInfosWhereUniqueInput | Yes |
create | StudyInfosCreateInput | StudyInfosUncheckedCreateInput | Yes |
update | StudyInfosUpdateInput | StudyInfosUncheckedUpdateInput | Yes |
Name | Type | Attributes | Required | Comment |
---|---|---|---|---|
id | String |
|
Yes | - |
studyId | String |
|
Yes | - |
phases | Phase[] |
|
Yes | - |
studyProcessStep | StudyProgressStep |
|
Yes | - |
study | Study |
|
Yes | - |
Find zero or one StudyProceedings
// Get one StudyProceedings
const studyProceedings = await prisma.studyProceedings.findUnique({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | StudyProceedingsWhereUniqueInput | Yes |
Find first StudyProceedings
// Get one StudyProceedings
const studyProceedings = await prisma.studyProceedings.findFirst({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | StudyProceedingsWhereInput | No |
orderBy | StudyProceedingsOrderByWithRelationInput[] | StudyProceedingsOrderByWithRelationInput | No |
cursor | StudyProceedingsWhereUniqueInput | No |
take | Int | No |
skip | Int | No |
distinct | StudyProceedingsScalarFieldEnum | StudyProceedingsScalarFieldEnum[] | No |
Find zero or more StudyProceedings
// Get all StudyProceedings
const StudyProceedings = await prisma.studyProceedings.findMany()
// Get first 10 StudyProceedings
const StudyProceedings = await prisma.studyProceedings.findMany({ take: 10 })
Name | Type | Required |
---|---|---|
where | StudyProceedingsWhereInput | No |
orderBy | StudyProceedingsOrderByWithRelationInput[] | StudyProceedingsOrderByWithRelationInput | No |
cursor | StudyProceedingsWhereUniqueInput | No |
take | Int | No |
skip | Int | No |
distinct | StudyProceedingsScalarFieldEnum | StudyProceedingsScalarFieldEnum[] | No |
Create one StudyProceedings
// Create one StudyProceedings
const StudyProceedings = await prisma.studyProceedings.create({
data: {
// ... data to create a StudyProceedings
}
})
Name | Type | Required |
---|---|---|
data | StudyProceedingsCreateInput | StudyProceedingsUncheckedCreateInput | Yes |
Delete one StudyProceedings
// Delete one StudyProceedings
const StudyProceedings = await prisma.studyProceedings.delete({
where: {
// ... filter to delete one StudyProceedings
}
})
Name | Type | Required |
---|---|---|
where | StudyProceedingsWhereUniqueInput | Yes |
Update one StudyProceedings
// Update one StudyProceedings
const studyProceedings = await prisma.studyProceedings.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
Name | Type | Required |
---|---|---|
data | StudyProceedingsUpdateInput | StudyProceedingsUncheckedUpdateInput | Yes |
where | StudyProceedingsWhereUniqueInput | Yes |
Delete zero or more StudyProceedings
// Delete a few StudyProceedings
const { count } = await prisma.studyProceedings.deleteMany({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | StudyProceedingsWhereInput | No |
limit | Int | No |
Update zero or one StudyProceedings
const { count } = await prisma.studyProceedings.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
Name | Type | Required |
---|---|---|
data | StudyProceedingsUpdateManyMutationInput | StudyProceedingsUncheckedUpdateManyInput | Yes |
where | StudyProceedingsWhereInput | No |
limit | Int | No |
Create or update one StudyProceedings
// Update or create a StudyProceedings
const studyProceedings = await prisma.studyProceedings.upsert({
create: {
// ... data to create a StudyProceedings
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the StudyProceedings we want to update
}
})
Name | Type | Required |
---|---|---|
where | StudyProceedingsWhereUniqueInput | Yes |
create | StudyProceedingsCreateInput | StudyProceedingsUncheckedCreateInput | Yes |
update | StudyProceedingsUpdateInput | StudyProceedingsUncheckedUpdateInput | Yes |
Name | Type | Attributes | Required | Comment |
---|---|---|---|---|
id | String |
|
Yes | - |
jehs | Int |
|
Yes | Number of JEH in the phase |
title | String |
|
Yes | - |
deliverable | Deliverable? |
|
No | - |
unitPrice | Float |
|
Yes | HT price of one JEH, usually between 400 and 450 |
startDate | DateTime? |
|
No | - |
endDate | DateTime? |
|
No | - |
studyProceedings | StudyProceedings |
|
Yes | - |
studyProceedingsId | String |
|
Yes | - |
Find zero or one Phase
// Get one Phase
const phase = await prisma.phase.findUnique({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | PhaseWhereUniqueInput | Yes |
Find first Phase
// Get one Phase
const phase = await prisma.phase.findFirst({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | PhaseWhereInput | No |
orderBy | PhaseOrderByWithRelationInput[] | PhaseOrderByWithRelationInput | No |
cursor | PhaseWhereUniqueInput | No |
take | Int | No |
skip | Int | No |
distinct | PhaseScalarFieldEnum | PhaseScalarFieldEnum[] | No |
Find zero or more Phase
// Get all Phase
const Phase = await prisma.phase.findMany()
// Get first 10 Phase
const Phase = await prisma.phase.findMany({ take: 10 })
Name | Type | Required |
---|---|---|
where | PhaseWhereInput | No |
orderBy | PhaseOrderByWithRelationInput[] | PhaseOrderByWithRelationInput | No |
cursor | PhaseWhereUniqueInput | No |
take | Int | No |
skip | Int | No |
distinct | PhaseScalarFieldEnum | PhaseScalarFieldEnum[] | No |
Create one Phase
// Create one Phase
const Phase = await prisma.phase.create({
data: {
// ... data to create a Phase
}
})
Name | Type | Required |
---|---|---|
data | PhaseCreateInput | PhaseUncheckedCreateInput | Yes |
Delete one Phase
// Delete one Phase
const Phase = await prisma.phase.delete({
where: {
// ... filter to delete one Phase
}
})
Name | Type | Required |
---|---|---|
where | PhaseWhereUniqueInput | Yes |
Update one Phase
// Update one Phase
const phase = await prisma.phase.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
Name | Type | Required |
---|---|---|
data | PhaseUpdateInput | PhaseUncheckedUpdateInput | Yes |
where | PhaseWhereUniqueInput | Yes |
Delete zero or more Phase
// Delete a few Phase
const { count } = await prisma.phase.deleteMany({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | PhaseWhereInput | No |
limit | Int | No |
Update zero or one Phase
const { count } = await prisma.phase.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
Name | Type | Required |
---|---|---|
data | PhaseUpdateManyMutationInput | PhaseUncheckedUpdateManyInput | Yes |
where | PhaseWhereInput | No |
limit | Int | No |
Create or update one Phase
// Update or create a Phase
const phase = await prisma.phase.upsert({
create: {
// ... data to create a Phase
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Phase we want to update
}
})
Name | Type | Required |
---|---|---|
where | PhaseWhereUniqueInput | Yes |
create | PhaseCreateInput | PhaseUncheckedCreateInput | Yes |
update | PhaseUpdateInput | PhaseUncheckedUpdateInput | Yes |
Name | Type | Attributes | Required | Comment |
---|---|---|---|---|
id | String |
|
Yes | - |
description | String |
|
Yes | - |
status | DeliverableStatus |
|
Yes | - |
phase | Phase |
|
Yes | - |
phaseId | String |
|
Yes | - |
Find zero or one Deliverable
// Get one Deliverable
const deliverable = await prisma.deliverable.findUnique({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | DeliverableWhereUniqueInput | Yes |
Find first Deliverable
// Get one Deliverable
const deliverable = await prisma.deliverable.findFirst({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | DeliverableWhereInput | No |
orderBy | DeliverableOrderByWithRelationInput[] | DeliverableOrderByWithRelationInput | No |
cursor | DeliverableWhereUniqueInput | No |
take | Int | No |
skip | Int | No |
distinct | DeliverableScalarFieldEnum | DeliverableScalarFieldEnum[] | No |
Find zero or more Deliverable
// Get all Deliverable
const Deliverable = await prisma.deliverable.findMany()
// Get first 10 Deliverable
const Deliverable = await prisma.deliverable.findMany({ take: 10 })
Name | Type | Required |
---|---|---|
where | DeliverableWhereInput | No |
orderBy | DeliverableOrderByWithRelationInput[] | DeliverableOrderByWithRelationInput | No |
cursor | DeliverableWhereUniqueInput | No |
take | Int | No |
skip | Int | No |
distinct | DeliverableScalarFieldEnum | DeliverableScalarFieldEnum[] | No |
Create one Deliverable
// Create one Deliverable
const Deliverable = await prisma.deliverable.create({
data: {
// ... data to create a Deliverable
}
})
Name | Type | Required |
---|---|---|
data | DeliverableCreateInput | DeliverableUncheckedCreateInput | Yes |
Delete one Deliverable
// Delete one Deliverable
const Deliverable = await prisma.deliverable.delete({
where: {
// ... filter to delete one Deliverable
}
})
Name | Type | Required |
---|---|---|
where | DeliverableWhereUniqueInput | Yes |
Update one Deliverable
// Update one Deliverable
const deliverable = await prisma.deliverable.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
Name | Type | Required |
---|---|---|
data | DeliverableUpdateInput | DeliverableUncheckedUpdateInput | Yes |
where | DeliverableWhereUniqueInput | Yes |
Delete zero or more Deliverable
// Delete a few Deliverable
const { count } = await prisma.deliverable.deleteMany({
where: {
// ... provide filter here
}
})
Name | Type | Required |
---|---|---|
where | DeliverableWhereInput | No |
limit | Int | No |
Update zero or one Deliverable
const { count } = await prisma.deliverable.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
Name | Type | Required |
---|---|---|
data | DeliverableUpdateManyMutationInput | DeliverableUncheckedUpdateManyInput | Yes |
where | DeliverableWhereInput | No |
limit | Int | No |
Create or update one Deliverable
// Update or create a Deliverable
const deliverable = await prisma.deliverable.upsert({
create: {
// ... data to create a Deliverable
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Deliverable we want to update
}
})
Name | Type | Required |
---|---|---|
where | DeliverableWhereUniqueInput | Yes |
create | DeliverableCreateInput | DeliverableUncheckedCreateInput | Yes |
update | DeliverableUpdateInput | DeliverableUncheckedUpdateInput | Yes |
Name | Type | Nullable |
---|---|---|
AND | PersonWhereInput | PersonWhereInput[] | No |
OR | PersonWhereInput[] | No |
NOT | PersonWhereInput | PersonWhereInput[] | No |
id | StringFilter | String | No |
StringNullableFilter | String | Null | Yes | |
firstName | StringFilter | String | No |
lastName | StringFilter | String | No |
number | StringNullableFilter | String | Null | Yes |
address | AddressNullableScalarRelationFilter | AddressWhereInput | Null | Yes |
user | UserNullableScalarRelationFilter | UserWhereInput | Null | Yes |
assignee | AssigneeNullableScalarRelationFilter | AssigneeWhereInput | Null | Yes |
clients | ClientNullableScalarRelationFilter | ClientWhereInput | Null | Yes |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
SortOrder | SortOrderInput | No | |
firstName | SortOrder | No |
lastName | SortOrder | No |
number | SortOrder | SortOrderInput | No |
address | AddressOrderByWithRelationInput | No |
user | UserOrderByWithRelationInput | No |
assignee | AssigneeOrderByWithRelationInput | No |
clients | ClientOrderByWithRelationInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
name | PersonNameCompoundUniqueInput | No |
AND | PersonWhereInput | PersonWhereInput[] | No |
OR | PersonWhereInput[] | No |
NOT | PersonWhereInput | PersonWhereInput[] | No |
StringNullableFilter | String | Null | Yes | |
firstName | StringFilter | String | No |
lastName | StringFilter | String | No |
number | StringNullableFilter | String | Null | Yes |
address | AddressNullableScalarRelationFilter | AddressWhereInput | Null | Yes |
user | UserNullableScalarRelationFilter | UserWhereInput | Null | Yes |
assignee | AssigneeNullableScalarRelationFilter | AssigneeWhereInput | Null | Yes |
clients | ClientNullableScalarRelationFilter | ClientWhereInput | Null | Yes |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
SortOrder | SortOrderInput | No | |
firstName | SortOrder | No |
lastName | SortOrder | No |
number | SortOrder | SortOrderInput | No |
_count | PersonCountOrderByAggregateInput | No |
_max | PersonMaxOrderByAggregateInput | No |
_min | PersonMinOrderByAggregateInput | No |
Name | Type | Nullable |
---|---|---|
AND | PersonScalarWhereWithAggregatesInput | PersonScalarWhereWithAggregatesInput[] | No |
OR | PersonScalarWhereWithAggregatesInput[] | No |
NOT | PersonScalarWhereWithAggregatesInput | PersonScalarWhereWithAggregatesInput[] | No |
id | StringWithAggregatesFilter | String | No |
StringNullableWithAggregatesFilter | String | Null | Yes | |
firstName | StringWithAggregatesFilter | String | No |
lastName | StringWithAggregatesFilter | String | No |
number | StringNullableWithAggregatesFilter | String | Null | Yes |
Name | Type | Nullable |
---|---|---|
AND | UserWhereInput | UserWhereInput[] | No |
OR | UserWhereInput[] | No |
NOT | UserWhereInput | UserWhereInput[] | No |
id | StringFilter | String | No |
personId | StringFilter | String | No |
userSettingsId | StringNullableFilter | String | Null | Yes |
person | PersonScalarRelationFilter | PersonWhereInput | No |
settings | UserSettingsNullableScalarRelationFilter | UserSettingsWhereInput | Null | Yes |
admin | AdminNullableScalarRelationFilter | AdminWhereInput | Null | Yes |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
personId | SortOrder | No |
userSettingsId | SortOrder | SortOrderInput | No |
person | PersonOrderByWithRelationInput | No |
settings | UserSettingsOrderByWithRelationInput | No |
admin | AdminOrderByWithRelationInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
personId | String | No |
AND | UserWhereInput | UserWhereInput[] | No |
OR | UserWhereInput[] | No |
NOT | UserWhereInput | UserWhereInput[] | No |
userSettingsId | StringNullableFilter | String | Null | Yes |
person | PersonScalarRelationFilter | PersonWhereInput | No |
settings | UserSettingsNullableScalarRelationFilter | UserSettingsWhereInput | Null | Yes |
admin | AdminNullableScalarRelationFilter | AdminWhereInput | Null | Yes |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
personId | SortOrder | No |
userSettingsId | SortOrder | SortOrderInput | No |
_count | UserCountOrderByAggregateInput | No |
_max | UserMaxOrderByAggregateInput | No |
_min | UserMinOrderByAggregateInput | No |
Name | Type | Nullable |
---|---|---|
AND | UserScalarWhereWithAggregatesInput | UserScalarWhereWithAggregatesInput[] | No |
OR | UserScalarWhereWithAggregatesInput[] | No |
NOT | UserScalarWhereWithAggregatesInput | UserScalarWhereWithAggregatesInput[] | No |
id | StringWithAggregatesFilter | String | No |
personId | StringWithAggregatesFilter | String | No |
userSettingsId | StringNullableWithAggregatesFilter | String | Null | Yes |
Name | Type | Nullable |
---|---|---|
AND | AdminWhereInput | AdminWhereInput[] | No |
OR | AdminWhereInput[] | No |
NOT | AdminWhereInput | AdminWhereInput[] | No |
id | StringFilter | String | No |
userId | StringFilter | String | No |
position | StringNullableFilter | String | Null | Yes |
image | StringNullableFilter | String | Null | Yes |
user | UserScalarRelationFilter | UserWhereInput | No |
studies | StudyListRelationFilter | No |
auditedStudies | StudyListRelationFilter | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
userId | SortOrder | No |
position | SortOrder | SortOrderInput | No |
image | SortOrder | SortOrderInput | No |
user | UserOrderByWithRelationInput | No |
studies | StudyOrderByRelationAggregateInput | No |
auditedStudies | StudyOrderByRelationAggregateInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
userId | String | No |
AND | AdminWhereInput | AdminWhereInput[] | No |
OR | AdminWhereInput[] | No |
NOT | AdminWhereInput | AdminWhereInput[] | No |
position | StringNullableFilter | String | Null | Yes |
image | StringNullableFilter | String | Null | Yes |
user | UserScalarRelationFilter | UserWhereInput | No |
studies | StudyListRelationFilter | No |
auditedStudies | StudyListRelationFilter | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
userId | SortOrder | No |
position | SortOrder | SortOrderInput | No |
image | SortOrder | SortOrderInput | No |
_count | AdminCountOrderByAggregateInput | No |
_max | AdminMaxOrderByAggregateInput | No |
_min | AdminMinOrderByAggregateInput | No |
Name | Type | Nullable |
---|---|---|
AND | AdminScalarWhereWithAggregatesInput | AdminScalarWhereWithAggregatesInput[] | No |
OR | AdminScalarWhereWithAggregatesInput[] | No |
NOT | AdminScalarWhereWithAggregatesInput | AdminScalarWhereWithAggregatesInput[] | No |
id | StringWithAggregatesFilter | String | No |
userId | StringWithAggregatesFilter | String | No |
position | StringNullableWithAggregatesFilter | String | Null | Yes |
image | StringNullableWithAggregatesFilter | String | Null | Yes |
Name | Type | Nullable |
---|---|---|
AND | UserSettingsWhereInput | UserSettingsWhereInput[] | No |
OR | UserSettingsWhereInput[] | No |
NOT | UserSettingsWhereInput | UserSettingsWhereInput[] | No |
id | StringFilter | String | No |
theme | StringFilter | String | No |
notificationLevel | EnumNotificationLevelFilter | NotificationLevel | No |
gui | BoolFilter | Boolean | No |
User | UserListRelationFilter | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
theme | SortOrder | No |
notificationLevel | SortOrder | No |
gui | SortOrder | No |
User | UserOrderByRelationAggregateInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
AND | UserSettingsWhereInput | UserSettingsWhereInput[] | No |
OR | UserSettingsWhereInput[] | No |
NOT | UserSettingsWhereInput | UserSettingsWhereInput[] | No |
theme | StringFilter | String | No |
notificationLevel | EnumNotificationLevelFilter | NotificationLevel | No |
gui | BoolFilter | Boolean | No |
User | UserListRelationFilter | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
theme | SortOrder | No |
notificationLevel | SortOrder | No |
gui | SortOrder | No |
_count | UserSettingsCountOrderByAggregateInput | No |
_max | UserSettingsMaxOrderByAggregateInput | No |
_min | UserSettingsMinOrderByAggregateInput | No |
Name | Type | Nullable |
---|---|---|
AND | UserSettingsScalarWhereWithAggregatesInput | UserSettingsScalarWhereWithAggregatesInput[] | No |
OR | UserSettingsScalarWhereWithAggregatesInput[] | No |
NOT | UserSettingsScalarWhereWithAggregatesInput | UserSettingsScalarWhereWithAggregatesInput[] | No |
id | StringWithAggregatesFilter | String | No |
theme | StringWithAggregatesFilter | String | No |
notificationLevel | EnumNotificationLevelWithAggregatesFilter | NotificationLevel | No |
gui | BoolWithAggregatesFilter | Boolean | No |
Name | Type | Nullable |
---|---|---|
AND | AddressWhereInput | AddressWhereInput[] | No |
OR | AddressWhereInput[] | No |
NOT | AddressWhereInput | AddressWhereInput[] | No |
id | StringFilter | String | No |
streetNumber | StringFilter | String | No |
streetName | StringFilter | String | No |
city | StringFilter | String | No |
zipCode | StringFilter | String | No |
country | StringFilter | String | No |
personId | StringNullableFilter | String | Null | Yes |
companyId | StringNullableFilter | String | Null | Yes |
person | PersonNullableScalarRelationFilter | PersonWhereInput | Null | Yes |
Company | CompanyNullableScalarRelationFilter | CompanyWhereInput | Null | Yes |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
streetNumber | SortOrder | No |
streetName | SortOrder | No |
city | SortOrder | No |
zipCode | SortOrder | No |
country | SortOrder | No |
personId | SortOrder | SortOrderInput | No |
companyId | SortOrder | SortOrderInput | No |
person | PersonOrderByWithRelationInput | No |
Company | CompanyOrderByWithRelationInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
personId | String | No |
companyId | String | No |
AND | AddressWhereInput | AddressWhereInput[] | No |
OR | AddressWhereInput[] | No |
NOT | AddressWhereInput | AddressWhereInput[] | No |
streetNumber | StringFilter | String | No |
streetName | StringFilter | String | No |
city | StringFilter | String | No |
zipCode | StringFilter | String | No |
country | StringFilter | String | No |
person | PersonNullableScalarRelationFilter | PersonWhereInput | Null | Yes |
Company | CompanyNullableScalarRelationFilter | CompanyWhereInput | Null | Yes |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
streetNumber | SortOrder | No |
streetName | SortOrder | No |
city | SortOrder | No |
zipCode | SortOrder | No |
country | SortOrder | No |
personId | SortOrder | SortOrderInput | No |
companyId | SortOrder | SortOrderInput | No |
_count | AddressCountOrderByAggregateInput | No |
_max | AddressMaxOrderByAggregateInput | No |
_min | AddressMinOrderByAggregateInput | No |
Name | Type | Nullable |
---|---|---|
AND | AddressScalarWhereWithAggregatesInput | AddressScalarWhereWithAggregatesInput[] | No |
OR | AddressScalarWhereWithAggregatesInput[] | No |
NOT | AddressScalarWhereWithAggregatesInput | AddressScalarWhereWithAggregatesInput[] | No |
id | StringWithAggregatesFilter | String | No |
streetNumber | StringWithAggregatesFilter | String | No |
streetName | StringWithAggregatesFilter | String | No |
city | StringWithAggregatesFilter | String | No |
zipCode | StringWithAggregatesFilter | String | No |
country | StringWithAggregatesFilter | String | No |
personId | StringNullableWithAggregatesFilter | String | Null | Yes |
companyId | StringNullableWithAggregatesFilter | String | Null | Yes |
Name | Type | Nullable |
---|---|---|
AND | ClientWhereInput | ClientWhereInput[] | No |
OR | ClientWhereInput[] | No |
NOT | ClientWhereInput | ClientWhereInput[] | No |
id | StringFilter | String | No |
privateIndividual | BoolFilter | Boolean | No |
companyId | StringNullableFilter | String | Null | Yes |
personId | StringFilter | String | No |
job | StringFilter | String | No |
company | CompanyNullableScalarRelationFilter | CompanyWhereInput | Null | Yes |
person | PersonScalarRelationFilter | PersonWhereInput | No |
studyClients | StudyClientListRelationFilter | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
privateIndividual | SortOrder | No |
companyId | SortOrder | SortOrderInput | No |
personId | SortOrder | No |
job | SortOrder | No |
company | CompanyOrderByWithRelationInput | No |
person | PersonOrderByWithRelationInput | No |
studyClients | StudyClientOrderByRelationAggregateInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
personId | String | No |
AND | ClientWhereInput | ClientWhereInput[] | No |
OR | ClientWhereInput[] | No |
NOT | ClientWhereInput | ClientWhereInput[] | No |
privateIndividual | BoolFilter | Boolean | No |
companyId | StringNullableFilter | String | Null | Yes |
job | StringFilter | String | No |
company | CompanyNullableScalarRelationFilter | CompanyWhereInput | Null | Yes |
person | PersonScalarRelationFilter | PersonWhereInput | No |
studyClients | StudyClientListRelationFilter | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
privateIndividual | SortOrder | No |
companyId | SortOrder | SortOrderInput | No |
personId | SortOrder | No |
job | SortOrder | No |
_count | ClientCountOrderByAggregateInput | No |
_max | ClientMaxOrderByAggregateInput | No |
_min | ClientMinOrderByAggregateInput | No |
Name | Type | Nullable |
---|---|---|
AND | ClientScalarWhereWithAggregatesInput | ClientScalarWhereWithAggregatesInput[] | No |
OR | ClientScalarWhereWithAggregatesInput[] | No |
NOT | ClientScalarWhereWithAggregatesInput | ClientScalarWhereWithAggregatesInput[] | No |
id | StringWithAggregatesFilter | String | No |
privateIndividual | BoolWithAggregatesFilter | Boolean | No |
companyId | StringNullableWithAggregatesFilter | String | Null | Yes |
personId | StringWithAggregatesFilter | String | No |
job | StringWithAggregatesFilter | String | No |
Name | Type | Nullable |
---|---|---|
AND | StudyClientWhereInput | StudyClientWhereInput[] | No |
OR | StudyClientWhereInput[] | No |
NOT | StudyClientWhereInput | StudyClientWhereInput[] | No |
id | StringFilter | String | No |
studyId | StringFilter | String | No |
clientId | StringFilter | String | No |
study | StudyScalarRelationFilter | StudyWhereInput | No |
client | ClientScalarRelationFilter | ClientWhereInput | No |
satisfaction | SatisfactionNullableScalarRelationFilter | SatisfactionWhereInput | Null | Yes |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
studyId | SortOrder | No |
clientId | SortOrder | No |
study | StudyOrderByWithRelationInput | No |
client | ClientOrderByWithRelationInput | No |
satisfaction | SatisfactionOrderByWithRelationInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
AND | StudyClientWhereInput | StudyClientWhereInput[] | No |
OR | StudyClientWhereInput[] | No |
NOT | StudyClientWhereInput | StudyClientWhereInput[] | No |
studyId | StringFilter | String | No |
clientId | StringFilter | String | No |
study | StudyScalarRelationFilter | StudyWhereInput | No |
client | ClientScalarRelationFilter | ClientWhereInput | No |
satisfaction | SatisfactionNullableScalarRelationFilter | SatisfactionWhereInput | Null | Yes |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
studyId | SortOrder | No |
clientId | SortOrder | No |
_count | StudyClientCountOrderByAggregateInput | No |
_max | StudyClientMaxOrderByAggregateInput | No |
_min | StudyClientMinOrderByAggregateInput | No |
Name | Type | Nullable |
---|---|---|
AND | StudyClientScalarWhereWithAggregatesInput | StudyClientScalarWhereWithAggregatesInput[] | No |
OR | StudyClientScalarWhereWithAggregatesInput[] | No |
NOT | StudyClientScalarWhereWithAggregatesInput | StudyClientScalarWhereWithAggregatesInput[] | No |
id | StringWithAggregatesFilter | String | No |
studyId | StringWithAggregatesFilter | String | No |
clientId | StringWithAggregatesFilter | String | No |
Name | Type | Nullable |
---|---|---|
AND | SatisfactionWhereInput | SatisfactionWhereInput[] | No |
OR | SatisfactionWhereInput[] | No |
NOT | SatisfactionWhereInput | SatisfactionWhereInput[] | No |
id | StringFilter | String | No |
studyClientId | StringFilter | String | No |
studyId | StringFilter | String | No |
publish | BoolFilter | Boolean | No |
howKnowUs | StringFilter | String | No |
whyUs | StringFilter | String | No |
satisfactionObjectives | IntFilter | Int | No |
easiness | IntFilter | Int | No |
timeElapsed | IntFilter | Int | No |
recommendUs | IntFilter | Int | No |
studyClient | StudyClientScalarRelationFilter | StudyClientWhereInput | No |
study | StudyScalarRelationFilter | StudyWhereInput | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
studyClientId | SortOrder | No |
studyId | SortOrder | No |
publish | SortOrder | No |
howKnowUs | SortOrder | No |
whyUs | SortOrder | No |
satisfactionObjectives | SortOrder | No |
easiness | SortOrder | No |
timeElapsed | SortOrder | No |
recommendUs | SortOrder | No |
studyClient | StudyClientOrderByWithRelationInput | No |
study | StudyOrderByWithRelationInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
studyClientId | String | No |
studyId | String | No |
AND | SatisfactionWhereInput | SatisfactionWhereInput[] | No |
OR | SatisfactionWhereInput[] | No |
NOT | SatisfactionWhereInput | SatisfactionWhereInput[] | No |
publish | BoolFilter | Boolean | No |
howKnowUs | StringFilter | String | No |
whyUs | StringFilter | String | No |
satisfactionObjectives | IntFilter | Int | No |
easiness | IntFilter | Int | No |
timeElapsed | IntFilter | Int | No |
recommendUs | IntFilter | Int | No |
studyClient | StudyClientScalarRelationFilter | StudyClientWhereInput | No |
study | StudyScalarRelationFilter | StudyWhereInput | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
studyClientId | SortOrder | No |
studyId | SortOrder | No |
publish | SortOrder | No |
howKnowUs | SortOrder | No |
whyUs | SortOrder | No |
satisfactionObjectives | SortOrder | No |
easiness | SortOrder | No |
timeElapsed | SortOrder | No |
recommendUs | SortOrder | No |
_count | SatisfactionCountOrderByAggregateInput | No |
_avg | SatisfactionAvgOrderByAggregateInput | No |
_max | SatisfactionMaxOrderByAggregateInput | No |
_min | SatisfactionMinOrderByAggregateInput | No |
_sum | SatisfactionSumOrderByAggregateInput | No |
Name | Type | Nullable |
---|---|---|
AND | SatisfactionScalarWhereWithAggregatesInput | SatisfactionScalarWhereWithAggregatesInput[] | No |
OR | SatisfactionScalarWhereWithAggregatesInput[] | No |
NOT | SatisfactionScalarWhereWithAggregatesInput | SatisfactionScalarWhereWithAggregatesInput[] | No |
id | StringWithAggregatesFilter | String | No |
studyClientId | StringWithAggregatesFilter | String | No |
studyId | StringWithAggregatesFilter | String | No |
publish | BoolWithAggregatesFilter | Boolean | No |
howKnowUs | StringWithAggregatesFilter | String | No |
whyUs | StringWithAggregatesFilter | String | No |
satisfactionObjectives | IntWithAggregatesFilter | Int | No |
easiness | IntWithAggregatesFilter | Int | No |
timeElapsed | IntWithAggregatesFilter | Int | No |
recommendUs | IntWithAggregatesFilter | Int | No |
Name | Type | Nullable |
---|---|---|
AND | CompanyWhereInput | CompanyWhereInput[] | No |
OR | CompanyWhereInput[] | No |
NOT | CompanyWhereInput | CompanyWhereInput[] | No |
id | StringFilter | String | No |
name | StringFilter | String | No |
companyInfosId | StringFilter | String | No |
address | AddressNullableScalarRelationFilter | AddressWhereInput | Null | Yes |
companyInfos | CompanyInfosScalarRelationFilter | CompanyInfosWhereInput | No |
members | ClientListRelationFilter | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
name | SortOrder | No |
companyInfosId | SortOrder | No |
address | AddressOrderByWithRelationInput | No |
companyInfos | CompanyInfosOrderByWithRelationInput | No |
members | ClientOrderByRelationAggregateInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
name | String | No |
AND | CompanyWhereInput | CompanyWhereInput[] | No |
OR | CompanyWhereInput[] | No |
NOT | CompanyWhereInput | CompanyWhereInput[] | No |
companyInfosId | StringFilter | String | No |
address | AddressNullableScalarRelationFilter | AddressWhereInput | Null | Yes |
companyInfos | CompanyInfosScalarRelationFilter | CompanyInfosWhereInput | No |
members | ClientListRelationFilter | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
name | SortOrder | No |
companyInfosId | SortOrder | No |
_count | CompanyCountOrderByAggregateInput | No |
_max | CompanyMaxOrderByAggregateInput | No |
_min | CompanyMinOrderByAggregateInput | No |
Name | Type | Nullable |
---|---|---|
AND | CompanyScalarWhereWithAggregatesInput | CompanyScalarWhereWithAggregatesInput[] | No |
OR | CompanyScalarWhereWithAggregatesInput[] | No |
NOT | CompanyScalarWhereWithAggregatesInput | CompanyScalarWhereWithAggregatesInput[] | No |
id | StringWithAggregatesFilter | String | No |
name | StringWithAggregatesFilter | String | No |
companyInfosId | StringWithAggregatesFilter | String | No |
Name | Type | Nullable |
---|---|---|
AND | CompanyInfosWhereInput | CompanyInfosWhereInput[] | No |
OR | CompanyInfosWhereInput[] | No |
NOT | CompanyInfosWhereInput | CompanyInfosWhereInput[] | No |
id | StringFilter | String | No |
domains | EnumDomainNullableListFilter | No |
ca | IntNullableFilter | Int | Null | Yes |
size | EnumCompanySizeNullableFilter | CompanySize | Null | Yes |
company | CompanyListRelationFilter | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
domains | SortOrder | No |
ca | SortOrder | SortOrderInput | No |
size | SortOrder | SortOrderInput | No |
company | CompanyOrderByRelationAggregateInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
AND | CompanyInfosWhereInput | CompanyInfosWhereInput[] | No |
OR | CompanyInfosWhereInput[] | No |
NOT | CompanyInfosWhereInput | CompanyInfosWhereInput[] | No |
domains | EnumDomainNullableListFilter | No |
ca | IntNullableFilter | Int | Null | Yes |
size | EnumCompanySizeNullableFilter | CompanySize | Null | Yes |
company | CompanyListRelationFilter | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
domains | SortOrder | No |
ca | SortOrder | SortOrderInput | No |
size | SortOrder | SortOrderInput | No |
_count | CompanyInfosCountOrderByAggregateInput | No |
_avg | CompanyInfosAvgOrderByAggregateInput | No |
_max | CompanyInfosMaxOrderByAggregateInput | No |
_min | CompanyInfosMinOrderByAggregateInput | No |
_sum | CompanyInfosSumOrderByAggregateInput | No |
Name | Type | Nullable |
---|---|---|
AND | CompanyInfosScalarWhereWithAggregatesInput | CompanyInfosScalarWhereWithAggregatesInput[] | No |
OR | CompanyInfosScalarWhereWithAggregatesInput[] | No |
NOT | CompanyInfosScalarWhereWithAggregatesInput | CompanyInfosScalarWhereWithAggregatesInput[] | No |
id | StringWithAggregatesFilter | String | No |
domains | EnumDomainNullableListFilter | No |
ca | IntNullableWithAggregatesFilter | Int | Null | Yes |
size | EnumCompanySizeNullableWithAggregatesFilter | CompanySize | Null | Yes |
Name | Type | Nullable |
---|---|---|
AND | DocumentWhereInput | DocumentWhereInput[] | No |
OR | DocumentWhereInput[] | No |
NOT | DocumentWhereInput | DocumentWhereInput[] | No |
id | StringFilter | String | No |
title | StringFilter | String | No |
googleId | StringFilter | String | No |
type | StringFilter | String | No |
studyDocsId | StringNullableFilter | String | Null | Yes |
statusId | StringNullableFilter | String | Null | Yes |
status | StatusNullableScalarRelationFilter | StatusWhereInput | Null | Yes |
assigneeCni | AssigneeDocsNullableScalarRelationFilter | AssigneeDocsWhereInput | Null | Yes |
assigneeSocialSecurity | AssigneeDocsNullableScalarRelationFilter | AssigneeDocsWhereInput | Null | Yes |
assigneeStudentCard | AssigneeDocsNullableScalarRelationFilter | AssigneeDocsWhereInput | Null | Yes |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
title | SortOrder | No |
googleId | SortOrder | No |
type | SortOrder | No |
studyDocsId | SortOrder | SortOrderInput | No |
statusId | SortOrder | SortOrderInput | No |
status | StatusOrderByWithRelationInput | No |
assigneeCni | AssigneeDocsOrderByWithRelationInput | No |
assigneeSocialSecurity | AssigneeDocsOrderByWithRelationInput | No |
assigneeStudentCard | AssigneeDocsOrderByWithRelationInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
googleId | String | No |
AND | DocumentWhereInput | DocumentWhereInput[] | No |
OR | DocumentWhereInput[] | No |
NOT | DocumentWhereInput | DocumentWhereInput[] | No |
title | StringFilter | String | No |
type | StringFilter | String | No |
studyDocsId | StringNullableFilter | String | Null | Yes |
statusId | StringNullableFilter | String | Null | Yes |
status | StatusNullableScalarRelationFilter | StatusWhereInput | Null | Yes |
assigneeCni | AssigneeDocsNullableScalarRelationFilter | AssigneeDocsWhereInput | Null | Yes |
assigneeSocialSecurity | AssigneeDocsNullableScalarRelationFilter | AssigneeDocsWhereInput | Null | Yes |
assigneeStudentCard | AssigneeDocsNullableScalarRelationFilter | AssigneeDocsWhereInput | Null | Yes |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
title | SortOrder | No |
googleId | SortOrder | No |
type | SortOrder | No |
studyDocsId | SortOrder | SortOrderInput | No |
statusId | SortOrder | SortOrderInput | No |
_count | DocumentCountOrderByAggregateInput | No |
_max | DocumentMaxOrderByAggregateInput | No |
_min | DocumentMinOrderByAggregateInput | No |
Name | Type | Nullable |
---|---|---|
AND | DocumentScalarWhereWithAggregatesInput | DocumentScalarWhereWithAggregatesInput[] | No |
OR | DocumentScalarWhereWithAggregatesInput[] | No |
NOT | DocumentScalarWhereWithAggregatesInput | DocumentScalarWhereWithAggregatesInput[] | No |
id | StringWithAggregatesFilter | String | No |
title | StringWithAggregatesFilter | String | No |
googleId | StringWithAggregatesFilter | String | No |
type | StringWithAggregatesFilter | String | No |
studyDocsId | StringNullableWithAggregatesFilter | String | Null | Yes |
statusId | StringNullableWithAggregatesFilter | String | Null | Yes |
Name | Type | Nullable |
---|---|---|
AND | StatusWhereInput | StatusWhereInput[] | No |
OR | StatusWhereInput[] | No |
NOT | StatusWhereInput | StatusWhereInput[] | No |
id | StringFilter | String | No |
docsId | StringFilter | String | No |
created | DateTimeNullableFilter | DateTime | Null | Yes |
wrote | DateTimeNullableFilter | DateTime | Null | Yes |
audited | DateTimeNullableFilter | DateTime | Null | Yes |
sent | DateTimeNullableFilter | DateTime | Null | Yes |
approved | DateTimeNullableFilter | DateTime | Null | Yes |
signed | DateTimeNullableFilter | DateTime | Null | Yes |
end_of_validity | DateTimeNullableFilter | DateTime | Null | Yes |
writing_deadline | DateTimeNullableFilter | DateTime | Null | Yes |
documentId | StringFilter | String | No |
document | DocumentListRelationFilter | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
docsId | SortOrder | No |
created | SortOrder | SortOrderInput | No |
wrote | SortOrder | SortOrderInput | No |
audited | SortOrder | SortOrderInput | No |
sent | SortOrder | SortOrderInput | No |
approved | SortOrder | SortOrderInput | No |
signed | SortOrder | SortOrderInput | No |
end_of_validity | SortOrder | SortOrderInput | No |
writing_deadline | SortOrder | SortOrderInput | No |
documentId | SortOrder | No |
document | DocumentOrderByRelationAggregateInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
docsId | String | No |
documentId | String | No |
AND | StatusWhereInput | StatusWhereInput[] | No |
OR | StatusWhereInput[] | No |
NOT | StatusWhereInput | StatusWhereInput[] | No |
created | DateTimeNullableFilter | DateTime | Null | Yes |
wrote | DateTimeNullableFilter | DateTime | Null | Yes |
audited | DateTimeNullableFilter | DateTime | Null | Yes |
sent | DateTimeNullableFilter | DateTime | Null | Yes |
approved | DateTimeNullableFilter | DateTime | Null | Yes |
signed | DateTimeNullableFilter | DateTime | Null | Yes |
end_of_validity | DateTimeNullableFilter | DateTime | Null | Yes |
writing_deadline | DateTimeNullableFilter | DateTime | Null | Yes |
document | DocumentListRelationFilter | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
docsId | SortOrder | No |
created | SortOrder | SortOrderInput | No |
wrote | SortOrder | SortOrderInput | No |
audited | SortOrder | SortOrderInput | No |
sent | SortOrder | SortOrderInput | No |
approved | SortOrder | SortOrderInput | No |
signed | SortOrder | SortOrderInput | No |
end_of_validity | SortOrder | SortOrderInput | No |
writing_deadline | SortOrder | SortOrderInput | No |
documentId | SortOrder | No |
_count | StatusCountOrderByAggregateInput | No |
_max | StatusMaxOrderByAggregateInput | No |
_min | StatusMinOrderByAggregateInput | No |
Name | Type | Nullable |
---|---|---|
AND | StatusScalarWhereWithAggregatesInput | StatusScalarWhereWithAggregatesInput[] | No |
OR | StatusScalarWhereWithAggregatesInput[] | No |
NOT | StatusScalarWhereWithAggregatesInput | StatusScalarWhereWithAggregatesInput[] | No |
id | StringWithAggregatesFilter | String | No |
docsId | StringWithAggregatesFilter | String | No |
created | DateTimeNullableWithAggregatesFilter | DateTime | Null | Yes |
wrote | DateTimeNullableWithAggregatesFilter | DateTime | Null | Yes |
audited | DateTimeNullableWithAggregatesFilter | DateTime | Null | Yes |
sent | DateTimeNullableWithAggregatesFilter | DateTime | Null | Yes |
approved | DateTimeNullableWithAggregatesFilter | DateTime | Null | Yes |
signed | DateTimeNullableWithAggregatesFilter | DateTime | Null | Yes |
end_of_validity | DateTimeNullableWithAggregatesFilter | DateTime | Null | Yes |
writing_deadline | DateTimeNullableWithAggregatesFilter | DateTime | Null | Yes |
documentId | StringWithAggregatesFilter | String | No |
Name | Type | Nullable |
---|---|---|
AND | MriWhereInput | MriWhereInput[] | No |
OR | MriWhereInput[] | No |
NOT | MriWhereInput | MriWhereInput[] | No |
id | StringFilter | String | No |
wageLowerBound | IntNullableFilter | Int | Null | Yes |
wageUpperBound | IntNullableFilter | Int | Null | Yes |
wageLevel | EnumLevelNullableFilter | Level | Null | Yes |
difficulty | EnumLevelNullableFilter | Level | Null | Yes |
mainDomain | EnumDomainNullableFilter | Domain | Null | Yes |
introductionText | StringNullableFilter | String | Null | Yes |
descriptionText | StringNullableFilter | String | Null | Yes |
timeLapsText | StringNullableFilter | String | Null | Yes |
requiredSkillsText | StringNullableFilter | String | Null | Yes |
status | EnumMriStatusFilter | MriStatus | No |
studyId | StringFilter | String | No |
study | StudyScalarRelationFilter | StudyWhereInput | No |
formMRIs | MriFormListRelationFilter | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
wageLowerBound | SortOrder | SortOrderInput | No |
wageUpperBound | SortOrder | SortOrderInput | No |
wageLevel | SortOrder | SortOrderInput | No |
difficulty | SortOrder | SortOrderInput | No |
mainDomain | SortOrder | SortOrderInput | No |
introductionText | SortOrder | SortOrderInput | No |
descriptionText | SortOrder | SortOrderInput | No |
timeLapsText | SortOrder | SortOrderInput | No |
requiredSkillsText | SortOrder | SortOrderInput | No |
status | SortOrder | No |
studyId | SortOrder | No |
study | StudyOrderByWithRelationInput | No |
formMRIs | MriFormOrderByRelationAggregateInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
studyId | String | No |
AND | MriWhereInput | MriWhereInput[] | No |
OR | MriWhereInput[] | No |
NOT | MriWhereInput | MriWhereInput[] | No |
wageLowerBound | IntNullableFilter | Int | Null | Yes |
wageUpperBound | IntNullableFilter | Int | Null | Yes |
wageLevel | EnumLevelNullableFilter | Level | Null | Yes |
difficulty | EnumLevelNullableFilter | Level | Null | Yes |
mainDomain | EnumDomainNullableFilter | Domain | Null | Yes |
introductionText | StringNullableFilter | String | Null | Yes |
descriptionText | StringNullableFilter | String | Null | Yes |
timeLapsText | StringNullableFilter | String | Null | Yes |
requiredSkillsText | StringNullableFilter | String | Null | Yes |
status | EnumMriStatusFilter | MriStatus | No |
study | StudyScalarRelationFilter | StudyWhereInput | No |
formMRIs | MriFormListRelationFilter | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
wageLowerBound | SortOrder | SortOrderInput | No |
wageUpperBound | SortOrder | SortOrderInput | No |
wageLevel | SortOrder | SortOrderInput | No |
difficulty | SortOrder | SortOrderInput | No |
mainDomain | SortOrder | SortOrderInput | No |
introductionText | SortOrder | SortOrderInput | No |
descriptionText | SortOrder | SortOrderInput | No |
timeLapsText | SortOrder | SortOrderInput | No |
requiredSkillsText | SortOrder | SortOrderInput | No |
status | SortOrder | No |
studyId | SortOrder | No |
_count | MriCountOrderByAggregateInput | No |
_avg | MriAvgOrderByAggregateInput | No |
_max | MriMaxOrderByAggregateInput | No |
_min | MriMinOrderByAggregateInput | No |
_sum | MriSumOrderByAggregateInput | No |
Name | Type | Nullable |
---|---|---|
AND | MriScalarWhereWithAggregatesInput | MriScalarWhereWithAggregatesInput[] | No |
OR | MriScalarWhereWithAggregatesInput[] | No |
NOT | MriScalarWhereWithAggregatesInput | MriScalarWhereWithAggregatesInput[] | No |
id | StringWithAggregatesFilter | String | No |
wageLowerBound | IntNullableWithAggregatesFilter | Int | Null | Yes |
wageUpperBound | IntNullableWithAggregatesFilter | Int | Null | Yes |
wageLevel | EnumLevelNullableWithAggregatesFilter | Level | Null | Yes |
difficulty | EnumLevelNullableWithAggregatesFilter | Level | Null | Yes |
mainDomain | EnumDomainNullableWithAggregatesFilter | Domain | Null | Yes |
introductionText | StringNullableWithAggregatesFilter | String | Null | Yes |
descriptionText | StringNullableWithAggregatesFilter | String | Null | Yes |
timeLapsText | StringNullableWithAggregatesFilter | String | Null | Yes |
requiredSkillsText | StringNullableWithAggregatesFilter | String | Null | Yes |
status | EnumMriStatusWithAggregatesFilter | MriStatus | No |
studyId | StringWithAggregatesFilter | String | No |
Name | Type | Nullable |
---|---|---|
AND | AssigneeWhereInput | AssigneeWhereInput[] | No |
OR | AssigneeWhereInput[] | No |
NOT | AssigneeWhereInput | AssigneeWhereInput[] | No |
id | StringFilter | String | No |
nbApplications | IntFilter | Int | No |
peopleId | StringFilter | String | No |
docs | AssigneeDocsListRelationFilter | No |
information | AssigneeInfosNullableScalarRelationFilter | AssigneeInfosWhereInput | Null | Yes |
person | PersonScalarRelationFilter | PersonWhereInput | No |
studyAssign | StudyAssigneeListRelationFilter | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
nbApplications | SortOrder | No |
peopleId | SortOrder | No |
docs | AssigneeDocsOrderByRelationAggregateInput | No |
information | AssigneeInfosOrderByWithRelationInput | No |
person | PersonOrderByWithRelationInput | No |
studyAssign | StudyAssigneeOrderByRelationAggregateInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
peopleId | String | No |
AND | AssigneeWhereInput | AssigneeWhereInput[] | No |
OR | AssigneeWhereInput[] | No |
NOT | AssigneeWhereInput | AssigneeWhereInput[] | No |
nbApplications | IntFilter | Int | No |
docs | AssigneeDocsListRelationFilter | No |
information | AssigneeInfosNullableScalarRelationFilter | AssigneeInfosWhereInput | Null | Yes |
person | PersonScalarRelationFilter | PersonWhereInput | No |
studyAssign | StudyAssigneeListRelationFilter | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
nbApplications | SortOrder | No |
peopleId | SortOrder | No |
_count | AssigneeCountOrderByAggregateInput | No |
_avg | AssigneeAvgOrderByAggregateInput | No |
_max | AssigneeMaxOrderByAggregateInput | No |
_min | AssigneeMinOrderByAggregateInput | No |
_sum | AssigneeSumOrderByAggregateInput | No |
Name | Type | Nullable |
---|---|---|
AND | AssigneeScalarWhereWithAggregatesInput | AssigneeScalarWhereWithAggregatesInput[] | No |
OR | AssigneeScalarWhereWithAggregatesInput[] | No |
NOT | AssigneeScalarWhereWithAggregatesInput | AssigneeScalarWhereWithAggregatesInput[] | No |
id | StringWithAggregatesFilter | String | No |
nbApplications | IntWithAggregatesFilter | Int | No |
peopleId | StringWithAggregatesFilter | String | No |
Name | Type | Nullable |
---|---|---|
AND | AssigneeInfosWhereInput | AssigneeInfosWhereInput[] | No |
OR | AssigneeInfosWhereInput[] | No |
NOT | AssigneeInfosWhereInput | AssigneeInfosWhereInput[] | No |
id | StringFilter | String | No |
assigneeId | StringFilter | String | No |
age | IntFilter | Int | No |
promotion | IntFilter | Int | No |
hasScholarship | BoolFilter | Boolean | No |
oldJet | BoolFilter | Boolean | No |
assignee | AssigneeScalarRelationFilter | AssigneeWhereInput | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
assigneeId | SortOrder | No |
age | SortOrder | No |
promotion | SortOrder | No |
hasScholarship | SortOrder | No |
oldJet | SortOrder | No |
assignee | AssigneeOrderByWithRelationInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
assigneeId | String | No |
AND | AssigneeInfosWhereInput | AssigneeInfosWhereInput[] | No |
OR | AssigneeInfosWhereInput[] | No |
NOT | AssigneeInfosWhereInput | AssigneeInfosWhereInput[] | No |
age | IntFilter | Int | No |
promotion | IntFilter | Int | No |
hasScholarship | BoolFilter | Boolean | No |
oldJet | BoolFilter | Boolean | No |
assignee | AssigneeScalarRelationFilter | AssigneeWhereInput | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
assigneeId | SortOrder | No |
age | SortOrder | No |
promotion | SortOrder | No |
hasScholarship | SortOrder | No |
oldJet | SortOrder | No |
_count | AssigneeInfosCountOrderByAggregateInput | No |
_avg | AssigneeInfosAvgOrderByAggregateInput | No |
_max | AssigneeInfosMaxOrderByAggregateInput | No |
_min | AssigneeInfosMinOrderByAggregateInput | No |
_sum | AssigneeInfosSumOrderByAggregateInput | No |
Name | Type | Nullable |
---|---|---|
AND | AssigneeInfosScalarWhereWithAggregatesInput | AssigneeInfosScalarWhereWithAggregatesInput[] | No |
OR | AssigneeInfosScalarWhereWithAggregatesInput[] | No |
NOT | AssigneeInfosScalarWhereWithAggregatesInput | AssigneeInfosScalarWhereWithAggregatesInput[] | No |
id | StringWithAggregatesFilter | String | No |
assigneeId | StringWithAggregatesFilter | String | No |
age | IntWithAggregatesFilter | Int | No |
promotion | IntWithAggregatesFilter | Int | No |
hasScholarship | BoolWithAggregatesFilter | Boolean | No |
oldJet | BoolWithAggregatesFilter | Boolean | No |
Name | Type | Nullable |
---|---|---|
AND | AssigneeDocsWhereInput | AssigneeDocsWhereInput[] | No |
OR | AssigneeDocsWhereInput[] | No |
NOT | AssigneeDocsWhereInput | AssigneeDocsWhereInput[] | No |
id | StringFilter | String | No |
assigneeId | StringFilter | String | No |
cniId | StringFilter | String | No |
socialSecurityId | StringFilter | String | No |
studentCardId | StringFilter | String | No |
assignee | AssigneeScalarRelationFilter | AssigneeWhereInput | No |
cni | DocumentScalarRelationFilter | DocumentWhereInput | No |
socialSecurity | DocumentScalarRelationFilter | DocumentWhereInput | No |
studentCard | DocumentScalarRelationFilter | DocumentWhereInput | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
assigneeId | SortOrder | No |
cniId | SortOrder | No |
socialSecurityId | SortOrder | No |
studentCardId | SortOrder | No |
assignee | AssigneeOrderByWithRelationInput | No |
cni | DocumentOrderByWithRelationInput | No |
socialSecurity | DocumentOrderByWithRelationInput | No |
studentCard | DocumentOrderByWithRelationInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
cniId | String | No |
socialSecurityId | String | No |
studentCardId | String | No |
AND | AssigneeDocsWhereInput | AssigneeDocsWhereInput[] | No |
OR | AssigneeDocsWhereInput[] | No |
NOT | AssigneeDocsWhereInput | AssigneeDocsWhereInput[] | No |
assigneeId | StringFilter | String | No |
assignee | AssigneeScalarRelationFilter | AssigneeWhereInput | No |
cni | DocumentScalarRelationFilter | DocumentWhereInput | No |
socialSecurity | DocumentScalarRelationFilter | DocumentWhereInput | No |
studentCard | DocumentScalarRelationFilter | DocumentWhereInput | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
assigneeId | SortOrder | No |
cniId | SortOrder | No |
socialSecurityId | SortOrder | No |
studentCardId | SortOrder | No |
_count | AssigneeDocsCountOrderByAggregateInput | No |
_max | AssigneeDocsMaxOrderByAggregateInput | No |
_min | AssigneeDocsMinOrderByAggregateInput | No |
Name | Type | Nullable |
---|---|---|
AND | AssigneeDocsScalarWhereWithAggregatesInput | AssigneeDocsScalarWhereWithAggregatesInput[] | No |
OR | AssigneeDocsScalarWhereWithAggregatesInput[] | No |
NOT | AssigneeDocsScalarWhereWithAggregatesInput | AssigneeDocsScalarWhereWithAggregatesInput[] | No |
id | StringWithAggregatesFilter | String | No |
assigneeId | StringWithAggregatesFilter | String | No |
cniId | StringWithAggregatesFilter | String | No |
socialSecurityId | StringWithAggregatesFilter | String | No |
studentCardId | StringWithAggregatesFilter | String | No |
Name | Type | Nullable |
---|---|---|
AND | StudyAssigneeWhereInput | StudyAssigneeWhereInput[] | No |
OR | StudyAssigneeWhereInput[] | No |
NOT | StudyAssigneeWhereInput | StudyAssigneeWhereInput[] | No |
id | StringFilter | String | No |
studyId | StringFilter | String | No |
assigneeId | StringFilter | String | No |
formInterviewId | StringFilter | String | No |
mriFormId | StringFilter | String | No |
selectionNotes | StringFilter | String | No |
taken | BoolFilter | Boolean | No |
study | StudyScalarRelationFilter | StudyWhereInput | No |
assignee | AssigneeScalarRelationFilter | AssigneeWhereInput | No |
formInterview | FormInterviewsScalarRelationFilter | FormInterviewsWhereInput | No |
mriForm | MriFormScalarRelationFilter | MriFormWhereInput | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
studyId | SortOrder | No |
assigneeId | SortOrder | No |
formInterviewId | SortOrder | No |
mriFormId | SortOrder | No |
selectionNotes | SortOrder | No |
taken | SortOrder | No |
study | StudyOrderByWithRelationInput | No |
assignee | AssigneeOrderByWithRelationInput | No |
formInterview | FormInterviewsOrderByWithRelationInput | No |
mriForm | MriFormOrderByWithRelationInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
formInterviewId | String | No |
mriFormId | String | No |
AND | StudyAssigneeWhereInput | StudyAssigneeWhereInput[] | No |
OR | StudyAssigneeWhereInput[] | No |
NOT | StudyAssigneeWhereInput | StudyAssigneeWhereInput[] | No |
studyId | StringFilter | String | No |
assigneeId | StringFilter | String | No |
selectionNotes | StringFilter | String | No |
taken | BoolFilter | Boolean | No |
study | StudyScalarRelationFilter | StudyWhereInput | No |
assignee | AssigneeScalarRelationFilter | AssigneeWhereInput | No |
formInterview | FormInterviewsScalarRelationFilter | FormInterviewsWhereInput | No |
mriForm | MriFormScalarRelationFilter | MriFormWhereInput | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
studyId | SortOrder | No |
assigneeId | SortOrder | No |
formInterviewId | SortOrder | No |
mriFormId | SortOrder | No |
selectionNotes | SortOrder | No |
taken | SortOrder | No |
_count | StudyAssigneeCountOrderByAggregateInput | No |
_max | StudyAssigneeMaxOrderByAggregateInput | No |
_min | StudyAssigneeMinOrderByAggregateInput | No |
Name | Type | Nullable |
---|---|---|
AND | StudyAssigneeScalarWhereWithAggregatesInput | StudyAssigneeScalarWhereWithAggregatesInput[] | No |
OR | StudyAssigneeScalarWhereWithAggregatesInput[] | No |
NOT | StudyAssigneeScalarWhereWithAggregatesInput | StudyAssigneeScalarWhereWithAggregatesInput[] | No |
id | StringWithAggregatesFilter | String | No |
studyId | StringWithAggregatesFilter | String | No |
assigneeId | StringWithAggregatesFilter | String | No |
formInterviewId | StringWithAggregatesFilter | String | No |
mriFormId | StringWithAggregatesFilter | String | No |
selectionNotes | StringWithAggregatesFilter | String | No |
taken | BoolWithAggregatesFilter | Boolean | No |
Name | Type | Nullable |
---|---|---|
AND | MriFormWhereInput | MriFormWhereInput[] | No |
OR | MriFormWhereInput[] | No |
NOT | MriFormWhereInput | MriFormWhereInput[] | No |
id | StringFilter | String | No |
mriId | StringFilter | String | No |
experience | StringFilter | String | No |
knowledge | StringFilter | String | No |
ideas | StringFilter | String | No |
jeExperience | IntFilter | Int | No |
mri | MriScalarRelationFilter | MriWhereInput | No |
studyAssignees | StudyAssigneeNullableScalarRelationFilter | StudyAssigneeWhereInput | Null | Yes |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
mriId | SortOrder | No |
experience | SortOrder | No |
knowledge | SortOrder | No |
ideas | SortOrder | No |
jeExperience | SortOrder | No |
mri | MriOrderByWithRelationInput | No |
studyAssignees | StudyAssigneeOrderByWithRelationInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
mriId | String | No |
AND | MriFormWhereInput | MriFormWhereInput[] | No |
OR | MriFormWhereInput[] | No |
NOT | MriFormWhereInput | MriFormWhereInput[] | No |
experience | StringFilter | String | No |
knowledge | StringFilter | String | No |
ideas | StringFilter | String | No |
jeExperience | IntFilter | Int | No |
mri | MriScalarRelationFilter | MriWhereInput | No |
studyAssignees | StudyAssigneeNullableScalarRelationFilter | StudyAssigneeWhereInput | Null | Yes |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
mriId | SortOrder | No |
experience | SortOrder | No |
knowledge | SortOrder | No |
ideas | SortOrder | No |
jeExperience | SortOrder | No |
_count | MriFormCountOrderByAggregateInput | No |
_avg | MriFormAvgOrderByAggregateInput | No |
_max | MriFormMaxOrderByAggregateInput | No |
_min | MriFormMinOrderByAggregateInput | No |
_sum | MriFormSumOrderByAggregateInput | No |
Name | Type | Nullable |
---|---|---|
AND | MriFormScalarWhereWithAggregatesInput | MriFormScalarWhereWithAggregatesInput[] | No |
OR | MriFormScalarWhereWithAggregatesInput[] | No |
NOT | MriFormScalarWhereWithAggregatesInput | MriFormScalarWhereWithAggregatesInput[] | No |
id | StringWithAggregatesFilter | String | No |
mriId | StringWithAggregatesFilter | String | No |
experience | StringWithAggregatesFilter | String | No |
knowledge | StringWithAggregatesFilter | String | No |
ideas | StringWithAggregatesFilter | String | No |
jeExperience | IntWithAggregatesFilter | Int | No |
Name | Type | Nullable |
---|---|---|
AND | FormInterviewsWhereInput | FormInterviewsWhereInput[] | No |
OR | FormInterviewsWhereInput[] | No |
NOT | FormInterviewsWhereInput | FormInterviewsWhereInput[] | No |
id | StringFilter | String | No |
available | BoolFilter | Boolean | No |
approach | StringFilter | String | No |
courses | StringFilter | String | No |
starS | StringFilter | String | No |
starT | StringFilter | String | No |
starA | StringFilter | String | No |
starR | StringFilter | String | No |
motivation | StringFilter | String | No |
cdpRequirements | StringFilter | String | No |
questions | StringFilter | String | No |
studyAssignees | StudyAssigneeNullableScalarRelationFilter | StudyAssigneeWhereInput | Null | Yes |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
available | SortOrder | No |
approach | SortOrder | No |
courses | SortOrder | No |
starS | SortOrder | No |
starT | SortOrder | No |
starA | SortOrder | No |
starR | SortOrder | No |
motivation | SortOrder | No |
cdpRequirements | SortOrder | No |
questions | SortOrder | No |
studyAssignees | StudyAssigneeOrderByWithRelationInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
AND | FormInterviewsWhereInput | FormInterviewsWhereInput[] | No |
OR | FormInterviewsWhereInput[] | No |
NOT | FormInterviewsWhereInput | FormInterviewsWhereInput[] | No |
available | BoolFilter | Boolean | No |
approach | StringFilter | String | No |
courses | StringFilter | String | No |
starS | StringFilter | String | No |
starT | StringFilter | String | No |
starA | StringFilter | String | No |
starR | StringFilter | String | No |
motivation | StringFilter | String | No |
cdpRequirements | StringFilter | String | No |
questions | StringFilter | String | No |
studyAssignees | StudyAssigneeNullableScalarRelationFilter | StudyAssigneeWhereInput | Null | Yes |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
available | SortOrder | No |
approach | SortOrder | No |
courses | SortOrder | No |
starS | SortOrder | No |
starT | SortOrder | No |
starA | SortOrder | No |
starR | SortOrder | No |
motivation | SortOrder | No |
cdpRequirements | SortOrder | No |
questions | SortOrder | No |
_count | FormInterviewsCountOrderByAggregateInput | No |
_max | FormInterviewsMaxOrderByAggregateInput | No |
_min | FormInterviewsMinOrderByAggregateInput | No |
Name | Type | Nullable |
---|---|---|
AND | FormInterviewsScalarWhereWithAggregatesInput | FormInterviewsScalarWhereWithAggregatesInput[] | No |
OR | FormInterviewsScalarWhereWithAggregatesInput[] | No |
NOT | FormInterviewsScalarWhereWithAggregatesInput | FormInterviewsScalarWhereWithAggregatesInput[] | No |
id | StringWithAggregatesFilter | String | No |
available | BoolWithAggregatesFilter | Boolean | No |
approach | StringWithAggregatesFilter | String | No |
courses | StringWithAggregatesFilter | String | No |
starS | StringWithAggregatesFilter | String | No |
starT | StringWithAggregatesFilter | String | No |
starA | StringWithAggregatesFilter | String | No |
starR | StringWithAggregatesFilter | String | No |
motivation | StringWithAggregatesFilter | String | No |
cdpRequirements | StringWithAggregatesFilter | String | No |
questions | StringWithAggregatesFilter | String | No |
Name | Type | Nullable |
---|---|---|
AND | StudyWhereInput | StudyWhereInput[] | No |
OR | StudyWhereInput[] | No |
NOT | StudyWhereInput | StudyWhereInput[] | No |
id | StringFilter | String | No |
informationId | StringFilter | String | No |
studyProceedingsId | StringNullableFilter | String | Null | Yes |
cdps | AdminListRelationFilter | No |
auditors | AdminListRelationFilter | No |
information | StudyInfosScalarRelationFilter | StudyInfosWhereInput | No |
studyProceedings | StudyProceedingsNullableScalarRelationFilter | StudyProceedingsWhereInput | Null | Yes |
clients | StudyClientListRelationFilter | No |
mri | MriNullableScalarRelationFilter | MriWhereInput | Null | Yes |
studyAssignees | StudyAssigneeListRelationFilter | No |
satisfaction | SatisfactionNullableScalarRelationFilter | SatisfactionWhereInput | Null | Yes |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
informationId | SortOrder | No |
studyProceedingsId | SortOrder | SortOrderInput | No |
cdps | AdminOrderByRelationAggregateInput | No |
auditors | AdminOrderByRelationAggregateInput | No |
information | StudyInfosOrderByWithRelationInput | No |
studyProceedings | StudyProceedingsOrderByWithRelationInput | No |
clients | StudyClientOrderByRelationAggregateInput | No |
mri | MriOrderByWithRelationInput | No |
studyAssignees | StudyAssigneeOrderByRelationAggregateInput | No |
satisfaction | SatisfactionOrderByWithRelationInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
informationId | String | No |
AND | StudyWhereInput | StudyWhereInput[] | No |
OR | StudyWhereInput[] | No |
NOT | StudyWhereInput | StudyWhereInput[] | No |
studyProceedingsId | StringNullableFilter | String | Null | Yes |
cdps | AdminListRelationFilter | No |
auditors | AdminListRelationFilter | No |
information | StudyInfosScalarRelationFilter | StudyInfosWhereInput | No |
studyProceedings | StudyProceedingsNullableScalarRelationFilter | StudyProceedingsWhereInput | Null | Yes |
clients | StudyClientListRelationFilter | No |
mri | MriNullableScalarRelationFilter | MriWhereInput | Null | Yes |
studyAssignees | StudyAssigneeListRelationFilter | No |
satisfaction | SatisfactionNullableScalarRelationFilter | SatisfactionWhereInput | Null | Yes |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
informationId | SortOrder | No |
studyProceedingsId | SortOrder | SortOrderInput | No |
_count | StudyCountOrderByAggregateInput | No |
_max | StudyMaxOrderByAggregateInput | No |
_min | StudyMinOrderByAggregateInput | No |
Name | Type | Nullable |
---|---|---|
AND | StudyScalarWhereWithAggregatesInput | StudyScalarWhereWithAggregatesInput[] | No |
OR | StudyScalarWhereWithAggregatesInput[] | No |
NOT | StudyScalarWhereWithAggregatesInput | StudyScalarWhereWithAggregatesInput[] | No |
id | StringWithAggregatesFilter | String | No |
informationId | StringWithAggregatesFilter | String | No |
studyProceedingsId | StringNullableWithAggregatesFilter | String | Null | Yes |
Name | Type | Nullable |
---|---|---|
AND | StudyInfosWhereInput | StudyInfosWhereInput[] | No |
OR | StudyInfosWhereInput[] | No |
NOT | StudyInfosWhereInput | StudyInfosWhereInput[] | No |
id | StringFilter | String | No |
code | StringFilter | String | No |
googleFolder | StringNullableFilter | String | Null | Yes |
title | StringNullableFilter | String | Null | Yes |
applicationFee | FloatFilter | Float | No |
cc | BoolFilter | Boolean | No |
domains | EnumDomainNullableListFilter | No |
estimatedDuration | IntNullableFilter | Int | Null | Yes |
deadlinePreStudy | DateTimeNullableFilter | DateTime | Null | Yes |
study | StudyNullableScalarRelationFilter | StudyWhereInput | Null | Yes |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
code | SortOrder | No |
googleFolder | SortOrder | SortOrderInput | No |
title | SortOrder | SortOrderInput | No |
applicationFee | SortOrder | No |
cc | SortOrder | No |
domains | SortOrder | No |
estimatedDuration | SortOrder | SortOrderInput | No |
deadlinePreStudy | SortOrder | SortOrderInput | No |
study | StudyOrderByWithRelationInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
code | String | No |
googleFolder | String | No |
AND | StudyInfosWhereInput | StudyInfosWhereInput[] | No |
OR | StudyInfosWhereInput[] | No |
NOT | StudyInfosWhereInput | StudyInfosWhereInput[] | No |
title | StringNullableFilter | String | Null | Yes |
applicationFee | FloatFilter | Float | No |
cc | BoolFilter | Boolean | No |
domains | EnumDomainNullableListFilter | No |
estimatedDuration | IntNullableFilter | Int | Null | Yes |
deadlinePreStudy | DateTimeNullableFilter | DateTime | Null | Yes |
study | StudyNullableScalarRelationFilter | StudyWhereInput | Null | Yes |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
code | SortOrder | No |
googleFolder | SortOrder | SortOrderInput | No |
title | SortOrder | SortOrderInput | No |
applicationFee | SortOrder | No |
cc | SortOrder | No |
domains | SortOrder | No |
estimatedDuration | SortOrder | SortOrderInput | No |
deadlinePreStudy | SortOrder | SortOrderInput | No |
_count | StudyInfosCountOrderByAggregateInput | No |
_avg | StudyInfosAvgOrderByAggregateInput | No |
_max | StudyInfosMaxOrderByAggregateInput | No |
_min | StudyInfosMinOrderByAggregateInput | No |
_sum | StudyInfosSumOrderByAggregateInput | No |
Name | Type | Nullable |
---|---|---|
AND | StudyInfosScalarWhereWithAggregatesInput | StudyInfosScalarWhereWithAggregatesInput[] | No |
OR | StudyInfosScalarWhereWithAggregatesInput[] | No |
NOT | StudyInfosScalarWhereWithAggregatesInput | StudyInfosScalarWhereWithAggregatesInput[] | No |
id | StringWithAggregatesFilter | String | No |
code | StringWithAggregatesFilter | String | No |
googleFolder | StringNullableWithAggregatesFilter | String | Null | Yes |
title | StringNullableWithAggregatesFilter | String | Null | Yes |
applicationFee | FloatWithAggregatesFilter | Float | No |
cc | BoolWithAggregatesFilter | Boolean | No |
domains | EnumDomainNullableListFilter | No |
estimatedDuration | IntNullableWithAggregatesFilter | Int | Null | Yes |
deadlinePreStudy | DateTimeNullableWithAggregatesFilter | DateTime | Null | Yes |
Name | Type | Nullable |
---|---|---|
AND | StudyProceedingsWhereInput | StudyProceedingsWhereInput[] | No |
OR | StudyProceedingsWhereInput[] | No |
NOT | StudyProceedingsWhereInput | StudyProceedingsWhereInput[] | No |
id | StringFilter | String | No |
studyId | StringFilter | String | No |
studyProcessStep | EnumStudyProgressStepFilter | StudyProgressStep | No |
phases | PhaseListRelationFilter | No |
study | StudyScalarRelationFilter | StudyWhereInput | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
studyId | SortOrder | No |
studyProcessStep | SortOrder | No |
phases | PhaseOrderByRelationAggregateInput | No |
study | StudyOrderByWithRelationInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
studyId | String | No |
AND | StudyProceedingsWhereInput | StudyProceedingsWhereInput[] | No |
OR | StudyProceedingsWhereInput[] | No |
NOT | StudyProceedingsWhereInput | StudyProceedingsWhereInput[] | No |
studyProcessStep | EnumStudyProgressStepFilter | StudyProgressStep | No |
phases | PhaseListRelationFilter | No |
study | StudyScalarRelationFilter | StudyWhereInput | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
studyId | SortOrder | No |
studyProcessStep | SortOrder | No |
_count | StudyProceedingsCountOrderByAggregateInput | No |
_max | StudyProceedingsMaxOrderByAggregateInput | No |
_min | StudyProceedingsMinOrderByAggregateInput | No |
Name | Type | Nullable |
---|---|---|
AND | StudyProceedingsScalarWhereWithAggregatesInput | StudyProceedingsScalarWhereWithAggregatesInput[] | No |
OR | StudyProceedingsScalarWhereWithAggregatesInput[] | No |
NOT | StudyProceedingsScalarWhereWithAggregatesInput | StudyProceedingsScalarWhereWithAggregatesInput[] | No |
id | StringWithAggregatesFilter | String | No |
studyId | StringWithAggregatesFilter | String | No |
studyProcessStep | EnumStudyProgressStepWithAggregatesFilter | StudyProgressStep | No |
Name | Type | Nullable |
---|---|---|
AND | PhaseWhereInput | PhaseWhereInput[] | No |
OR | PhaseWhereInput[] | No |
NOT | PhaseWhereInput | PhaseWhereInput[] | No |
id | StringFilter | String | No |
jehs | IntFilter | Int | No |
title | StringFilter | String | No |
unitPrice | FloatFilter | Float | No |
startDate | DateTimeNullableFilter | DateTime | Null | Yes |
endDate | DateTimeNullableFilter | DateTime | Null | Yes |
studyProceedingsId | StringFilter | String | No |
deliverable | DeliverableNullableScalarRelationFilter | DeliverableWhereInput | Null | Yes |
studyProceedings | StudyProceedingsScalarRelationFilter | StudyProceedingsWhereInput | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
jehs | SortOrder | No |
title | SortOrder | No |
unitPrice | SortOrder | No |
startDate | SortOrder | SortOrderInput | No |
endDate | SortOrder | SortOrderInput | No |
studyProceedingsId | SortOrder | No |
deliverable | DeliverableOrderByWithRelationInput | No |
studyProceedings | StudyProceedingsOrderByWithRelationInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
AND | PhaseWhereInput | PhaseWhereInput[] | No |
OR | PhaseWhereInput[] | No |
NOT | PhaseWhereInput | PhaseWhereInput[] | No |
jehs | IntFilter | Int | No |
title | StringFilter | String | No |
unitPrice | FloatFilter | Float | No |
startDate | DateTimeNullableFilter | DateTime | Null | Yes |
endDate | DateTimeNullableFilter | DateTime | Null | Yes |
studyProceedingsId | StringFilter | String | No |
deliverable | DeliverableNullableScalarRelationFilter | DeliverableWhereInput | Null | Yes |
studyProceedings | StudyProceedingsScalarRelationFilter | StudyProceedingsWhereInput | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
jehs | SortOrder | No |
title | SortOrder | No |
unitPrice | SortOrder | No |
startDate | SortOrder | SortOrderInput | No |
endDate | SortOrder | SortOrderInput | No |
studyProceedingsId | SortOrder | No |
_count | PhaseCountOrderByAggregateInput | No |
_avg | PhaseAvgOrderByAggregateInput | No |
_max | PhaseMaxOrderByAggregateInput | No |
_min | PhaseMinOrderByAggregateInput | No |
_sum | PhaseSumOrderByAggregateInput | No |
Name | Type | Nullable |
---|---|---|
AND | PhaseScalarWhereWithAggregatesInput | PhaseScalarWhereWithAggregatesInput[] | No |
OR | PhaseScalarWhereWithAggregatesInput[] | No |
NOT | PhaseScalarWhereWithAggregatesInput | PhaseScalarWhereWithAggregatesInput[] | No |
id | StringWithAggregatesFilter | String | No |
jehs | IntWithAggregatesFilter | Int | No |
title | StringWithAggregatesFilter | String | No |
unitPrice | FloatWithAggregatesFilter | Float | No |
startDate | DateTimeNullableWithAggregatesFilter | DateTime | Null | Yes |
endDate | DateTimeNullableWithAggregatesFilter | DateTime | Null | Yes |
studyProceedingsId | StringWithAggregatesFilter | String | No |
Name | Type | Nullable |
---|---|---|
AND | DeliverableWhereInput | DeliverableWhereInput[] | No |
OR | DeliverableWhereInput[] | No |
NOT | DeliverableWhereInput | DeliverableWhereInput[] | No |
id | StringFilter | String | No |
description | StringFilter | String | No |
status | EnumDeliverableStatusFilter | DeliverableStatus | No |
phaseId | StringFilter | String | No |
phase | PhaseScalarRelationFilter | PhaseWhereInput | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
description | SortOrder | No |
status | SortOrder | No |
phaseId | SortOrder | No |
phase | PhaseOrderByWithRelationInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
phaseId | String | No |
AND | DeliverableWhereInput | DeliverableWhereInput[] | No |
OR | DeliverableWhereInput[] | No |
NOT | DeliverableWhereInput | DeliverableWhereInput[] | No |
description | StringFilter | String | No |
status | EnumDeliverableStatusFilter | DeliverableStatus | No |
phase | PhaseScalarRelationFilter | PhaseWhereInput | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
description | SortOrder | No |
status | SortOrder | No |
phaseId | SortOrder | No |
_count | DeliverableCountOrderByAggregateInput | No |
_max | DeliverableMaxOrderByAggregateInput | No |
_min | DeliverableMinOrderByAggregateInput | No |
Name | Type | Nullable |
---|---|---|
AND | DeliverableScalarWhereWithAggregatesInput | DeliverableScalarWhereWithAggregatesInput[] | No |
OR | DeliverableScalarWhereWithAggregatesInput[] | No |
NOT | DeliverableScalarWhereWithAggregatesInput | DeliverableScalarWhereWithAggregatesInput[] | No |
id | StringWithAggregatesFilter | String | No |
description | StringWithAggregatesFilter | String | No |
status | EnumDeliverableStatusWithAggregatesFilter | DeliverableStatus | No |
phaseId | StringWithAggregatesFilter | String | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
String | Null | Yes | |
firstName | String | No |
lastName | String | No |
number | String | Null | Yes |
address | AddressCreateNestedOneWithoutPersonInput | No |
user | UserCreateNestedOneWithoutPersonInput | No |
assignee | AssigneeCreateNestedOneWithoutPersonInput | No |
clients | ClientCreateNestedOneWithoutPersonInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
String | Null | Yes | |
firstName | String | No |
lastName | String | No |
number | String | Null | Yes |
address | AddressUncheckedCreateNestedOneWithoutPersonInput | No |
user | UserUncheckedCreateNestedOneWithoutPersonInput | No |
assignee | AssigneeUncheckedCreateNestedOneWithoutPersonInput | No |
clients | ClientUncheckedCreateNestedOneWithoutPersonInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
String | NullableStringFieldUpdateOperationsInput | Null | Yes | |
firstName | String | StringFieldUpdateOperationsInput | No |
lastName | String | StringFieldUpdateOperationsInput | No |
number | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
address | AddressUpdateOneWithoutPersonNestedInput | No |
user | UserUpdateOneWithoutPersonNestedInput | No |
assignee | AssigneeUpdateOneWithoutPersonNestedInput | No |
clients | ClientUpdateOneWithoutPersonNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
String | NullableStringFieldUpdateOperationsInput | Null | Yes | |
firstName | String | StringFieldUpdateOperationsInput | No |
lastName | String | StringFieldUpdateOperationsInput | No |
number | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
address | AddressUncheckedUpdateOneWithoutPersonNestedInput | No |
user | UserUncheckedUpdateOneWithoutPersonNestedInput | No |
assignee | AssigneeUncheckedUpdateOneWithoutPersonNestedInput | No |
clients | ClientUncheckedUpdateOneWithoutPersonNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
String | Null | Yes | |
firstName | String | No |
lastName | String | No |
number | String | Null | Yes |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
String | NullableStringFieldUpdateOperationsInput | Null | Yes | |
firstName | String | StringFieldUpdateOperationsInput | No |
lastName | String | StringFieldUpdateOperationsInput | No |
number | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
String | NullableStringFieldUpdateOperationsInput | Null | Yes | |
firstName | String | StringFieldUpdateOperationsInput | No |
lastName | String | StringFieldUpdateOperationsInput | No |
number | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
Name | Type | Nullable |
---|---|---|
id | String | No |
person | PersonCreateNestedOneWithoutUserInput | No |
settings | UserSettingsCreateNestedOneWithoutUserInput | No |
admin | AdminCreateNestedOneWithoutUserInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
personId | String | No |
userSettingsId | String | Null | Yes |
admin | AdminUncheckedCreateNestedOneWithoutUserInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
person | PersonUpdateOneRequiredWithoutUserNestedInput | No |
settings | UserSettingsUpdateOneWithoutUserNestedInput | No |
admin | AdminUpdateOneWithoutUserNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
personId | String | StringFieldUpdateOperationsInput | No |
userSettingsId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
admin | AdminUncheckedUpdateOneWithoutUserNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
personId | String | No |
userSettingsId | String | Null | Yes |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
personId | String | StringFieldUpdateOperationsInput | No |
userSettingsId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
Name | Type | Nullable |
---|---|---|
id | String | No |
position | String | Null | Yes |
image | String | Null | Yes |
user | UserCreateNestedOneWithoutAdminInput | No |
studies | StudyCreateNestedManyWithoutCdpsInput | No |
auditedStudies | StudyCreateNestedManyWithoutAuditorsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
userId | String | No |
position | String | Null | Yes |
image | String | Null | Yes |
studies | StudyUncheckedCreateNestedManyWithoutCdpsInput | No |
auditedStudies | StudyUncheckedCreateNestedManyWithoutAuditorsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
position | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
image | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
user | UserUpdateOneRequiredWithoutAdminNestedInput | No |
studies | StudyUpdateManyWithoutCdpsNestedInput | No |
auditedStudies | StudyUpdateManyWithoutAuditorsNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
userId | String | StringFieldUpdateOperationsInput | No |
position | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
image | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
studies | StudyUncheckedUpdateManyWithoutCdpsNestedInput | No |
auditedStudies | StudyUncheckedUpdateManyWithoutAuditorsNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
userId | String | No |
position | String | Null | Yes |
image | String | Null | Yes |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
position | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
image | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
userId | String | StringFieldUpdateOperationsInput | No |
position | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
image | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
Name | Type | Nullable |
---|---|---|
id | String | No |
theme | String | No |
notificationLevel | NotificationLevel | No |
gui | Boolean | No |
User | UserCreateNestedManyWithoutSettingsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
theme | String | No |
notificationLevel | NotificationLevel | No |
gui | Boolean | No |
User | UserUncheckedCreateNestedManyWithoutSettingsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
theme | String | StringFieldUpdateOperationsInput | No |
notificationLevel | NotificationLevel | EnumNotificationLevelFieldUpdateOperationsInput | No |
gui | Boolean | BoolFieldUpdateOperationsInput | No |
User | UserUpdateManyWithoutSettingsNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
theme | String | StringFieldUpdateOperationsInput | No |
notificationLevel | NotificationLevel | EnumNotificationLevelFieldUpdateOperationsInput | No |
gui | Boolean | BoolFieldUpdateOperationsInput | No |
User | UserUncheckedUpdateManyWithoutSettingsNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
theme | String | No |
notificationLevel | NotificationLevel | No |
gui | Boolean | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
theme | String | StringFieldUpdateOperationsInput | No |
notificationLevel | NotificationLevel | EnumNotificationLevelFieldUpdateOperationsInput | No |
gui | Boolean | BoolFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
theme | String | StringFieldUpdateOperationsInput | No |
notificationLevel | NotificationLevel | EnumNotificationLevelFieldUpdateOperationsInput | No |
gui | Boolean | BoolFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
streetNumber | String | No |
streetName | String | No |
city | String | No |
zipCode | String | No |
country | String | No |
person | PersonCreateNestedOneWithoutAddressInput | No |
Company | CompanyCreateNestedOneWithoutAddressInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
streetNumber | String | No |
streetName | String | No |
city | String | No |
zipCode | String | No |
country | String | No |
personId | String | Null | Yes |
companyId | String | Null | Yes |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
streetNumber | String | StringFieldUpdateOperationsInput | No |
streetName | String | StringFieldUpdateOperationsInput | No |
city | String | StringFieldUpdateOperationsInput | No |
zipCode | String | StringFieldUpdateOperationsInput | No |
country | String | StringFieldUpdateOperationsInput | No |
person | PersonUpdateOneWithoutAddressNestedInput | No |
Company | CompanyUpdateOneWithoutAddressNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
streetNumber | String | StringFieldUpdateOperationsInput | No |
streetName | String | StringFieldUpdateOperationsInput | No |
city | String | StringFieldUpdateOperationsInput | No |
zipCode | String | StringFieldUpdateOperationsInput | No |
country | String | StringFieldUpdateOperationsInput | No |
personId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
companyId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
Name | Type | Nullable |
---|---|---|
id | String | No |
streetNumber | String | No |
streetName | String | No |
city | String | No |
zipCode | String | No |
country | String | No |
personId | String | Null | Yes |
companyId | String | Null | Yes |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
streetNumber | String | StringFieldUpdateOperationsInput | No |
streetName | String | StringFieldUpdateOperationsInput | No |
city | String | StringFieldUpdateOperationsInput | No |
zipCode | String | StringFieldUpdateOperationsInput | No |
country | String | StringFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
streetNumber | String | StringFieldUpdateOperationsInput | No |
streetName | String | StringFieldUpdateOperationsInput | No |
city | String | StringFieldUpdateOperationsInput | No |
zipCode | String | StringFieldUpdateOperationsInput | No |
country | String | StringFieldUpdateOperationsInput | No |
personId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
companyId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
Name | Type | Nullable |
---|---|---|
id | String | No |
privateIndividual | Boolean | No |
job | String | No |
company | CompanyCreateNestedOneWithoutMembersInput | No |
person | PersonCreateNestedOneWithoutClientsInput | No |
studyClients | StudyClientCreateNestedManyWithoutClientInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
privateIndividual | Boolean | No |
companyId | String | Null | Yes |
personId | String | No |
job | String | No |
studyClients | StudyClientUncheckedCreateNestedManyWithoutClientInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
privateIndividual | Boolean | BoolFieldUpdateOperationsInput | No |
job | String | StringFieldUpdateOperationsInput | No |
company | CompanyUpdateOneWithoutMembersNestedInput | No |
person | PersonUpdateOneRequiredWithoutClientsNestedInput | No |
studyClients | StudyClientUpdateManyWithoutClientNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
privateIndividual | Boolean | BoolFieldUpdateOperationsInput | No |
companyId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
personId | String | StringFieldUpdateOperationsInput | No |
job | String | StringFieldUpdateOperationsInput | No |
studyClients | StudyClientUncheckedUpdateManyWithoutClientNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
privateIndividual | Boolean | No |
companyId | String | Null | Yes |
personId | String | No |
job | String | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
privateIndividual | Boolean | BoolFieldUpdateOperationsInput | No |
job | String | StringFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
privateIndividual | Boolean | BoolFieldUpdateOperationsInput | No |
companyId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
personId | String | StringFieldUpdateOperationsInput | No |
job | String | StringFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
study | StudyCreateNestedOneWithoutClientsInput | No |
client | ClientCreateNestedOneWithoutStudyClientsInput | No |
satisfaction | SatisfactionCreateNestedOneWithoutStudyClientInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
studyId | String | No |
clientId | String | No |
satisfaction | SatisfactionUncheckedCreateNestedOneWithoutStudyClientInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
study | StudyUpdateOneRequiredWithoutClientsNestedInput | No |
client | ClientUpdateOneRequiredWithoutStudyClientsNestedInput | No |
satisfaction | SatisfactionUpdateOneWithoutStudyClientNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
studyId | String | StringFieldUpdateOperationsInput | No |
clientId | String | StringFieldUpdateOperationsInput | No |
satisfaction | SatisfactionUncheckedUpdateOneWithoutStudyClientNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
studyId | String | No |
clientId | String | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
studyId | String | StringFieldUpdateOperationsInput | No |
clientId | String | StringFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
publish | Boolean | No |
howKnowUs | String | No |
whyUs | String | No |
satisfactionObjectives | Int | No |
easiness | Int | No |
timeElapsed | Int | No |
recommendUs | Int | No |
studyClient | StudyClientCreateNestedOneWithoutSatisfactionInput | No |
study | StudyCreateNestedOneWithoutSatisfactionInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
studyClientId | String | No |
studyId | String | No |
publish | Boolean | No |
howKnowUs | String | No |
whyUs | String | No |
satisfactionObjectives | Int | No |
easiness | Int | No |
timeElapsed | Int | No |
recommendUs | Int | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
publish | Boolean | BoolFieldUpdateOperationsInput | No |
howKnowUs | String | StringFieldUpdateOperationsInput | No |
whyUs | String | StringFieldUpdateOperationsInput | No |
satisfactionObjectives | Int | IntFieldUpdateOperationsInput | No |
easiness | Int | IntFieldUpdateOperationsInput | No |
timeElapsed | Int | IntFieldUpdateOperationsInput | No |
recommendUs | Int | IntFieldUpdateOperationsInput | No |
studyClient | StudyClientUpdateOneRequiredWithoutSatisfactionNestedInput | No |
study | StudyUpdateOneRequiredWithoutSatisfactionNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
studyClientId | String | StringFieldUpdateOperationsInput | No |
studyId | String | StringFieldUpdateOperationsInput | No |
publish | Boolean | BoolFieldUpdateOperationsInput | No |
howKnowUs | String | StringFieldUpdateOperationsInput | No |
whyUs | String | StringFieldUpdateOperationsInput | No |
satisfactionObjectives | Int | IntFieldUpdateOperationsInput | No |
easiness | Int | IntFieldUpdateOperationsInput | No |
timeElapsed | Int | IntFieldUpdateOperationsInput | No |
recommendUs | Int | IntFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
studyClientId | String | No |
studyId | String | No |
publish | Boolean | No |
howKnowUs | String | No |
whyUs | String | No |
satisfactionObjectives | Int | No |
easiness | Int | No |
timeElapsed | Int | No |
recommendUs | Int | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
publish | Boolean | BoolFieldUpdateOperationsInput | No |
howKnowUs | String | StringFieldUpdateOperationsInput | No |
whyUs | String | StringFieldUpdateOperationsInput | No |
satisfactionObjectives | Int | IntFieldUpdateOperationsInput | No |
easiness | Int | IntFieldUpdateOperationsInput | No |
timeElapsed | Int | IntFieldUpdateOperationsInput | No |
recommendUs | Int | IntFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
studyClientId | String | StringFieldUpdateOperationsInput | No |
studyId | String | StringFieldUpdateOperationsInput | No |
publish | Boolean | BoolFieldUpdateOperationsInput | No |
howKnowUs | String | StringFieldUpdateOperationsInput | No |
whyUs | String | StringFieldUpdateOperationsInput | No |
satisfactionObjectives | Int | IntFieldUpdateOperationsInput | No |
easiness | Int | IntFieldUpdateOperationsInput | No |
timeElapsed | Int | IntFieldUpdateOperationsInput | No |
recommendUs | Int | IntFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
name | String | No |
address | AddressCreateNestedOneWithoutCompanyInput | No |
companyInfos | CompanyInfosCreateNestedOneWithoutCompanyInput | No |
members | ClientCreateNestedManyWithoutCompanyInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
name | String | No |
companyInfosId | String | No |
address | AddressUncheckedCreateNestedOneWithoutCompanyInput | No |
members | ClientUncheckedCreateNestedManyWithoutCompanyInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
name | String | StringFieldUpdateOperationsInput | No |
address | AddressUpdateOneWithoutCompanyNestedInput | No |
companyInfos | CompanyInfosUpdateOneRequiredWithoutCompanyNestedInput | No |
members | ClientUpdateManyWithoutCompanyNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
name | String | StringFieldUpdateOperationsInput | No |
companyInfosId | String | StringFieldUpdateOperationsInput | No |
address | AddressUncheckedUpdateOneWithoutCompanyNestedInput | No |
members | ClientUncheckedUpdateManyWithoutCompanyNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
name | String | No |
companyInfosId | String | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
name | String | StringFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
name | String | StringFieldUpdateOperationsInput | No |
companyInfosId | String | StringFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
domains | CompanyInfosCreatedomainsInput | Domain[] | No |
ca | Int | Null | Yes |
size | CompanySize | Null | Yes |
company | CompanyCreateNestedManyWithoutCompanyInfosInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
domains | CompanyInfosCreatedomainsInput | Domain[] | No |
ca | Int | Null | Yes |
size | CompanySize | Null | Yes |
company | CompanyUncheckedCreateNestedManyWithoutCompanyInfosInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
domains | CompanyInfosUpdatedomainsInput | Domain[] | No |
ca | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
size | CompanySize | NullableEnumCompanySizeFieldUpdateOperationsInput | Null | Yes |
company | CompanyUpdateManyWithoutCompanyInfosNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
domains | CompanyInfosUpdatedomainsInput | Domain[] | No |
ca | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
size | CompanySize | NullableEnumCompanySizeFieldUpdateOperationsInput | Null | Yes |
company | CompanyUncheckedUpdateManyWithoutCompanyInfosNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
domains | CompanyInfosCreatedomainsInput | Domain[] | No |
ca | Int | Null | Yes |
size | CompanySize | Null | Yes |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
domains | CompanyInfosUpdatedomainsInput | Domain[] | No |
ca | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
size | CompanySize | NullableEnumCompanySizeFieldUpdateOperationsInput | Null | Yes |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
domains | CompanyInfosUpdatedomainsInput | Domain[] | No |
ca | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
size | CompanySize | NullableEnumCompanySizeFieldUpdateOperationsInput | Null | Yes |
Name | Type | Nullable |
---|---|---|
id | String | No |
title | String | No |
googleId | String | No |
type | String | No |
studyDocsId | String | Null | Yes |
status | StatusCreateNestedOneWithoutDocumentInput | No |
assigneeCni | AssigneeDocsCreateNestedOneWithoutCniInput | No |
assigneeSocialSecurity | AssigneeDocsCreateNestedOneWithoutSocialSecurityInput | No |
assigneeStudentCard | AssigneeDocsCreateNestedOneWithoutStudentCardInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
title | String | No |
googleId | String | No |
type | String | No |
studyDocsId | String | Null | Yes |
statusId | String | Null | Yes |
assigneeCni | AssigneeDocsUncheckedCreateNestedOneWithoutCniInput | No |
assigneeSocialSecurity | AssigneeDocsUncheckedCreateNestedOneWithoutSocialSecurityInput | No |
assigneeStudentCard | AssigneeDocsUncheckedCreateNestedOneWithoutStudentCardInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
title | String | StringFieldUpdateOperationsInput | No |
googleId | String | StringFieldUpdateOperationsInput | No |
type | String | StringFieldUpdateOperationsInput | No |
studyDocsId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
status | StatusUpdateOneWithoutDocumentNestedInput | No |
assigneeCni | AssigneeDocsUpdateOneWithoutCniNestedInput | No |
assigneeSocialSecurity | AssigneeDocsUpdateOneWithoutSocialSecurityNestedInput | No |
assigneeStudentCard | AssigneeDocsUpdateOneWithoutStudentCardNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
title | String | StringFieldUpdateOperationsInput | No |
googleId | String | StringFieldUpdateOperationsInput | No |
type | String | StringFieldUpdateOperationsInput | No |
studyDocsId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
statusId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
assigneeCni | AssigneeDocsUncheckedUpdateOneWithoutCniNestedInput | No |
assigneeSocialSecurity | AssigneeDocsUncheckedUpdateOneWithoutSocialSecurityNestedInput | No |
assigneeStudentCard | AssigneeDocsUncheckedUpdateOneWithoutStudentCardNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
title | String | No |
googleId | String | No |
type | String | No |
studyDocsId | String | Null | Yes |
statusId | String | Null | Yes |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
title | String | StringFieldUpdateOperationsInput | No |
googleId | String | StringFieldUpdateOperationsInput | No |
type | String | StringFieldUpdateOperationsInput | No |
studyDocsId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
title | String | StringFieldUpdateOperationsInput | No |
googleId | String | StringFieldUpdateOperationsInput | No |
type | String | StringFieldUpdateOperationsInput | No |
studyDocsId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
statusId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
Name | Type | Nullable |
---|---|---|
id | String | No |
docsId | String | No |
created | DateTime | Null | Yes |
wrote | DateTime | Null | Yes |
audited | DateTime | Null | Yes |
sent | DateTime | Null | Yes |
approved | DateTime | Null | Yes |
signed | DateTime | Null | Yes |
end_of_validity | DateTime | Null | Yes |
writing_deadline | DateTime | Null | Yes |
documentId | String | No |
document | DocumentCreateNestedManyWithoutStatusInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
docsId | String | No |
created | DateTime | Null | Yes |
wrote | DateTime | Null | Yes |
audited | DateTime | Null | Yes |
sent | DateTime | Null | Yes |
approved | DateTime | Null | Yes |
signed | DateTime | Null | Yes |
end_of_validity | DateTime | Null | Yes |
writing_deadline | DateTime | Null | Yes |
documentId | String | No |
document | DocumentUncheckedCreateNestedManyWithoutStatusInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
docsId | String | StringFieldUpdateOperationsInput | No |
created | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
wrote | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
audited | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
sent | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
approved | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
signed | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
end_of_validity | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
writing_deadline | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
documentId | String | StringFieldUpdateOperationsInput | No |
document | DocumentUpdateManyWithoutStatusNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
docsId | String | StringFieldUpdateOperationsInput | No |
created | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
wrote | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
audited | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
sent | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
approved | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
signed | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
end_of_validity | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
writing_deadline | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
documentId | String | StringFieldUpdateOperationsInput | No |
document | DocumentUncheckedUpdateManyWithoutStatusNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
docsId | String | No |
created | DateTime | Null | Yes |
wrote | DateTime | Null | Yes |
audited | DateTime | Null | Yes |
sent | DateTime | Null | Yes |
approved | DateTime | Null | Yes |
signed | DateTime | Null | Yes |
end_of_validity | DateTime | Null | Yes |
writing_deadline | DateTime | Null | Yes |
documentId | String | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
docsId | String | StringFieldUpdateOperationsInput | No |
created | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
wrote | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
audited | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
sent | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
approved | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
signed | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
end_of_validity | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
writing_deadline | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
documentId | String | StringFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
docsId | String | StringFieldUpdateOperationsInput | No |
created | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
wrote | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
audited | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
sent | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
approved | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
signed | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
end_of_validity | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
writing_deadline | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
documentId | String | StringFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
wageLowerBound | Int | Null | Yes |
wageUpperBound | Int | Null | Yes |
wageLevel | Level | Null | Yes |
difficulty | Level | Null | Yes |
mainDomain | Domain | Null | Yes |
introductionText | String | Null | Yes |
descriptionText | String | Null | Yes |
timeLapsText | String | Null | Yes |
requiredSkillsText | String | Null | Yes |
status | MriStatus | No |
study | StudyCreateNestedOneWithoutMriInput | No |
formMRIs | MriFormCreateNestedManyWithoutMriInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
wageLowerBound | Int | Null | Yes |
wageUpperBound | Int | Null | Yes |
wageLevel | Level | Null | Yes |
difficulty | Level | Null | Yes |
mainDomain | Domain | Null | Yes |
introductionText | String | Null | Yes |
descriptionText | String | Null | Yes |
timeLapsText | String | Null | Yes |
requiredSkillsText | String | Null | Yes |
status | MriStatus | No |
studyId | String | No |
formMRIs | MriFormUncheckedCreateNestedManyWithoutMriInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
wageLowerBound | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
wageUpperBound | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
wageLevel | Level | NullableEnumLevelFieldUpdateOperationsInput | Null | Yes |
difficulty | Level | NullableEnumLevelFieldUpdateOperationsInput | Null | Yes |
mainDomain | Domain | NullableEnumDomainFieldUpdateOperationsInput | Null | Yes |
introductionText | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
descriptionText | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
timeLapsText | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
requiredSkillsText | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
status | MriStatus | EnumMriStatusFieldUpdateOperationsInput | No |
study | StudyUpdateOneRequiredWithoutMriNestedInput | No |
formMRIs | MriFormUpdateManyWithoutMriNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
wageLowerBound | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
wageUpperBound | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
wageLevel | Level | NullableEnumLevelFieldUpdateOperationsInput | Null | Yes |
difficulty | Level | NullableEnumLevelFieldUpdateOperationsInput | Null | Yes |
mainDomain | Domain | NullableEnumDomainFieldUpdateOperationsInput | Null | Yes |
introductionText | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
descriptionText | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
timeLapsText | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
requiredSkillsText | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
status | MriStatus | EnumMriStatusFieldUpdateOperationsInput | No |
studyId | String | StringFieldUpdateOperationsInput | No |
formMRIs | MriFormUncheckedUpdateManyWithoutMriNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
wageLowerBound | Int | Null | Yes |
wageUpperBound | Int | Null | Yes |
wageLevel | Level | Null | Yes |
difficulty | Level | Null | Yes |
mainDomain | Domain | Null | Yes |
introductionText | String | Null | Yes |
descriptionText | String | Null | Yes |
timeLapsText | String | Null | Yes |
requiredSkillsText | String | Null | Yes |
status | MriStatus | No |
studyId | String | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
wageLowerBound | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
wageUpperBound | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
wageLevel | Level | NullableEnumLevelFieldUpdateOperationsInput | Null | Yes |
difficulty | Level | NullableEnumLevelFieldUpdateOperationsInput | Null | Yes |
mainDomain | Domain | NullableEnumDomainFieldUpdateOperationsInput | Null | Yes |
introductionText | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
descriptionText | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
timeLapsText | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
requiredSkillsText | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
status | MriStatus | EnumMriStatusFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
wageLowerBound | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
wageUpperBound | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
wageLevel | Level | NullableEnumLevelFieldUpdateOperationsInput | Null | Yes |
difficulty | Level | NullableEnumLevelFieldUpdateOperationsInput | Null | Yes |
mainDomain | Domain | NullableEnumDomainFieldUpdateOperationsInput | Null | Yes |
introductionText | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
descriptionText | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
timeLapsText | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
requiredSkillsText | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
status | MriStatus | EnumMriStatusFieldUpdateOperationsInput | No |
studyId | String | StringFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
nbApplications | Int | No |
docs | AssigneeDocsCreateNestedManyWithoutAssigneeInput | No |
information | AssigneeInfosCreateNestedOneWithoutAssigneeInput | No |
person | PersonCreateNestedOneWithoutAssigneeInput | No |
studyAssign | StudyAssigneeCreateNestedManyWithoutAssigneeInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
nbApplications | Int | No |
peopleId | String | No |
docs | AssigneeDocsUncheckedCreateNestedManyWithoutAssigneeInput | No |
information | AssigneeInfosUncheckedCreateNestedOneWithoutAssigneeInput | No |
studyAssign | StudyAssigneeUncheckedCreateNestedManyWithoutAssigneeInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
nbApplications | Int | IntFieldUpdateOperationsInput | No |
docs | AssigneeDocsUpdateManyWithoutAssigneeNestedInput | No |
information | AssigneeInfosUpdateOneWithoutAssigneeNestedInput | No |
person | PersonUpdateOneRequiredWithoutAssigneeNestedInput | No |
studyAssign | StudyAssigneeUpdateManyWithoutAssigneeNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
nbApplications | Int | IntFieldUpdateOperationsInput | No |
peopleId | String | StringFieldUpdateOperationsInput | No |
docs | AssigneeDocsUncheckedUpdateManyWithoutAssigneeNestedInput | No |
information | AssigneeInfosUncheckedUpdateOneWithoutAssigneeNestedInput | No |
studyAssign | StudyAssigneeUncheckedUpdateManyWithoutAssigneeNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
nbApplications | Int | No |
peopleId | String | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
nbApplications | Int | IntFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
nbApplications | Int | IntFieldUpdateOperationsInput | No |
peopleId | String | StringFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
age | Int | No |
promotion | Int | No |
hasScholarship | Boolean | No |
oldJet | Boolean | No |
assignee | AssigneeCreateNestedOneWithoutInformationInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
assigneeId | String | No |
age | Int | No |
promotion | Int | No |
hasScholarship | Boolean | No |
oldJet | Boolean | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
age | Int | IntFieldUpdateOperationsInput | No |
promotion | Int | IntFieldUpdateOperationsInput | No |
hasScholarship | Boolean | BoolFieldUpdateOperationsInput | No |
oldJet | Boolean | BoolFieldUpdateOperationsInput | No |
assignee | AssigneeUpdateOneRequiredWithoutInformationNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
assigneeId | String | StringFieldUpdateOperationsInput | No |
age | Int | IntFieldUpdateOperationsInput | No |
promotion | Int | IntFieldUpdateOperationsInput | No |
hasScholarship | Boolean | BoolFieldUpdateOperationsInput | No |
oldJet | Boolean | BoolFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
assigneeId | String | No |
age | Int | No |
promotion | Int | No |
hasScholarship | Boolean | No |
oldJet | Boolean | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
age | Int | IntFieldUpdateOperationsInput | No |
promotion | Int | IntFieldUpdateOperationsInput | No |
hasScholarship | Boolean | BoolFieldUpdateOperationsInput | No |
oldJet | Boolean | BoolFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
assigneeId | String | StringFieldUpdateOperationsInput | No |
age | Int | IntFieldUpdateOperationsInput | No |
promotion | Int | IntFieldUpdateOperationsInput | No |
hasScholarship | Boolean | BoolFieldUpdateOperationsInput | No |
oldJet | Boolean | BoolFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
assignee | AssigneeCreateNestedOneWithoutDocsInput | No |
cni | DocumentCreateNestedOneWithoutAssigneeCniInput | No |
socialSecurity | DocumentCreateNestedOneWithoutAssigneeSocialSecurityInput | No |
studentCard | DocumentCreateNestedOneWithoutAssigneeStudentCardInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
assigneeId | String | No |
cniId | String | No |
socialSecurityId | String | No |
studentCardId | String | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
assignee | AssigneeUpdateOneRequiredWithoutDocsNestedInput | No |
cni | DocumentUpdateOneRequiredWithoutAssigneeCniNestedInput | No |
socialSecurity | DocumentUpdateOneRequiredWithoutAssigneeSocialSecurityNestedInput | No |
studentCard | DocumentUpdateOneRequiredWithoutAssigneeStudentCardNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
assigneeId | String | StringFieldUpdateOperationsInput | No |
cniId | String | StringFieldUpdateOperationsInput | No |
socialSecurityId | String | StringFieldUpdateOperationsInput | No |
studentCardId | String | StringFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
assigneeId | String | No |
cniId | String | No |
socialSecurityId | String | No |
studentCardId | String | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
assigneeId | String | StringFieldUpdateOperationsInput | No |
cniId | String | StringFieldUpdateOperationsInput | No |
socialSecurityId | String | StringFieldUpdateOperationsInput | No |
studentCardId | String | StringFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
selectionNotes | String | No |
taken | Boolean | No |
study | StudyCreateNestedOneWithoutStudyAssigneesInput | No |
assignee | AssigneeCreateNestedOneWithoutStudyAssignInput | No |
formInterview | FormInterviewsCreateNestedOneWithoutStudyAssigneesInput | No |
mriForm | MriFormCreateNestedOneWithoutStudyAssigneesInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
studyId | String | No |
assigneeId | String | No |
formInterviewId | String | No |
mriFormId | String | No |
selectionNotes | String | No |
taken | Boolean | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
selectionNotes | String | StringFieldUpdateOperationsInput | No |
taken | Boolean | BoolFieldUpdateOperationsInput | No |
study | StudyUpdateOneRequiredWithoutStudyAssigneesNestedInput | No |
assignee | AssigneeUpdateOneRequiredWithoutStudyAssignNestedInput | No |
formInterview | FormInterviewsUpdateOneRequiredWithoutStudyAssigneesNestedInput | No |
mriForm | MriFormUpdateOneRequiredWithoutStudyAssigneesNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
studyId | String | StringFieldUpdateOperationsInput | No |
assigneeId | String | StringFieldUpdateOperationsInput | No |
formInterviewId | String | StringFieldUpdateOperationsInput | No |
mriFormId | String | StringFieldUpdateOperationsInput | No |
selectionNotes | String | StringFieldUpdateOperationsInput | No |
taken | Boolean | BoolFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
studyId | String | No |
assigneeId | String | No |
formInterviewId | String | No |
mriFormId | String | No |
selectionNotes | String | No |
taken | Boolean | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
selectionNotes | String | StringFieldUpdateOperationsInput | No |
taken | Boolean | BoolFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
studyId | String | StringFieldUpdateOperationsInput | No |
assigneeId | String | StringFieldUpdateOperationsInput | No |
formInterviewId | String | StringFieldUpdateOperationsInput | No |
mriFormId | String | StringFieldUpdateOperationsInput | No |
selectionNotes | String | StringFieldUpdateOperationsInput | No |
taken | Boolean | BoolFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
experience | String | No |
knowledge | String | No |
ideas | String | No |
jeExperience | Int | No |
mri | MriCreateNestedOneWithoutFormMRIsInput | No |
studyAssignees | StudyAssigneeCreateNestedOneWithoutMriFormInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
mriId | String | No |
experience | String | No |
knowledge | String | No |
ideas | String | No |
jeExperience | Int | No |
studyAssignees | StudyAssigneeUncheckedCreateNestedOneWithoutMriFormInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
experience | String | StringFieldUpdateOperationsInput | No |
knowledge | String | StringFieldUpdateOperationsInput | No |
ideas | String | StringFieldUpdateOperationsInput | No |
jeExperience | Int | IntFieldUpdateOperationsInput | No |
mri | MriUpdateOneRequiredWithoutFormMRIsNestedInput | No |
studyAssignees | StudyAssigneeUpdateOneWithoutMriFormNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
mriId | String | StringFieldUpdateOperationsInput | No |
experience | String | StringFieldUpdateOperationsInput | No |
knowledge | String | StringFieldUpdateOperationsInput | No |
ideas | String | StringFieldUpdateOperationsInput | No |
jeExperience | Int | IntFieldUpdateOperationsInput | No |
studyAssignees | StudyAssigneeUncheckedUpdateOneWithoutMriFormNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
mriId | String | No |
experience | String | No |
knowledge | String | No |
ideas | String | No |
jeExperience | Int | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
experience | String | StringFieldUpdateOperationsInput | No |
knowledge | String | StringFieldUpdateOperationsInput | No |
ideas | String | StringFieldUpdateOperationsInput | No |
jeExperience | Int | IntFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
mriId | String | StringFieldUpdateOperationsInput | No |
experience | String | StringFieldUpdateOperationsInput | No |
knowledge | String | StringFieldUpdateOperationsInput | No |
ideas | String | StringFieldUpdateOperationsInput | No |
jeExperience | Int | IntFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
available | Boolean | No |
approach | String | No |
courses | String | No |
starS | String | No |
starT | String | No |
starA | String | No |
starR | String | No |
motivation | String | No |
cdpRequirements | String | No |
questions | String | No |
studyAssignees | StudyAssigneeCreateNestedOneWithoutFormInterviewInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
available | Boolean | No |
approach | String | No |
courses | String | No |
starS | String | No |
starT | String | No |
starA | String | No |
starR | String | No |
motivation | String | No |
cdpRequirements | String | No |
questions | String | No |
studyAssignees | StudyAssigneeUncheckedCreateNestedOneWithoutFormInterviewInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
available | Boolean | BoolFieldUpdateOperationsInput | No |
approach | String | StringFieldUpdateOperationsInput | No |
courses | String | StringFieldUpdateOperationsInput | No |
starS | String | StringFieldUpdateOperationsInput | No |
starT | String | StringFieldUpdateOperationsInput | No |
starA | String | StringFieldUpdateOperationsInput | No |
starR | String | StringFieldUpdateOperationsInput | No |
motivation | String | StringFieldUpdateOperationsInput | No |
cdpRequirements | String | StringFieldUpdateOperationsInput | No |
questions | String | StringFieldUpdateOperationsInput | No |
studyAssignees | StudyAssigneeUpdateOneWithoutFormInterviewNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
available | Boolean | BoolFieldUpdateOperationsInput | No |
approach | String | StringFieldUpdateOperationsInput | No |
courses | String | StringFieldUpdateOperationsInput | No |
starS | String | StringFieldUpdateOperationsInput | No |
starT | String | StringFieldUpdateOperationsInput | No |
starA | String | StringFieldUpdateOperationsInput | No |
starR | String | StringFieldUpdateOperationsInput | No |
motivation | String | StringFieldUpdateOperationsInput | No |
cdpRequirements | String | StringFieldUpdateOperationsInput | No |
questions | String | StringFieldUpdateOperationsInput | No |
studyAssignees | StudyAssigneeUncheckedUpdateOneWithoutFormInterviewNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
available | Boolean | No |
approach | String | No |
courses | String | No |
starS | String | No |
starT | String | No |
starA | String | No |
starR | String | No |
motivation | String | No |
cdpRequirements | String | No |
questions | String | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
available | Boolean | BoolFieldUpdateOperationsInput | No |
approach | String | StringFieldUpdateOperationsInput | No |
courses | String | StringFieldUpdateOperationsInput | No |
starS | String | StringFieldUpdateOperationsInput | No |
starT | String | StringFieldUpdateOperationsInput | No |
starA | String | StringFieldUpdateOperationsInput | No |
starR | String | StringFieldUpdateOperationsInput | No |
motivation | String | StringFieldUpdateOperationsInput | No |
cdpRequirements | String | StringFieldUpdateOperationsInput | No |
questions | String | StringFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
available | Boolean | BoolFieldUpdateOperationsInput | No |
approach | String | StringFieldUpdateOperationsInput | No |
courses | String | StringFieldUpdateOperationsInput | No |
starS | String | StringFieldUpdateOperationsInput | No |
starT | String | StringFieldUpdateOperationsInput | No |
starA | String | StringFieldUpdateOperationsInput | No |
starR | String | StringFieldUpdateOperationsInput | No |
motivation | String | StringFieldUpdateOperationsInput | No |
cdpRequirements | String | StringFieldUpdateOperationsInput | No |
questions | String | StringFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
studyProceedingsId | String | Null | Yes |
cdps | AdminCreateNestedManyWithoutStudiesInput | No |
auditors | AdminCreateNestedManyWithoutAuditedStudiesInput | No |
information | StudyInfosCreateNestedOneWithoutStudyInput | No |
studyProceedings | StudyProceedingsCreateNestedOneWithoutStudyInput | No |
clients | StudyClientCreateNestedManyWithoutStudyInput | No |
mri | MriCreateNestedOneWithoutStudyInput | No |
studyAssignees | StudyAssigneeCreateNestedManyWithoutStudyInput | No |
satisfaction | SatisfactionCreateNestedOneWithoutStudyInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
informationId | String | No |
studyProceedingsId | String | Null | Yes |
cdps | AdminUncheckedCreateNestedManyWithoutStudiesInput | No |
auditors | AdminUncheckedCreateNestedManyWithoutAuditedStudiesInput | No |
studyProceedings | StudyProceedingsUncheckedCreateNestedOneWithoutStudyInput | No |
clients | StudyClientUncheckedCreateNestedManyWithoutStudyInput | No |
mri | MriUncheckedCreateNestedOneWithoutStudyInput | No |
studyAssignees | StudyAssigneeUncheckedCreateNestedManyWithoutStudyInput | No |
satisfaction | SatisfactionUncheckedCreateNestedOneWithoutStudyInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
studyProceedingsId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
cdps | AdminUpdateManyWithoutStudiesNestedInput | No |
auditors | AdminUpdateManyWithoutAuditedStudiesNestedInput | No |
information | StudyInfosUpdateOneRequiredWithoutStudyNestedInput | No |
studyProceedings | StudyProceedingsUpdateOneWithoutStudyNestedInput | No |
clients | StudyClientUpdateManyWithoutStudyNestedInput | No |
mri | MriUpdateOneWithoutStudyNestedInput | No |
studyAssignees | StudyAssigneeUpdateManyWithoutStudyNestedInput | No |
satisfaction | SatisfactionUpdateOneWithoutStudyNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
informationId | String | StringFieldUpdateOperationsInput | No |
studyProceedingsId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
cdps | AdminUncheckedUpdateManyWithoutStudiesNestedInput | No |
auditors | AdminUncheckedUpdateManyWithoutAuditedStudiesNestedInput | No |
studyProceedings | StudyProceedingsUncheckedUpdateOneWithoutStudyNestedInput | No |
clients | StudyClientUncheckedUpdateManyWithoutStudyNestedInput | No |
mri | MriUncheckedUpdateOneWithoutStudyNestedInput | No |
studyAssignees | StudyAssigneeUncheckedUpdateManyWithoutStudyNestedInput | No |
satisfaction | SatisfactionUncheckedUpdateOneWithoutStudyNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
informationId | String | No |
studyProceedingsId | String | Null | Yes |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
studyProceedingsId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
informationId | String | StringFieldUpdateOperationsInput | No |
studyProceedingsId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
Name | Type | Nullable |
---|---|---|
id | String | No |
code | String | No |
googleFolder | String | Null | Yes |
title | String | Null | Yes |
applicationFee | Float | No |
cc | Boolean | No |
domains | StudyInfosCreatedomainsInput | Domain[] | No |
estimatedDuration | Int | Null | Yes |
deadlinePreStudy | DateTime | Null | Yes |
study | StudyCreateNestedOneWithoutInformationInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
code | String | No |
googleFolder | String | Null | Yes |
title | String | Null | Yes |
applicationFee | Float | No |
cc | Boolean | No |
domains | StudyInfosCreatedomainsInput | Domain[] | No |
estimatedDuration | Int | Null | Yes |
deadlinePreStudy | DateTime | Null | Yes |
study | StudyUncheckedCreateNestedOneWithoutInformationInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
code | String | StringFieldUpdateOperationsInput | No |
googleFolder | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
title | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
applicationFee | Float | FloatFieldUpdateOperationsInput | No |
cc | Boolean | BoolFieldUpdateOperationsInput | No |
domains | StudyInfosUpdatedomainsInput | Domain[] | No |
estimatedDuration | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
deadlinePreStudy | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
study | StudyUpdateOneWithoutInformationNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
code | String | StringFieldUpdateOperationsInput | No |
googleFolder | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
title | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
applicationFee | Float | FloatFieldUpdateOperationsInput | No |
cc | Boolean | BoolFieldUpdateOperationsInput | No |
domains | StudyInfosUpdatedomainsInput | Domain[] | No |
estimatedDuration | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
deadlinePreStudy | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
study | StudyUncheckedUpdateOneWithoutInformationNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
code | String | No |
googleFolder | String | Null | Yes |
title | String | Null | Yes |
applicationFee | Float | No |
cc | Boolean | No |
domains | StudyInfosCreatedomainsInput | Domain[] | No |
estimatedDuration | Int | Null | Yes |
deadlinePreStudy | DateTime | Null | Yes |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
code | String | StringFieldUpdateOperationsInput | No |
googleFolder | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
title | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
applicationFee | Float | FloatFieldUpdateOperationsInput | No |
cc | Boolean | BoolFieldUpdateOperationsInput | No |
domains | StudyInfosUpdatedomainsInput | Domain[] | No |
estimatedDuration | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
deadlinePreStudy | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
code | String | StringFieldUpdateOperationsInput | No |
googleFolder | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
title | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
applicationFee | Float | FloatFieldUpdateOperationsInput | No |
cc | Boolean | BoolFieldUpdateOperationsInput | No |
domains | StudyInfosUpdatedomainsInput | Domain[] | No |
estimatedDuration | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
deadlinePreStudy | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
Name | Type | Nullable |
---|---|---|
id | String | No |
studyProcessStep | StudyProgressStep | No |
phases | PhaseCreateNestedManyWithoutStudyProceedingsInput | No |
study | StudyCreateNestedOneWithoutStudyProceedingsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
studyId | String | No |
studyProcessStep | StudyProgressStep | No |
phases | PhaseUncheckedCreateNestedManyWithoutStudyProceedingsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
studyProcessStep | StudyProgressStep | EnumStudyProgressStepFieldUpdateOperationsInput | No |
phases | PhaseUpdateManyWithoutStudyProceedingsNestedInput | No |
study | StudyUpdateOneRequiredWithoutStudyProceedingsNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
studyId | String | StringFieldUpdateOperationsInput | No |
studyProcessStep | StudyProgressStep | EnumStudyProgressStepFieldUpdateOperationsInput | No |
phases | PhaseUncheckedUpdateManyWithoutStudyProceedingsNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
studyId | String | No |
studyProcessStep | StudyProgressStep | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
studyProcessStep | StudyProgressStep | EnumStudyProgressStepFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
studyId | String | StringFieldUpdateOperationsInput | No |
studyProcessStep | StudyProgressStep | EnumStudyProgressStepFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
jehs | Int | No |
title | String | No |
unitPrice | Float | No |
startDate | DateTime | Null | Yes |
endDate | DateTime | Null | Yes |
deliverable | DeliverableCreateNestedOneWithoutPhaseInput | No |
studyProceedings | StudyProceedingsCreateNestedOneWithoutPhasesInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
jehs | Int | No |
title | String | No |
unitPrice | Float | No |
startDate | DateTime | Null | Yes |
endDate | DateTime | Null | Yes |
studyProceedingsId | String | No |
deliverable | DeliverableUncheckedCreateNestedOneWithoutPhaseInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
jehs | Int | IntFieldUpdateOperationsInput | No |
title | String | StringFieldUpdateOperationsInput | No |
unitPrice | Float | FloatFieldUpdateOperationsInput | No |
startDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
endDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
deliverable | DeliverableUpdateOneWithoutPhaseNestedInput | No |
studyProceedings | StudyProceedingsUpdateOneRequiredWithoutPhasesNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
jehs | Int | IntFieldUpdateOperationsInput | No |
title | String | StringFieldUpdateOperationsInput | No |
unitPrice | Float | FloatFieldUpdateOperationsInput | No |
startDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
endDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
studyProceedingsId | String | StringFieldUpdateOperationsInput | No |
deliverable | DeliverableUncheckedUpdateOneWithoutPhaseNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
jehs | Int | No |
title | String | No |
unitPrice | Float | No |
startDate | DateTime | Null | Yes |
endDate | DateTime | Null | Yes |
studyProceedingsId | String | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
jehs | Int | IntFieldUpdateOperationsInput | No |
title | String | StringFieldUpdateOperationsInput | No |
unitPrice | Float | FloatFieldUpdateOperationsInput | No |
startDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
endDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
jehs | Int | IntFieldUpdateOperationsInput | No |
title | String | StringFieldUpdateOperationsInput | No |
unitPrice | Float | FloatFieldUpdateOperationsInput | No |
startDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
endDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
studyProceedingsId | String | StringFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
description | String | No |
status | DeliverableStatus | No |
phase | PhaseCreateNestedOneWithoutDeliverableInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
description | String | No |
status | DeliverableStatus | No |
phaseId | String | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
description | String | StringFieldUpdateOperationsInput | No |
status | DeliverableStatus | EnumDeliverableStatusFieldUpdateOperationsInput | No |
phase | PhaseUpdateOneRequiredWithoutDeliverableNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
description | String | StringFieldUpdateOperationsInput | No |
status | DeliverableStatus | EnumDeliverableStatusFieldUpdateOperationsInput | No |
phaseId | String | StringFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
description | String | No |
status | DeliverableStatus | No |
phaseId | String | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
description | String | StringFieldUpdateOperationsInput | No |
status | DeliverableStatus | EnumDeliverableStatusFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
description | String | StringFieldUpdateOperationsInput | No |
status | DeliverableStatus | EnumDeliverableStatusFieldUpdateOperationsInput | No |
phaseId | String | StringFieldUpdateOperationsInput | 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 | 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 |
---|---|---|
is | AddressWhereInput | Null | Yes |
isNot | AddressWhereInput | Null | Yes |
Name | Type | Nullable |
---|---|---|
is | UserWhereInput | Null | Yes |
isNot | UserWhereInput | Null | Yes |
Name | Type | Nullable |
---|---|---|
is | AssigneeWhereInput | Null | Yes |
isNot | AssigneeWhereInput | Null | Yes |
Name | Type | Nullable |
---|---|---|
is | ClientWhereInput | Null | Yes |
isNot | ClientWhereInput | Null | Yes |
Name | Type | Nullable |
---|---|---|
sort | SortOrder | No |
nulls | NullsOrder | No |
Name | Type | Nullable |
---|---|---|
firstName | String | No |
lastName | String | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
SortOrder | No | |
firstName | SortOrder | No |
lastName | SortOrder | No |
number | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
SortOrder | No | |
firstName | SortOrder | No |
lastName | SortOrder | No |
number | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
SortOrder | No | |
firstName | SortOrder | No |
lastName | SortOrder | No |
number | 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 | 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 | PersonWhereInput | No |
isNot | PersonWhereInput | No |
Name | Type | Nullable |
---|---|---|
is | UserSettingsWhereInput | Null | Yes |
isNot | UserSettingsWhereInput | Null | Yes |
Name | Type | Nullable |
---|---|---|
is | AdminWhereInput | Null | Yes |
isNot | AdminWhereInput | Null | Yes |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
personId | SortOrder | No |
userSettingsId | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
personId | SortOrder | No |
userSettingsId | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
personId | SortOrder | No |
userSettingsId | SortOrder | No |
Name | Type | Nullable |
---|---|---|
is | UserWhereInput | No |
isNot | UserWhereInput | No |
Name | Type | Nullable |
---|---|---|
every | StudyWhereInput | No |
some | StudyWhereInput | No |
none | StudyWhereInput | No |
Name | Type | Nullable |
---|---|---|
_count | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
userId | SortOrder | No |
position | SortOrder | No |
image | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
userId | SortOrder | No |
position | SortOrder | No |
image | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
userId | SortOrder | No |
position | SortOrder | No |
image | SortOrder | No |
Name | Type | Nullable |
---|---|---|
equals | NotificationLevel | EnumNotificationLevelFieldRefInput | No |
in | NotificationLevel[] | ListEnumNotificationLevelFieldRefInput | No |
notIn | NotificationLevel[] | ListEnumNotificationLevelFieldRefInput | No |
not | NotificationLevel | NestedEnumNotificationLevelFilter | No |
Name | Type | Nullable |
---|---|---|
equals | Boolean | BooleanFieldRefInput | No |
not | Boolean | NestedBoolFilter | No |
Name | Type | Nullable |
---|---|---|
every | UserWhereInput | No |
some | UserWhereInput | No |
none | UserWhereInput | No |
Name | Type | Nullable |
---|---|---|
_count | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
theme | SortOrder | No |
notificationLevel | SortOrder | No |
gui | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
theme | SortOrder | No |
notificationLevel | SortOrder | No |
gui | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
theme | SortOrder | No |
notificationLevel | SortOrder | No |
gui | SortOrder | No |
Name | Type | Nullable |
---|---|---|
equals | NotificationLevel | EnumNotificationLevelFieldRefInput | No |
in | NotificationLevel[] | ListEnumNotificationLevelFieldRefInput | No |
notIn | NotificationLevel[] | ListEnumNotificationLevelFieldRefInput | No |
not | NotificationLevel | NestedEnumNotificationLevelWithAggregatesFilter | No |
_count | NestedIntFilter | No |
_min | NestedEnumNotificationLevelFilter | No |
_max | NestedEnumNotificationLevelFilter | No |
Name | Type | Nullable |
---|---|---|
equals | Boolean | BooleanFieldRefInput | No |
not | Boolean | NestedBoolWithAggregatesFilter | No |
_count | NestedIntFilter | No |
_min | NestedBoolFilter | No |
_max | NestedBoolFilter | No |
Name | Type | Nullable |
---|---|---|
is | PersonWhereInput | Null | Yes |
isNot | PersonWhereInput | Null | Yes |
Name | Type | Nullable |
---|---|---|
is | CompanyWhereInput | Null | Yes |
isNot | CompanyWhereInput | Null | Yes |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
streetNumber | SortOrder | No |
streetName | SortOrder | No |
city | SortOrder | No |
zipCode | SortOrder | No |
country | SortOrder | No |
personId | SortOrder | No |
companyId | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
streetNumber | SortOrder | No |
streetName | SortOrder | No |
city | SortOrder | No |
zipCode | SortOrder | No |
country | SortOrder | No |
personId | SortOrder | No |
companyId | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
streetNumber | SortOrder | No |
streetName | SortOrder | No |
city | SortOrder | No |
zipCode | SortOrder | No |
country | SortOrder | No |
personId | SortOrder | No |
companyId | SortOrder | No |
Name | Type | Nullable |
---|---|---|
every | StudyClientWhereInput | No |
some | StudyClientWhereInput | No |
none | StudyClientWhereInput | No |
Name | Type | Nullable |
---|---|---|
_count | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
privateIndividual | SortOrder | No |
companyId | SortOrder | No |
personId | SortOrder | No |
job | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
privateIndividual | SortOrder | No |
companyId | SortOrder | No |
personId | SortOrder | No |
job | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
privateIndividual | SortOrder | No |
companyId | SortOrder | No |
personId | SortOrder | No |
job | SortOrder | No |
Name | Type | Nullable |
---|---|---|
is | StudyWhereInput | No |
isNot | StudyWhereInput | No |
Name | Type | Nullable |
---|---|---|
is | ClientWhereInput | No |
isNot | ClientWhereInput | No |
Name | Type | Nullable |
---|---|---|
is | SatisfactionWhereInput | Null | Yes |
isNot | SatisfactionWhereInput | Null | Yes |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
studyId | SortOrder | No |
clientId | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
studyId | SortOrder | No |
clientId | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
studyId | SortOrder | No |
clientId | 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 | NestedIntFilter | No |
Name | Type | Nullable |
---|---|---|
is | StudyClientWhereInput | No |
isNot | StudyClientWhereInput | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
studyClientId | SortOrder | No |
studyId | SortOrder | No |
publish | SortOrder | No |
howKnowUs | SortOrder | No |
whyUs | SortOrder | No |
satisfactionObjectives | SortOrder | No |
easiness | SortOrder | No |
timeElapsed | SortOrder | No |
recommendUs | SortOrder | No |
Name | Type | Nullable |
---|---|---|
satisfactionObjectives | SortOrder | No |
easiness | SortOrder | No |
timeElapsed | SortOrder | No |
recommendUs | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
studyClientId | SortOrder | No |
studyId | SortOrder | No |
publish | SortOrder | No |
howKnowUs | SortOrder | No |
whyUs | SortOrder | No |
satisfactionObjectives | SortOrder | No |
easiness | SortOrder | No |
timeElapsed | SortOrder | No |
recommendUs | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
studyClientId | SortOrder | No |
studyId | SortOrder | No |
publish | SortOrder | No |
howKnowUs | SortOrder | No |
whyUs | SortOrder | No |
satisfactionObjectives | SortOrder | No |
easiness | SortOrder | No |
timeElapsed | SortOrder | No |
recommendUs | SortOrder | No |
Name | Type | Nullable |
---|---|---|
satisfactionObjectives | SortOrder | No |
easiness | SortOrder | No |
timeElapsed | SortOrder | No |
recommendUs | 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 |
---|---|---|
is | CompanyInfosWhereInput | No |
isNot | CompanyInfosWhereInput | No |
Name | Type | Nullable |
---|---|---|
every | ClientWhereInput | No |
some | ClientWhereInput | No |
none | ClientWhereInput | No |
Name | Type | Nullable |
---|---|---|
_count | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
name | SortOrder | No |
companyInfosId | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
name | SortOrder | No |
companyInfosId | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
name | SortOrder | No |
companyInfosId | SortOrder | No |
Name | Type | Nullable |
---|---|---|
equals | Domain[] | ListEnumDomainFieldRefInput | Null | Yes |
has | Domain | EnumDomainFieldRefInput | Null | Yes |
hasEvery | Domain[] | ListEnumDomainFieldRefInput | No |
hasSome | Domain[] | ListEnumDomainFieldRefInput | No |
isEmpty | Boolean | 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 | CompanySize | EnumCompanySizeFieldRefInput | Null | Yes |
in | CompanySize[] | ListEnumCompanySizeFieldRefInput | Null | Yes |
notIn | CompanySize[] | ListEnumCompanySizeFieldRefInput | Null | Yes |
not | CompanySize | NestedEnumCompanySizeNullableFilter | Null | Yes |
Name | Type | Nullable |
---|---|---|
every | CompanyWhereInput | No |
some | CompanyWhereInput | No |
none | CompanyWhereInput | No |
Name | Type | Nullable |
---|---|---|
_count | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
domains | SortOrder | No |
ca | SortOrder | No |
size | SortOrder | No |
Name | Type | Nullable |
---|---|---|
ca | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
ca | SortOrder | No |
size | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
ca | SortOrder | No |
size | SortOrder | No |
Name | Type | Nullable |
---|---|---|
ca | SortOrder | 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 | NestedIntNullableWithAggregatesFilter | Null | Yes |
_count | NestedIntNullableFilter | No |
_avg | NestedFloatNullableFilter | No |
_sum | NestedIntNullableFilter | No |
_min | NestedIntNullableFilter | No |
_max | NestedIntNullableFilter | No |
Name | Type | Nullable |
---|---|---|
equals | CompanySize | EnumCompanySizeFieldRefInput | Null | Yes |
in | CompanySize[] | ListEnumCompanySizeFieldRefInput | Null | Yes |
notIn | CompanySize[] | ListEnumCompanySizeFieldRefInput | Null | Yes |
not | CompanySize | NestedEnumCompanySizeNullableWithAggregatesFilter | Null | Yes |
_count | NestedIntNullableFilter | No |
_min | NestedEnumCompanySizeNullableFilter | No |
_max | NestedEnumCompanySizeNullableFilter | No |
Name | Type | Nullable |
---|---|---|
is | StatusWhereInput | Null | Yes |
isNot | StatusWhereInput | Null | Yes |
Name | Type | Nullable |
---|---|---|
is | AssigneeDocsWhereInput | Null | Yes |
isNot | AssigneeDocsWhereInput | Null | Yes |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
title | SortOrder | No |
googleId | SortOrder | No |
type | SortOrder | No |
studyDocsId | SortOrder | No |
statusId | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
title | SortOrder | No |
googleId | SortOrder | No |
type | SortOrder | No |
studyDocsId | SortOrder | No |
statusId | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
title | SortOrder | No |
googleId | SortOrder | No |
type | SortOrder | No |
studyDocsId | SortOrder | No |
statusId | SortOrder | No |
Name | Type | Nullable |
---|---|---|
equals | DateTime | DateTimeFieldRefInput | Null | Yes |
in | DateTime | ListDateTimeFieldRefInput | Null | Yes |
notIn | DateTime | ListDateTimeFieldRefInput | Null | Yes |
lt | DateTime | DateTimeFieldRefInput | No |
lte | DateTime | DateTimeFieldRefInput | No |
gt | DateTime | DateTimeFieldRefInput | No |
gte | DateTime | DateTimeFieldRefInput | No |
not | DateTime | NestedDateTimeNullableFilter | Null | Yes |
Name | Type | Nullable |
---|---|---|
every | DocumentWhereInput | No |
some | DocumentWhereInput | No |
none | DocumentWhereInput | No |
Name | Type | Nullable |
---|---|---|
_count | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
docsId | SortOrder | No |
created | SortOrder | No |
wrote | SortOrder | No |
audited | SortOrder | No |
sent | SortOrder | No |
approved | SortOrder | No |
signed | SortOrder | No |
end_of_validity | SortOrder | No |
writing_deadline | SortOrder | No |
documentId | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
docsId | SortOrder | No |
created | SortOrder | No |
wrote | SortOrder | No |
audited | SortOrder | No |
sent | SortOrder | No |
approved | SortOrder | No |
signed | SortOrder | No |
end_of_validity | SortOrder | No |
writing_deadline | SortOrder | No |
documentId | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
docsId | SortOrder | No |
created | SortOrder | No |
wrote | SortOrder | No |
audited | SortOrder | No |
sent | SortOrder | No |
approved | SortOrder | No |
signed | SortOrder | No |
end_of_validity | SortOrder | No |
writing_deadline | SortOrder | No |
documentId | SortOrder | No |
Name | Type | Nullable |
---|---|---|
equals | DateTime | DateTimeFieldRefInput | Null | Yes |
in | DateTime | ListDateTimeFieldRefInput | Null | Yes |
notIn | DateTime | ListDateTimeFieldRefInput | Null | Yes |
lt | DateTime | DateTimeFieldRefInput | No |
lte | DateTime | DateTimeFieldRefInput | No |
gt | DateTime | DateTimeFieldRefInput | No |
gte | DateTime | DateTimeFieldRefInput | No |
not | DateTime | NestedDateTimeNullableWithAggregatesFilter | Null | Yes |
_count | NestedIntNullableFilter | No |
_min | NestedDateTimeNullableFilter | No |
_max | NestedDateTimeNullableFilter | No |
Name | Type | Nullable |
---|---|---|
equals | Level | EnumLevelFieldRefInput | Null | Yes |
in | Level[] | ListEnumLevelFieldRefInput | Null | Yes |
notIn | Level[] | ListEnumLevelFieldRefInput | Null | Yes |
not | Level | NestedEnumLevelNullableFilter | Null | Yes |
Name | Type | Nullable |
---|---|---|
equals | Domain | EnumDomainFieldRefInput | Null | Yes |
in | Domain[] | ListEnumDomainFieldRefInput | Null | Yes |
notIn | Domain[] | ListEnumDomainFieldRefInput | Null | Yes |
not | Domain | NestedEnumDomainNullableFilter | Null | Yes |
Name | Type | Nullable |
---|---|---|
equals | MriStatus | EnumMriStatusFieldRefInput | No |
in | MriStatus[] | ListEnumMriStatusFieldRefInput | No |
notIn | MriStatus[] | ListEnumMriStatusFieldRefInput | No |
not | MriStatus | NestedEnumMriStatusFilter | No |
Name | Type | Nullable |
---|---|---|
every | MriFormWhereInput | No |
some | MriFormWhereInput | No |
none | MriFormWhereInput | No |
Name | Type | Nullable |
---|---|---|
_count | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
wageLowerBound | SortOrder | No |
wageUpperBound | SortOrder | No |
wageLevel | SortOrder | No |
difficulty | SortOrder | No |
mainDomain | SortOrder | No |
introductionText | SortOrder | No |
descriptionText | SortOrder | No |
timeLapsText | SortOrder | No |
requiredSkillsText | SortOrder | No |
status | SortOrder | No |
studyId | SortOrder | No |
Name | Type | Nullable |
---|---|---|
wageLowerBound | SortOrder | No |
wageUpperBound | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
wageLowerBound | SortOrder | No |
wageUpperBound | SortOrder | No |
wageLevel | SortOrder | No |
difficulty | SortOrder | No |
mainDomain | SortOrder | No |
introductionText | SortOrder | No |
descriptionText | SortOrder | No |
timeLapsText | SortOrder | No |
requiredSkillsText | SortOrder | No |
status | SortOrder | No |
studyId | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
wageLowerBound | SortOrder | No |
wageUpperBound | SortOrder | No |
wageLevel | SortOrder | No |
difficulty | SortOrder | No |
mainDomain | SortOrder | No |
introductionText | SortOrder | No |
descriptionText | SortOrder | No |
timeLapsText | SortOrder | No |
requiredSkillsText | SortOrder | No |
status | SortOrder | No |
studyId | SortOrder | No |
Name | Type | Nullable |
---|---|---|
wageLowerBound | SortOrder | No |
wageUpperBound | SortOrder | No |
Name | Type | Nullable |
---|---|---|
equals | Level | EnumLevelFieldRefInput | Null | Yes |
in | Level[] | ListEnumLevelFieldRefInput | Null | Yes |
notIn | Level[] | ListEnumLevelFieldRefInput | Null | Yes |
not | Level | NestedEnumLevelNullableWithAggregatesFilter | Null | Yes |
_count | NestedIntNullableFilter | No |
_min | NestedEnumLevelNullableFilter | No |
_max | NestedEnumLevelNullableFilter | No |
Name | Type | Nullable |
---|---|---|
equals | Domain | EnumDomainFieldRefInput | Null | Yes |
in | Domain[] | ListEnumDomainFieldRefInput | Null | Yes |
notIn | Domain[] | ListEnumDomainFieldRefInput | Null | Yes |
not | Domain | NestedEnumDomainNullableWithAggregatesFilter | Null | Yes |
_count | NestedIntNullableFilter | No |
_min | NestedEnumDomainNullableFilter | No |
_max | NestedEnumDomainNullableFilter | No |
Name | Type | Nullable |
---|---|---|
equals | MriStatus | EnumMriStatusFieldRefInput | No |
in | MriStatus[] | ListEnumMriStatusFieldRefInput | No |
notIn | MriStatus[] | ListEnumMriStatusFieldRefInput | No |
not | MriStatus | NestedEnumMriStatusWithAggregatesFilter | No |
_count | NestedIntFilter | No |
_min | NestedEnumMriStatusFilter | No |
_max | NestedEnumMriStatusFilter | No |
Name | Type | Nullable |
---|---|---|
every | AssigneeDocsWhereInput | No |
some | AssigneeDocsWhereInput | No |
none | AssigneeDocsWhereInput | No |
Name | Type | Nullable |
---|---|---|
is | AssigneeInfosWhereInput | Null | Yes |
isNot | AssigneeInfosWhereInput | Null | Yes |
Name | Type | Nullable |
---|---|---|
every | StudyAssigneeWhereInput | No |
some | StudyAssigneeWhereInput | No |
none | StudyAssigneeWhereInput | No |
Name | Type | Nullable |
---|---|---|
_count | SortOrder | No |
Name | Type | Nullable |
---|---|---|
_count | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
nbApplications | SortOrder | No |
peopleId | SortOrder | No |
Name | Type | Nullable |
---|---|---|
nbApplications | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
nbApplications | SortOrder | No |
peopleId | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
nbApplications | SortOrder | No |
peopleId | SortOrder | No |
Name | Type | Nullable |
---|---|---|
nbApplications | SortOrder | No |
Name | Type | Nullable |
---|---|---|
is | AssigneeWhereInput | No |
isNot | AssigneeWhereInput | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
assigneeId | SortOrder | No |
age | SortOrder | No |
promotion | SortOrder | No |
hasScholarship | SortOrder | No |
oldJet | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
assigneeId | SortOrder | No |
age | SortOrder | No |
promotion | SortOrder | No |
hasScholarship | SortOrder | No |
oldJet | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
assigneeId | SortOrder | No |
age | SortOrder | No |
promotion | SortOrder | No |
hasScholarship | SortOrder | No |
oldJet | SortOrder | No |
Name | Type | Nullable |
---|---|---|
is | DocumentWhereInput | No |
isNot | DocumentWhereInput | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
assigneeId | SortOrder | No |
cniId | SortOrder | No |
socialSecurityId | SortOrder | No |
studentCardId | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
assigneeId | SortOrder | No |
cniId | SortOrder | No |
socialSecurityId | SortOrder | No |
studentCardId | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
assigneeId | SortOrder | No |
cniId | SortOrder | No |
socialSecurityId | SortOrder | No |
studentCardId | SortOrder | No |
Name | Type | Nullable |
---|---|---|
is | FormInterviewsWhereInput | No |
isNot | FormInterviewsWhereInput | No |
Name | Type | Nullable |
---|---|---|
is | MriFormWhereInput | No |
isNot | MriFormWhereInput | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
studyId | SortOrder | No |
assigneeId | SortOrder | No |
formInterviewId | SortOrder | No |
mriFormId | SortOrder | No |
selectionNotes | SortOrder | No |
taken | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
studyId | SortOrder | No |
assigneeId | SortOrder | No |
formInterviewId | SortOrder | No |
mriFormId | SortOrder | No |
selectionNotes | SortOrder | No |
taken | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
studyId | SortOrder | No |
assigneeId | SortOrder | No |
formInterviewId | SortOrder | No |
mriFormId | SortOrder | No |
selectionNotes | SortOrder | No |
taken | SortOrder | No |
Name | Type | Nullable |
---|---|---|
is | MriWhereInput | No |
isNot | MriWhereInput | No |
Name | Type | Nullable |
---|---|---|
is | StudyAssigneeWhereInput | Null | Yes |
isNot | StudyAssigneeWhereInput | Null | Yes |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
mriId | SortOrder | No |
experience | SortOrder | No |
knowledge | SortOrder | No |
ideas | SortOrder | No |
jeExperience | SortOrder | No |
Name | Type | Nullable |
---|---|---|
jeExperience | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
mriId | SortOrder | No |
experience | SortOrder | No |
knowledge | SortOrder | No |
ideas | SortOrder | No |
jeExperience | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
mriId | SortOrder | No |
experience | SortOrder | No |
knowledge | SortOrder | No |
ideas | SortOrder | No |
jeExperience | SortOrder | No |
Name | Type | Nullable |
---|---|---|
jeExperience | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
available | SortOrder | No |
approach | SortOrder | No |
courses | SortOrder | No |
starS | SortOrder | No |
starT | SortOrder | No |
starA | SortOrder | No |
starR | SortOrder | No |
motivation | SortOrder | No |
cdpRequirements | SortOrder | No |
questions | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
available | SortOrder | No |
approach | SortOrder | No |
courses | SortOrder | No |
starS | SortOrder | No |
starT | SortOrder | No |
starA | SortOrder | No |
starR | SortOrder | No |
motivation | SortOrder | No |
cdpRequirements | SortOrder | No |
questions | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
available | SortOrder | No |
approach | SortOrder | No |
courses | SortOrder | No |
starS | SortOrder | No |
starT | SortOrder | No |
starA | SortOrder | No |
starR | SortOrder | No |
motivation | SortOrder | No |
cdpRequirements | SortOrder | No |
questions | SortOrder | No |
Name | Type | Nullable |
---|---|---|
every | AdminWhereInput | No |
some | AdminWhereInput | No |
none | AdminWhereInput | No |
Name | Type | Nullable |
---|---|---|
is | StudyInfosWhereInput | No |
isNot | StudyInfosWhereInput | No |
Name | Type | Nullable |
---|---|---|
is | StudyProceedingsWhereInput | Null | Yes |
isNot | StudyProceedingsWhereInput | Null | Yes |
Name | Type | Nullable |
---|---|---|
is | MriWhereInput | Null | Yes |
isNot | MriWhereInput | Null | Yes |
Name | Type | Nullable |
---|---|---|
_count | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
informationId | SortOrder | No |
studyProceedingsId | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
informationId | SortOrder | No |
studyProceedingsId | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
informationId | SortOrder | No |
studyProceedingsId | 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 | NestedFloatFilter | No |
Name | Type | Nullable |
---|---|---|
is | StudyWhereInput | Null | Yes |
isNot | StudyWhereInput | Null | Yes |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
code | SortOrder | No |
googleFolder | SortOrder | No |
title | SortOrder | No |
applicationFee | SortOrder | No |
cc | SortOrder | No |
domains | SortOrder | No |
estimatedDuration | SortOrder | No |
deadlinePreStudy | SortOrder | No |
Name | Type | Nullable |
---|---|---|
applicationFee | SortOrder | No |
estimatedDuration | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
code | SortOrder | No |
googleFolder | SortOrder | No |
title | SortOrder | No |
applicationFee | SortOrder | No |
cc | SortOrder | No |
estimatedDuration | SortOrder | No |
deadlinePreStudy | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
code | SortOrder | No |
googleFolder | SortOrder | No |
title | SortOrder | No |
applicationFee | SortOrder | No |
cc | SortOrder | No |
estimatedDuration | SortOrder | No |
deadlinePreStudy | SortOrder | No |
Name | Type | Nullable |
---|---|---|
applicationFee | SortOrder | No |
estimatedDuration | 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 |
---|---|---|
equals | StudyProgressStep | EnumStudyProgressStepFieldRefInput | No |
in | StudyProgressStep[] | ListEnumStudyProgressStepFieldRefInput | No |
notIn | StudyProgressStep[] | ListEnumStudyProgressStepFieldRefInput | No |
not | StudyProgressStep | NestedEnumStudyProgressStepFilter | No |
Name | Type | Nullable |
---|---|---|
every | PhaseWhereInput | No |
some | PhaseWhereInput | No |
none | PhaseWhereInput | No |
Name | Type | Nullable |
---|---|---|
_count | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
studyId | SortOrder | No |
studyProcessStep | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
studyId | SortOrder | No |
studyProcessStep | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
studyId | SortOrder | No |
studyProcessStep | SortOrder | No |
Name | Type | Nullable |
---|---|---|
equals | StudyProgressStep | EnumStudyProgressStepFieldRefInput | No |
in | StudyProgressStep[] | ListEnumStudyProgressStepFieldRefInput | No |
notIn | StudyProgressStep[] | ListEnumStudyProgressStepFieldRefInput | No |
not | StudyProgressStep | NestedEnumStudyProgressStepWithAggregatesFilter | No |
_count | NestedIntFilter | No |
_min | NestedEnumStudyProgressStepFilter | No |
_max | NestedEnumStudyProgressStepFilter | No |
Name | Type | Nullable |
---|---|---|
is | DeliverableWhereInput | Null | Yes |
isNot | DeliverableWhereInput | Null | Yes |
Name | Type | Nullable |
---|---|---|
is | StudyProceedingsWhereInput | No |
isNot | StudyProceedingsWhereInput | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
jehs | SortOrder | No |
title | SortOrder | No |
unitPrice | SortOrder | No |
startDate | SortOrder | No |
endDate | SortOrder | No |
studyProceedingsId | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
jehs | SortOrder | No |
title | SortOrder | No |
unitPrice | SortOrder | No |
startDate | SortOrder | No |
endDate | SortOrder | No |
studyProceedingsId | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
jehs | SortOrder | No |
title | SortOrder | No |
unitPrice | SortOrder | No |
startDate | SortOrder | No |
endDate | SortOrder | No |
studyProceedingsId | SortOrder | No |
Name | Type | Nullable |
---|---|---|
equals | DeliverableStatus | EnumDeliverableStatusFieldRefInput | No |
in | DeliverableStatus[] | ListEnumDeliverableStatusFieldRefInput | No |
notIn | DeliverableStatus[] | ListEnumDeliverableStatusFieldRefInput | No |
not | DeliverableStatus | NestedEnumDeliverableStatusFilter | No |
Name | Type | Nullable |
---|---|---|
is | PhaseWhereInput | No |
isNot | PhaseWhereInput | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
description | SortOrder | No |
status | SortOrder | No |
phaseId | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
description | SortOrder | No |
status | SortOrder | No |
phaseId | SortOrder | No |
Name | Type | Nullable |
---|---|---|
id | SortOrder | No |
description | SortOrder | No |
status | SortOrder | No |
phaseId | SortOrder | No |
Name | Type | Nullable |
---|---|---|
equals | DeliverableStatus | EnumDeliverableStatusFieldRefInput | No |
in | DeliverableStatus[] | ListEnumDeliverableStatusFieldRefInput | No |
notIn | DeliverableStatus[] | ListEnumDeliverableStatusFieldRefInput | No |
not | DeliverableStatus | NestedEnumDeliverableStatusWithAggregatesFilter | No |
_count | NestedIntFilter | No |
_min | NestedEnumDeliverableStatusFilter | No |
_max | NestedEnumDeliverableStatusFilter | No |
Name | Type | Nullable |
---|---|---|
create | AddressCreateWithoutPersonInput | AddressUncheckedCreateWithoutPersonInput | No |
connectOrCreate | AddressCreateOrConnectWithoutPersonInput | No |
connect | AddressWhereUniqueInput | No |
Name | Type | Nullable |
---|---|---|
create | UserCreateWithoutPersonInput | UserUncheckedCreateWithoutPersonInput | No |
connectOrCreate | UserCreateOrConnectWithoutPersonInput | No |
connect | UserWhereUniqueInput | No |
Name | Type | Nullable |
---|---|---|
create | AssigneeCreateWithoutPersonInput | AssigneeUncheckedCreateWithoutPersonInput | No |
connectOrCreate | AssigneeCreateOrConnectWithoutPersonInput | No |
connect | AssigneeWhereUniqueInput | No |
Name | Type | Nullable |
---|---|---|
create | ClientCreateWithoutPersonInput | ClientUncheckedCreateWithoutPersonInput | No |
connectOrCreate | ClientCreateOrConnectWithoutPersonInput | No |
connect | ClientWhereUniqueInput | No |
Name | Type | Nullable |
---|---|---|
create | AddressCreateWithoutPersonInput | AddressUncheckedCreateWithoutPersonInput | No |
connectOrCreate | AddressCreateOrConnectWithoutPersonInput | No |
connect | AddressWhereUniqueInput | No |
Name | Type | Nullable |
---|---|---|
create | UserCreateWithoutPersonInput | UserUncheckedCreateWithoutPersonInput | No |
connectOrCreate | UserCreateOrConnectWithoutPersonInput | No |
connect | UserWhereUniqueInput | No |
Name | Type | Nullable |
---|---|---|
create | AssigneeCreateWithoutPersonInput | AssigneeUncheckedCreateWithoutPersonInput | No |
connectOrCreate | AssigneeCreateOrConnectWithoutPersonInput | No |
connect | AssigneeWhereUniqueInput | No |
Name | Type | Nullable |
---|---|---|
create | ClientCreateWithoutPersonInput | ClientUncheckedCreateWithoutPersonInput | No |
connectOrCreate | ClientCreateOrConnectWithoutPersonInput | No |
connect | ClientWhereUniqueInput | No |
Name | Type | Nullable |
---|---|---|
set | String | No |
Name | Type | Nullable |
---|---|---|
set | String | Null | Yes |
Name | Type | Nullable |
---|---|---|
create | AddressCreateWithoutPersonInput | AddressUncheckedCreateWithoutPersonInput | No |
connectOrCreate | AddressCreateOrConnectWithoutPersonInput | No |
upsert | AddressUpsertWithoutPersonInput | No |
disconnect | Boolean | AddressWhereInput | No |
delete | Boolean | AddressWhereInput | No |
connect | AddressWhereUniqueInput | No |
update | AddressUpdateToOneWithWhereWithoutPersonInput | AddressUpdateWithoutPersonInput | AddressUncheckedUpdateWithoutPersonInput | No |
Name | Type | Nullable |
---|---|---|
create | UserCreateWithoutPersonInput | UserUncheckedCreateWithoutPersonInput | No |
connectOrCreate | UserCreateOrConnectWithoutPersonInput | No |
upsert | UserUpsertWithoutPersonInput | No |
disconnect | Boolean | UserWhereInput | No |
delete | Boolean | UserWhereInput | No |
connect | UserWhereUniqueInput | No |
update | UserUpdateToOneWithWhereWithoutPersonInput | UserUpdateWithoutPersonInput | UserUncheckedUpdateWithoutPersonInput | No |
Name | Type | Nullable |
---|---|---|
create | AssigneeCreateWithoutPersonInput | AssigneeUncheckedCreateWithoutPersonInput | No |
connectOrCreate | AssigneeCreateOrConnectWithoutPersonInput | No |
upsert | AssigneeUpsertWithoutPersonInput | No |
disconnect | Boolean | AssigneeWhereInput | No |
delete | Boolean | AssigneeWhereInput | No |
connect | AssigneeWhereUniqueInput | No |
update | AssigneeUpdateToOneWithWhereWithoutPersonInput | AssigneeUpdateWithoutPersonInput | AssigneeUncheckedUpdateWithoutPersonInput | No |
Name | Type | Nullable |
---|---|---|
create | ClientCreateWithoutPersonInput | ClientUncheckedCreateWithoutPersonInput | No |
connectOrCreate | ClientCreateOrConnectWithoutPersonInput | No |
upsert | ClientUpsertWithoutPersonInput | No |
disconnect | Boolean | ClientWhereInput | No |
delete | Boolean | ClientWhereInput | No |
connect | ClientWhereUniqueInput | No |
update | ClientUpdateToOneWithWhereWithoutPersonInput | ClientUpdateWithoutPersonInput | ClientUncheckedUpdateWithoutPersonInput | No |
Name | Type | Nullable |
---|---|---|
create | AddressCreateWithoutPersonInput | AddressUncheckedCreateWithoutPersonInput | No |
connectOrCreate | AddressCreateOrConnectWithoutPersonInput | No |
upsert | AddressUpsertWithoutPersonInput | No |
disconnect | Boolean | AddressWhereInput | No |
delete | Boolean | AddressWhereInput | No |
connect | AddressWhereUniqueInput | No |
update | AddressUpdateToOneWithWhereWithoutPersonInput | AddressUpdateWithoutPersonInput | AddressUncheckedUpdateWithoutPersonInput | No |
Name | Type | Nullable |
---|---|---|
create | UserCreateWithoutPersonInput | UserUncheckedCreateWithoutPersonInput | No |
connectOrCreate | UserCreateOrConnectWithoutPersonInput | No |
upsert | UserUpsertWithoutPersonInput | No |
disconnect | Boolean | UserWhereInput | No |
delete | Boolean | UserWhereInput | No |
connect | UserWhereUniqueInput | No |
update | UserUpdateToOneWithWhereWithoutPersonInput | UserUpdateWithoutPersonInput | UserUncheckedUpdateWithoutPersonInput | No |
Name | Type | Nullable |
---|---|---|
create | AssigneeCreateWithoutPersonInput | AssigneeUncheckedCreateWithoutPersonInput | No |
connectOrCreate | AssigneeCreateOrConnectWithoutPersonInput | No |
upsert | AssigneeUpsertWithoutPersonInput | No |
disconnect | Boolean | AssigneeWhereInput | No |
delete | Boolean | AssigneeWhereInput | No |
connect | AssigneeWhereUniqueInput | No |
update | AssigneeUpdateToOneWithWhereWithoutPersonInput | AssigneeUpdateWithoutPersonInput | AssigneeUncheckedUpdateWithoutPersonInput | No |
Name | Type | Nullable |
---|---|---|
create | ClientCreateWithoutPersonInput | ClientUncheckedCreateWithoutPersonInput | No |
connectOrCreate | ClientCreateOrConnectWithoutPersonInput | No |
upsert | ClientUpsertWithoutPersonInput | No |
disconnect | Boolean | ClientWhereInput | No |
delete | Boolean | ClientWhereInput | No |
connect | ClientWhereUniqueInput | No |
update | ClientUpdateToOneWithWhereWithoutPersonInput | ClientUpdateWithoutPersonInput | ClientUncheckedUpdateWithoutPersonInput | No |
Name | Type | Nullable |
---|---|---|
create | PersonCreateWithoutUserInput | PersonUncheckedCreateWithoutUserInput | No |
connectOrCreate | PersonCreateOrConnectWithoutUserInput | No |
connect | PersonWhereUniqueInput | No |
Name | Type | Nullable |
---|---|---|
create | UserSettingsCreateWithoutUserInput | UserSettingsUncheckedCreateWithoutUserInput | No |
connectOrCreate | UserSettingsCreateOrConnectWithoutUserInput | No |
connect | UserSettingsWhereUniqueInput | No |
Name | Type | Nullable |
---|---|---|
create | AdminCreateWithoutUserInput | AdminUncheckedCreateWithoutUserInput | No |
connectOrCreate | AdminCreateOrConnectWithoutUserInput | No |
connect | AdminWhereUniqueInput | No |
Name | Type | Nullable |
---|---|---|
create | AdminCreateWithoutUserInput | AdminUncheckedCreateWithoutUserInput | No |
connectOrCreate | AdminCreateOrConnectWithoutUserInput | No |
connect | AdminWhereUniqueInput | No |
Name | Type | Nullable |
---|---|---|
create | PersonCreateWithoutUserInput | PersonUncheckedCreateWithoutUserInput | No |
connectOrCreate | PersonCreateOrConnectWithoutUserInput | No |
upsert | PersonUpsertWithoutUserInput | No |
connect | PersonWhereUniqueInput | No |
update | PersonUpdateToOneWithWhereWithoutUserInput | PersonUpdateWithoutUserInput | PersonUncheckedUpdateWithoutUserInput | No |
Name | Type | Nullable |
---|---|---|
create | UserSettingsCreateWithoutUserInput | UserSettingsUncheckedCreateWithoutUserInput | No |
connectOrCreate | UserSettingsCreateOrConnectWithoutUserInput | No |
upsert | UserSettingsUpsertWithoutUserInput | No |
disconnect | Boolean | UserSettingsWhereInput | No |
delete | Boolean | UserSettingsWhereInput | No |
connect | UserSettingsWhereUniqueInput | No |
update | UserSettingsUpdateToOneWithWhereWithoutUserInput | UserSettingsUpdateWithoutUserInput | UserSettingsUncheckedUpdateWithoutUserInput | No |
Name | Type | Nullable |
---|---|---|
create | AdminCreateWithoutUserInput | AdminUncheckedCreateWithoutUserInput | No |
connectOrCreate | AdminCreateOrConnectWithoutUserInput | No |
upsert | AdminUpsertWithoutUserInput | No |
disconnect | Boolean | AdminWhereInput | No |
delete | Boolean | AdminWhereInput | No |
connect | AdminWhereUniqueInput | No |
update | AdminUpdateToOneWithWhereWithoutUserInput | AdminUpdateWithoutUserInput | AdminUncheckedUpdateWithoutUserInput | No |
Name | Type | Nullable |
---|---|---|
create | AdminCreateWithoutUserInput | AdminUncheckedCreateWithoutUserInput | No |
connectOrCreate | AdminCreateOrConnectWithoutUserInput | No |
upsert | AdminUpsertWithoutUserInput | No |
disconnect | Boolean | AdminWhereInput | No |
delete | Boolean | AdminWhereInput | No |
connect | AdminWhereUniqueInput | No |
update | AdminUpdateToOneWithWhereWithoutUserInput | AdminUpdateWithoutUserInput | AdminUncheckedUpdateWithoutUserInput | No |
Name | Type | Nullable |
---|---|---|
create | UserCreateWithoutAdminInput | UserUncheckedCreateWithoutAdminInput | No |
connectOrCreate | UserCreateOrConnectWithoutAdminInput | No |
connect | UserWhereUniqueInput | No |
Name | Type | Nullable |
---|---|---|
create | StudyCreateWithoutCdpsInput | StudyCreateWithoutCdpsInput[] | StudyUncheckedCreateWithoutCdpsInput | StudyUncheckedCreateWithoutCdpsInput[] | No |
connectOrCreate | StudyCreateOrConnectWithoutCdpsInput | StudyCreateOrConnectWithoutCdpsInput[] | No |
connect | StudyWhereUniqueInput | StudyWhereUniqueInput[] | No |
Name | Type | Nullable |
---|---|---|
create | StudyCreateWithoutAuditorsInput | StudyCreateWithoutAuditorsInput[] | StudyUncheckedCreateWithoutAuditorsInput | StudyUncheckedCreateWithoutAuditorsInput[] | No |
connectOrCreate | StudyCreateOrConnectWithoutAuditorsInput | StudyCreateOrConnectWithoutAuditorsInput[] | No |
connect | StudyWhereUniqueInput | StudyWhereUniqueInput[] | No |
Name | Type | Nullable |
---|---|---|
create | StudyCreateWithoutCdpsInput | StudyCreateWithoutCdpsInput[] | StudyUncheckedCreateWithoutCdpsInput | StudyUncheckedCreateWithoutCdpsInput[] | No |
connectOrCreate | StudyCreateOrConnectWithoutCdpsInput | StudyCreateOrConnectWithoutCdpsInput[] | No |
connect | StudyWhereUniqueInput | StudyWhereUniqueInput[] | No |
Name | Type | Nullable |
---|---|---|
create | StudyCreateWithoutAuditorsInput | StudyCreateWithoutAuditorsInput[] | StudyUncheckedCreateWithoutAuditorsInput | StudyUncheckedCreateWithoutAuditorsInput[] | No |
connectOrCreate | StudyCreateOrConnectWithoutAuditorsInput | StudyCreateOrConnectWithoutAuditorsInput[] | No |
connect | StudyWhereUniqueInput | StudyWhereUniqueInput[] | No |
Name | Type | Nullable |
---|---|---|
create | UserCreateWithoutAdminInput | UserUncheckedCreateWithoutAdminInput | No |
connectOrCreate | UserCreateOrConnectWithoutAdminInput | No |
upsert | UserUpsertWithoutAdminInput | No |
connect | UserWhereUniqueInput | No |
update | UserUpdateToOneWithWhereWithoutAdminInput | UserUpdateWithoutAdminInput | UserUncheckedUpdateWithoutAdminInput | No |
Name | Type | Nullable |
---|---|---|
create | StudyCreateWithoutCdpsInput | StudyCreateWithoutCdpsInput[] | StudyUncheckedCreateWithoutCdpsInput | StudyUncheckedCreateWithoutCdpsInput[] | No |
connectOrCreate | StudyCreateOrConnectWithoutCdpsInput | StudyCreateOrConnectWithoutCdpsInput[] | No |
upsert | StudyUpsertWithWhereUniqueWithoutCdpsInput | StudyUpsertWithWhereUniqueWithoutCdpsInput[] | No |
set | StudyWhereUniqueInput | StudyWhereUniqueInput[] | No |
disconnect | StudyWhereUniqueInput | StudyWhereUniqueInput[] | No |
delete | StudyWhereUniqueInput | StudyWhereUniqueInput[] | No |
connect | StudyWhereUniqueInput | StudyWhereUniqueInput[] | No |
update | StudyUpdateWithWhereUniqueWithoutCdpsInput | StudyUpdateWithWhereUniqueWithoutCdpsInput[] | No |
updateMany | StudyUpdateManyWithWhereWithoutCdpsInput | StudyUpdateManyWithWhereWithoutCdpsInput[] | No |
deleteMany | StudyScalarWhereInput | StudyScalarWhereInput[] | No |
Name | Type | Nullable |
---|---|---|
create | StudyCreateWithoutAuditorsInput | StudyCreateWithoutAuditorsInput[] | StudyUncheckedCreateWithoutAuditorsInput | StudyUncheckedCreateWithoutAuditorsInput[] | No |
connectOrCreate | StudyCreateOrConnectWithoutAuditorsInput | StudyCreateOrConnectWithoutAuditorsInput[] | No |
upsert | StudyUpsertWithWhereUniqueWithoutAuditorsInput | StudyUpsertWithWhereUniqueWithoutAuditorsInput[] | No |
set | StudyWhereUniqueInput | StudyWhereUniqueInput[] | No |
disconnect | StudyWhereUniqueInput | StudyWhereUniqueInput[] | No |
delete | StudyWhereUniqueInput | StudyWhereUniqueInput[] | No |
connect | StudyWhereUniqueInput | StudyWhereUniqueInput[] | No |
update | StudyUpdateWithWhereUniqueWithoutAuditorsInput | StudyUpdateWithWhereUniqueWithoutAuditorsInput[] | No |
updateMany | StudyUpdateManyWithWhereWithoutAuditorsInput | StudyUpdateManyWithWhereWithoutAuditorsInput[] | No |
deleteMany | StudyScalarWhereInput | StudyScalarWhereInput[] | No |
Name | Type | Nullable |
---|---|---|
create | StudyCreateWithoutCdpsInput | StudyCreateWithoutCdpsInput[] | StudyUncheckedCreateWithoutCdpsInput | StudyUncheckedCreateWithoutCdpsInput[] | No |
connectOrCreate | StudyCreateOrConnectWithoutCdpsInput | StudyCreateOrConnectWithoutCdpsInput[] | No |
upsert | StudyUpsertWithWhereUniqueWithoutCdpsInput | StudyUpsertWithWhereUniqueWithoutCdpsInput[] | No |
set | StudyWhereUniqueInput | StudyWhereUniqueInput[] | No |
disconnect | StudyWhereUniqueInput | StudyWhereUniqueInput[] | No |
delete | StudyWhereUniqueInput | StudyWhereUniqueInput[] | No |
connect | StudyWhereUniqueInput | StudyWhereUniqueInput[] | No |
update | StudyUpdateWithWhereUniqueWithoutCdpsInput | StudyUpdateWithWhereUniqueWithoutCdpsInput[] | No |
updateMany | StudyUpdateManyWithWhereWithoutCdpsInput | StudyUpdateManyWithWhereWithoutCdpsInput[] | No |
deleteMany | StudyScalarWhereInput | StudyScalarWhereInput[] | No |
Name | Type | Nullable |
---|---|---|
create | StudyCreateWithoutAuditorsInput | StudyCreateWithoutAuditorsInput[] | StudyUncheckedCreateWithoutAuditorsInput | StudyUncheckedCreateWithoutAuditorsInput[] | No |
connectOrCreate | StudyCreateOrConnectWithoutAuditorsInput | StudyCreateOrConnectWithoutAuditorsInput[] | No |
upsert | StudyUpsertWithWhereUniqueWithoutAuditorsInput | StudyUpsertWithWhereUniqueWithoutAuditorsInput[] | No |
set | StudyWhereUniqueInput | StudyWhereUniqueInput[] | No |
disconnect | StudyWhereUniqueInput | StudyWhereUniqueInput[] | No |
delete | StudyWhereUniqueInput | StudyWhereUniqueInput[] | No |
connect | StudyWhereUniqueInput | StudyWhereUniqueInput[] | No |
update | StudyUpdateWithWhereUniqueWithoutAuditorsInput | StudyUpdateWithWhereUniqueWithoutAuditorsInput[] | No |
updateMany | StudyUpdateManyWithWhereWithoutAuditorsInput | StudyUpdateManyWithWhereWithoutAuditorsInput[] | No |
deleteMany | StudyScalarWhereInput | StudyScalarWhereInput[] | No |
Name | Type | Nullable |
---|---|---|
create | UserCreateWithoutSettingsInput | UserCreateWithoutSettingsInput[] | UserUncheckedCreateWithoutSettingsInput | UserUncheckedCreateWithoutSettingsInput[] | No |
connectOrCreate | UserCreateOrConnectWithoutSettingsInput | UserCreateOrConnectWithoutSettingsInput[] | No |
createMany | UserCreateManySettingsInputEnvelope | No |
connect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
Name | Type | Nullable |
---|---|---|
create | UserCreateWithoutSettingsInput | UserCreateWithoutSettingsInput[] | UserUncheckedCreateWithoutSettingsInput | UserUncheckedCreateWithoutSettingsInput[] | No |
connectOrCreate | UserCreateOrConnectWithoutSettingsInput | UserCreateOrConnectWithoutSettingsInput[] | No |
createMany | UserCreateManySettingsInputEnvelope | No |
connect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
Name | Type | Nullable |
---|---|---|
set | NotificationLevel | No |
Name | Type | Nullable |
---|---|---|
set | Boolean | No |
Name | Type | Nullable |
---|---|---|
create | UserCreateWithoutSettingsInput | UserCreateWithoutSettingsInput[] | UserUncheckedCreateWithoutSettingsInput | UserUncheckedCreateWithoutSettingsInput[] | No |
connectOrCreate | UserCreateOrConnectWithoutSettingsInput | UserCreateOrConnectWithoutSettingsInput[] | No |
upsert | UserUpsertWithWhereUniqueWithoutSettingsInput | UserUpsertWithWhereUniqueWithoutSettingsInput[] | No |
createMany | UserCreateManySettingsInputEnvelope | No |
set | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
disconnect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
delete | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
connect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
update | UserUpdateWithWhereUniqueWithoutSettingsInput | UserUpdateWithWhereUniqueWithoutSettingsInput[] | No |
updateMany | UserUpdateManyWithWhereWithoutSettingsInput | UserUpdateManyWithWhereWithoutSettingsInput[] | No |
deleteMany | UserScalarWhereInput | UserScalarWhereInput[] | No |
Name | Type | Nullable |
---|---|---|
create | UserCreateWithoutSettingsInput | UserCreateWithoutSettingsInput[] | UserUncheckedCreateWithoutSettingsInput | UserUncheckedCreateWithoutSettingsInput[] | No |
connectOrCreate | UserCreateOrConnectWithoutSettingsInput | UserCreateOrConnectWithoutSettingsInput[] | No |
upsert | UserUpsertWithWhereUniqueWithoutSettingsInput | UserUpsertWithWhereUniqueWithoutSettingsInput[] | No |
createMany | UserCreateManySettingsInputEnvelope | No |
set | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
disconnect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
delete | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
connect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
update | UserUpdateWithWhereUniqueWithoutSettingsInput | UserUpdateWithWhereUniqueWithoutSettingsInput[] | No |
updateMany | UserUpdateManyWithWhereWithoutSettingsInput | UserUpdateManyWithWhereWithoutSettingsInput[] | No |
deleteMany | UserScalarWhereInput | UserScalarWhereInput[] | No |
Name | Type | Nullable |
---|---|---|
create | PersonCreateWithoutAddressInput | PersonUncheckedCreateWithoutAddressInput | No |
connectOrCreate | PersonCreateOrConnectWithoutAddressInput | No |
connect | PersonWhereUniqueInput | No |
Name | Type | Nullable |
---|---|---|
create | CompanyCreateWithoutAddressInput | CompanyUncheckedCreateWithoutAddressInput | No |
connectOrCreate | CompanyCreateOrConnectWithoutAddressInput | No |
connect | CompanyWhereUniqueInput | No |
Name | Type | Nullable |
---|---|---|
create | PersonCreateWithoutAddressInput | PersonUncheckedCreateWithoutAddressInput | No |
connectOrCreate | PersonCreateOrConnectWithoutAddressInput | No |
upsert | PersonUpsertWithoutAddressInput | No |
disconnect | Boolean | PersonWhereInput | No |
delete | Boolean | PersonWhereInput | No |
connect | PersonWhereUniqueInput | No |
update | PersonUpdateToOneWithWhereWithoutAddressInput | PersonUpdateWithoutAddressInput | PersonUncheckedUpdateWithoutAddressInput | No |
Name | Type | Nullable |
---|---|---|
create | CompanyCreateWithoutAddressInput | CompanyUncheckedCreateWithoutAddressInput | No |
connectOrCreate | CompanyCreateOrConnectWithoutAddressInput | No |
upsert | CompanyUpsertWithoutAddressInput | No |
disconnect | Boolean | CompanyWhereInput | No |
delete | Boolean | CompanyWhereInput | No |
connect | CompanyWhereUniqueInput | No |
update | CompanyUpdateToOneWithWhereWithoutAddressInput | CompanyUpdateWithoutAddressInput | CompanyUncheckedUpdateWithoutAddressInput | No |
Name | Type | Nullable |
---|---|---|
create | CompanyCreateWithoutMembersInput | CompanyUncheckedCreateWithoutMembersInput | No |
connectOrCreate | CompanyCreateOrConnectWithoutMembersInput | No |
connect | CompanyWhereUniqueInput | No |
Name | Type | Nullable |
---|---|---|
create | PersonCreateWithoutClientsInput | PersonUncheckedCreateWithoutClientsInput | No |
connectOrCreate | PersonCreateOrConnectWithoutClientsInput | No |
connect | PersonWhereUniqueInput | No |
Name | Type | Nullable |
---|---|---|
create | StudyClientCreateWithoutClientInput | StudyClientCreateWithoutClientInput[] | StudyClientUncheckedCreateWithoutClientInput | StudyClientUncheckedCreateWithoutClientInput[] | No |
connectOrCreate | StudyClientCreateOrConnectWithoutClientInput | StudyClientCreateOrConnectWithoutClientInput[] | No |
createMany | StudyClientCreateManyClientInputEnvelope | No |
connect | StudyClientWhereUniqueInput | StudyClientWhereUniqueInput[] | No |
Name | Type | Nullable |
---|---|---|
create | StudyClientCreateWithoutClientInput | StudyClientCreateWithoutClientInput[] | StudyClientUncheckedCreateWithoutClientInput | StudyClientUncheckedCreateWithoutClientInput[] | No |
connectOrCreate | StudyClientCreateOrConnectWithoutClientInput | StudyClientCreateOrConnectWithoutClientInput[] | No |
createMany | StudyClientCreateManyClientInputEnvelope | No |
connect | StudyClientWhereUniqueInput | StudyClientWhereUniqueInput[] | No |
Name | Type | Nullable |
---|---|---|
create | CompanyCreateWithoutMembersInput | CompanyUncheckedCreateWithoutMembersInput | No |
connectOrCreate | CompanyCreateOrConnectWithoutMembersInput | No |
upsert | CompanyUpsertWithoutMembersInput | No |
disconnect | Boolean | CompanyWhereInput | No |
delete | Boolean | CompanyWhereInput | No |
connect | CompanyWhereUniqueInput | No |
update | CompanyUpdateToOneWithWhereWithoutMembersInput | CompanyUpdateWithoutMembersInput | CompanyUncheckedUpdateWithoutMembersInput | No |
Name | Type | Nullable |
---|---|---|
create | PersonCreateWithoutClientsInput | PersonUncheckedCreateWithoutClientsInput | No |
connectOrCreate | PersonCreateOrConnectWithoutClientsInput | No |
upsert | PersonUpsertWithoutClientsInput | No |
connect | PersonWhereUniqueInput | No |
update | PersonUpdateToOneWithWhereWithoutClientsInput | PersonUpdateWithoutClientsInput | PersonUncheckedUpdateWithoutClientsInput | No |
Name | Type | Nullable |
---|---|---|
create | StudyCreateWithoutClientsInput | StudyUncheckedCreateWithoutClientsInput | No |
connectOrCreate | StudyCreateOrConnectWithoutClientsInput | No |
connect | StudyWhereUniqueInput | No |
Name | Type | Nullable |
---|---|---|
create | ClientCreateWithoutStudyClientsInput | ClientUncheckedCreateWithoutStudyClientsInput | No |
connectOrCreate | ClientCreateOrConnectWithoutStudyClientsInput | No |
connect | ClientWhereUniqueInput | No |
Name | Type | Nullable |
---|---|---|
create | SatisfactionCreateWithoutStudyClientInput | SatisfactionUncheckedCreateWithoutStudyClientInput | No |
connectOrCreate | SatisfactionCreateOrConnectWithoutStudyClientInput | No |
connect | SatisfactionWhereUniqueInput | No |
Name | Type | Nullable |
---|---|---|
create | SatisfactionCreateWithoutStudyClientInput | SatisfactionUncheckedCreateWithoutStudyClientInput | No |
connectOrCreate | SatisfactionCreateOrConnectWithoutStudyClientInput | No |
connect | SatisfactionWhereUniqueInput | No |
Name | Type | Nullable |
---|---|---|
create | StudyCreateWithoutClientsInput | StudyUncheckedCreateWithoutClientsInput | No |
connectOrCreate | StudyCreateOrConnectWithoutClientsInput | No |
upsert | StudyUpsertWithoutClientsInput | No |
connect | StudyWhereUniqueInput | No |
update | StudyUpdateToOneWithWhereWithoutClientsInput | StudyUpdateWithoutClientsInput | StudyUncheckedUpdateWithoutClientsInput | No |
Name | Type | Nullable |
---|---|---|
create | ClientCreateWithoutStudyClientsInput | ClientUncheckedCreateWithoutStudyClientsInput | No |
connectOrCreate | ClientCreateOrConnectWithoutStudyClientsInput | No |
upsert | ClientUpsertWithoutStudyClientsInput | No |
connect | ClientWhereUniqueInput | No |
update | ClientUpdateToOneWithWhereWithoutStudyClientsInput | ClientUpdateWithoutStudyClientsInput | ClientUncheckedUpdateWithoutStudyClientsInput | No |
Name | Type | Nullable |
---|---|---|
create | SatisfactionCreateWithoutStudyClientInput | SatisfactionUncheckedCreateWithoutStudyClientInput | No |
connectOrCreate | SatisfactionCreateOrConnectWithoutStudyClientInput | No |
upsert | SatisfactionUpsertWithoutStudyClientInput | No |
disconnect | Boolean | SatisfactionWhereInput | No |
delete | Boolean | SatisfactionWhereInput | No |
connect | SatisfactionWhereUniqueInput | No |
update | SatisfactionUpdateToOneWithWhereWithoutStudyClientInput | SatisfactionUpdateWithoutStudyClientInput | SatisfactionUncheckedUpdateWithoutStudyClientInput | No |
Name | Type | Nullable |
---|---|---|
create | SatisfactionCreateWithoutStudyClientInput | SatisfactionUncheckedCreateWithoutStudyClientInput | No |
connectOrCreate | SatisfactionCreateOrConnectWithoutStudyClientInput | No |
upsert | SatisfactionUpsertWithoutStudyClientInput | No |
disconnect | Boolean | SatisfactionWhereInput | No |
delete | Boolean | SatisfactionWhereInput | No |
connect | SatisfactionWhereUniqueInput | No |
update | SatisfactionUpdateToOneWithWhereWithoutStudyClientInput | SatisfactionUpdateWithoutStudyClientInput | SatisfactionUncheckedUpdateWithoutStudyClientInput | No |
Name | Type | Nullable |
---|---|---|
create | StudyClientCreateWithoutSatisfactionInput | StudyClientUncheckedCreateWithoutSatisfactionInput | No |
connectOrCreate | StudyClientCreateOrConnectWithoutSatisfactionInput | No |
connect | StudyClientWhereUniqueInput | No |
Name | Type | Nullable |
---|---|---|
create | StudyCreateWithoutSatisfactionInput | StudyUncheckedCreateWithoutSatisfactionInput | No |
connectOrCreate | StudyCreateOrConnectWithoutSatisfactionInput | No |
connect | StudyWhereUniqueInput | No |
Name | Type | Nullable |
---|---|---|
set | Int | No |
increment | Int | No |
decrement | Int | No |
multiply | Int | No |
divide | Int | No |
Name | Type | Nullable |
---|---|---|
create | StudyClientCreateWithoutSatisfactionInput | StudyClientUncheckedCreateWithoutSatisfactionInput | No |
connectOrCreate | StudyClientCreateOrConnectWithoutSatisfactionInput | No |
upsert | StudyClientUpsertWithoutSatisfactionInput | No |
connect | StudyClientWhereUniqueInput | No |
update | StudyClientUpdateToOneWithWhereWithoutSatisfactionInput | StudyClientUpdateWithoutSatisfactionInput | StudyClientUncheckedUpdateWithoutSatisfactionInput | No |
Name | Type | Nullable |
---|---|---|
create | StudyCreateWithoutSatisfactionInput | StudyUncheckedCreateWithoutSatisfactionInput | No |
connectOrCreate | StudyCreateOrConnectWithoutSatisfactionInput | No |
upsert | StudyUpsertWithoutSatisfactionInput | No |
connect | StudyWhereUniqueInput | No |
update | StudyUpdateToOneWithWhereWithoutSatisfactionInput | StudyUpdateWithoutSatisfactionInput | StudyUncheckedUpdateWithoutSatisfactionInput | No |
Name | Type | Nullable |
---|---|---|
create | AddressCreateWithoutCompanyInput | AddressUncheckedCreateWithoutCompanyInput | No |
connectOrCreate | AddressCreateOrConnectWithoutCompanyInput | No |
connect | AddressWhereUniqueInput | No |
Name | Type | Nullable |
---|---|---|
create | CompanyInfosCreateWithoutCompanyInput | CompanyInfosUncheckedCreateWithoutCompanyInput | No |
connectOrCreate | CompanyInfosCreateOrConnectWithoutCompanyInput | No |
connect | CompanyInfosWhereUniqueInput | No |
Name | Type | Nullable |
---|---|---|
create | ClientCreateWithoutCompanyInput | ClientCreateWithoutCompanyInput[] | ClientUncheckedCreateWithoutCompanyInput | ClientUncheckedCreateWithoutCompanyInput[] | No |
connectOrCreate | ClientCreateOrConnectWithoutCompanyInput | ClientCreateOrConnectWithoutCompanyInput[] | No |
createMany | ClientCreateManyCompanyInputEnvelope | No |
connect | ClientWhereUniqueInput | ClientWhereUniqueInput[] | No |
Name | Type | Nullable |
---|---|---|
create | AddressCreateWithoutCompanyInput | AddressUncheckedCreateWithoutCompanyInput | No |
connectOrCreate | AddressCreateOrConnectWithoutCompanyInput | No |
connect | AddressWhereUniqueInput | No |
Name | Type | Nullable |
---|---|---|
create | ClientCreateWithoutCompanyInput | ClientCreateWithoutCompanyInput[] | ClientUncheckedCreateWithoutCompanyInput | ClientUncheckedCreateWithoutCompanyInput[] | No |
connectOrCreate | ClientCreateOrConnectWithoutCompanyInput | ClientCreateOrConnectWithoutCompanyInput[] | No |
createMany | ClientCreateManyCompanyInputEnvelope | No |
connect | ClientWhereUniqueInput | ClientWhereUniqueInput[] | No |
Name | Type | Nullable |
---|---|---|
create | AddressCreateWithoutCompanyInput | AddressUncheckedCreateWithoutCompanyInput | No |
connectOrCreate | AddressCreateOrConnectWithoutCompanyInput | No |
upsert | AddressUpsertWithoutCompanyInput | No |
disconnect | Boolean | AddressWhereInput | No |
delete | Boolean | AddressWhereInput | No |
connect | AddressWhereUniqueInput | No |
update | AddressUpdateToOneWithWhereWithoutCompanyInput | AddressUpdateWithoutCompanyInput | AddressUncheckedUpdateWithoutCompanyInput | No |
Name | Type | Nullable |
---|---|---|
create | CompanyInfosCreateWithoutCompanyInput | CompanyInfosUncheckedCreateWithoutCompanyInput | No |
connectOrCreate | CompanyInfosCreateOrConnectWithoutCompanyInput | No |
upsert | CompanyInfosUpsertWithoutCompanyInput | No |
connect | CompanyInfosWhereUniqueInput | No |
update | CompanyInfosUpdateToOneWithWhereWithoutCompanyInput | CompanyInfosUpdateWithoutCompanyInput | CompanyInfosUncheckedUpdateWithoutCompanyInput | No |
Name | Type | Nullable |
---|---|---|
create | ClientCreateWithoutCompanyInput | ClientCreateWithoutCompanyInput[] | ClientUncheckedCreateWithoutCompanyInput | ClientUncheckedCreateWithoutCompanyInput[] | No |
connectOrCreate | ClientCreateOrConnectWithoutCompanyInput | ClientCreateOrConnectWithoutCompanyInput[] | No |
upsert | ClientUpsertWithWhereUniqueWithoutCompanyInput | ClientUpsertWithWhereUniqueWithoutCompanyInput[] | No |
createMany | ClientCreateManyCompanyInputEnvelope | No |
set | ClientWhereUniqueInput | ClientWhereUniqueInput[] | No |
disconnect | ClientWhereUniqueInput | ClientWhereUniqueInput[] | No |
delete | ClientWhereUniqueInput | ClientWhereUniqueInput[] | No |
connect | ClientWhereUniqueInput | ClientWhereUniqueInput[] | No |
update | ClientUpdateWithWhereUniqueWithoutCompanyInput | ClientUpdateWithWhereUniqueWithoutCompanyInput[] | No |
updateMany | ClientUpdateManyWithWhereWithoutCompanyInput | ClientUpdateManyWithWhereWithoutCompanyInput[] | No |
deleteMany | ClientScalarWhereInput | ClientScalarWhereInput[] | No |
Name | Type | Nullable |
---|---|---|
create | AddressCreateWithoutCompanyInput | AddressUncheckedCreateWithoutCompanyInput | No |
connectOrCreate | AddressCreateOrConnectWithoutCompanyInput | No |
upsert | AddressUpsertWithoutCompanyInput | No |
disconnect | Boolean | AddressWhereInput | No |
delete | Boolean | AddressWhereInput | No |
connect | AddressWhereUniqueInput | No |
update | AddressUpdateToOneWithWhereWithoutCompanyInput | AddressUpdateWithoutCompanyInput | AddressUncheckedUpdateWithoutCompanyInput | No |
Name | Type | Nullable |
---|---|---|
create | ClientCreateWithoutCompanyInput | ClientCreateWithoutCompanyInput[] | ClientUncheckedCreateWithoutCompanyInput | ClientUncheckedCreateWithoutCompanyInput[] | No |
connectOrCreate | ClientCreateOrConnectWithoutCompanyInput | ClientCreateOrConnectWithoutCompanyInput[] | No |
upsert | ClientUpsertWithWhereUniqueWithoutCompanyInput | ClientUpsertWithWhereUniqueWithoutCompanyInput[] | No |
createMany | ClientCreateManyCompanyInputEnvelope | No |
set | ClientWhereUniqueInput | ClientWhereUniqueInput[] | No |
disconnect | ClientWhereUniqueInput | ClientWhereUniqueInput[] | No |
delete | ClientWhereUniqueInput | ClientWhereUniqueInput[] | No |
connect | ClientWhereUniqueInput | ClientWhereUniqueInput[] | No |
update | ClientUpdateWithWhereUniqueWithoutCompanyInput | ClientUpdateWithWhereUniqueWithoutCompanyInput[] | No |
updateMany | ClientUpdateManyWithWhereWithoutCompanyInput | ClientUpdateManyWithWhereWithoutCompanyInput[] | No |
deleteMany | ClientScalarWhereInput | ClientScalarWhereInput[] | No |
Name | Type | Nullable |
---|---|---|
set | Domain[] | No |
Name | Type | Nullable |
---|---|---|
create | CompanyCreateWithoutCompanyInfosInput | CompanyCreateWithoutCompanyInfosInput[] | CompanyUncheckedCreateWithoutCompanyInfosInput | CompanyUncheckedCreateWithoutCompanyInfosInput[] | No |
connectOrCreate | CompanyCreateOrConnectWithoutCompanyInfosInput | CompanyCreateOrConnectWithoutCompanyInfosInput[] | No |
createMany | CompanyCreateManyCompanyInfosInputEnvelope | No |
connect | CompanyWhereUniqueInput | CompanyWhereUniqueInput[] | No |
Name | Type | Nullable |
---|---|---|
create | CompanyCreateWithoutCompanyInfosInput | CompanyCreateWithoutCompanyInfosInput[] | CompanyUncheckedCreateWithoutCompanyInfosInput | CompanyUncheckedCreateWithoutCompanyInfosInput[] | No |
connectOrCreate | CompanyCreateOrConnectWithoutCompanyInfosInput | CompanyCreateOrConnectWithoutCompanyInfosInput[] | No |
createMany | CompanyCreateManyCompanyInfosInputEnvelope | No |
connect | CompanyWhereUniqueInput | CompanyWhereUniqueInput[] | No |
Name | Type | Nullable |
---|---|---|
set | Int | Null | Yes |
increment | Int | No |
decrement | Int | No |
multiply | Int | No |
divide | Int | No |
Name | Type | Nullable |
---|---|---|
set | CompanySize | Null | Yes |
Name | Type | Nullable |
---|---|---|
create | StatusCreateWithoutDocumentInput | StatusUncheckedCreateWithoutDocumentInput | No |
connectOrCreate | StatusCreateOrConnectWithoutDocumentInput | No |
connect | StatusWhereUniqueInput | No |
Name | Type | Nullable |
---|---|---|
create | AssigneeDocsCreateWithoutCniInput | AssigneeDocsUncheckedCreateWithoutCniInput | No |
connectOrCreate | AssigneeDocsCreateOrConnectWithoutCniInput | No |
connect | AssigneeDocsWhereUniqueInput | No |
Name | Type | Nullable |
---|---|---|
create | AssigneeDocsCreateWithoutSocialSecurityInput | AssigneeDocsUncheckedCreateWithoutSocialSecurityInput | No |
connectOrCreate | AssigneeDocsCreateOrConnectWithoutSocialSecurityInput | No |
connect | AssigneeDocsWhereUniqueInput | No |
Name | Type | Nullable |
---|---|---|
create | AssigneeDocsCreateWithoutStudentCardInput | AssigneeDocsUncheckedCreateWithoutStudentCardInput | No |
connectOrCreate | AssigneeDocsCreateOrConnectWithoutStudentCardInput | No |
connect | AssigneeDocsWhereUniqueInput | No |
Name | Type | Nullable |
---|---|---|
create | AssigneeDocsCreateWithoutCniInput | AssigneeDocsUncheckedCreateWithoutCniInput | No |
connectOrCreate | AssigneeDocsCreateOrConnectWithoutCniInput | No |
connect | AssigneeDocsWhereUniqueInput | No |
Name | Type | Nullable |
---|---|---|
create | AssigneeDocsCreateWithoutSocialSecurityInput | AssigneeDocsUncheckedCreateWithoutSocialSecurityInput | No |
connectOrCreate | AssigneeDocsCreateOrConnectWithoutSocialSecurityInput | No |
connect | AssigneeDocsWhereUniqueInput | No |
Name | Type | Nullable |
---|---|---|
create | AssigneeDocsCreateWithoutStudentCardInput | AssigneeDocsUncheckedCreateWithoutStudentCardInput | No |
connectOrCreate | AssigneeDocsCreateOrConnectWithoutStudentCardInput | No |
connect | AssigneeDocsWhereUniqueInput | No |
Name | Type | Nullable |
---|---|---|
create | StatusCreateWithoutDocumentInput | StatusUncheckedCreateWithoutDocumentInput | No |
connectOrCreate | StatusCreateOrConnectWithoutDocumentInput | No |
upsert | StatusUpsertWithoutDocumentInput | No |
disconnect | Boolean | StatusWhereInput | No |
delete | Boolean | StatusWhereInput | No |
connect | StatusWhereUniqueInput | No |
update | StatusUpdateToOneWithWhereWithoutDocumentInput | StatusUpdateWithoutDocumentInput | StatusUncheckedUpdateWithoutDocumentInput | No |
Name | Type | Nullable |
---|---|---|
create | AssigneeDocsCreateWithoutCniInput | AssigneeDocsUncheckedCreateWithoutCniInput | No |
connectOrCreate | AssigneeDocsCreateOrConnectWithoutCniInput | No |
upsert | AssigneeDocsUpsertWithoutCniInput | No |
disconnect | Boolean | AssigneeDocsWhereInput | No |
delete | Boolean | AssigneeDocsWhereInput | No |
connect | AssigneeDocsWhereUniqueInput | No |
update | AssigneeDocsUpdateToOneWithWhereWithoutCniInput | AssigneeDocsUpdateWithoutCniInput | AssigneeDocsUncheckedUpdateWithoutCniInput | No |
Name | Type | Nullable |
---|---|---|
create | AssigneeDocsCreateWithoutSocialSecurityInput | AssigneeDocsUncheckedCreateWithoutSocialSecurityInput | No |
connectOrCreate | AssigneeDocsCreateOrConnectWithoutSocialSecurityInput | No |
upsert | AssigneeDocsUpsertWithoutSocialSecurityInput | No |
disconnect | Boolean | AssigneeDocsWhereInput | No |
delete | Boolean | AssigneeDocsWhereInput | No |
connect | AssigneeDocsWhereUniqueInput | No |
update | AssigneeDocsUpdateToOneWithWhereWithoutSocialSecurityInput | AssigneeDocsUpdateWithoutSocialSecurityInput | AssigneeDocsUncheckedUpdateWithoutSocialSecurityInput | No |
Name | Type | Nullable |
---|---|---|
create | AssigneeDocsCreateWithoutStudentCardInput | AssigneeDocsUncheckedCreateWithoutStudentCardInput | No |
connectOrCreate | AssigneeDocsCreateOrConnectWithoutStudentCardInput | No |
upsert | AssigneeDocsUpsertWithoutStudentCardInput | No |
disconnect | Boolean | AssigneeDocsWhereInput | No |
delete | Boolean | AssigneeDocsWhereInput | No |
connect | AssigneeDocsWhereUniqueInput | No |
update | AssigneeDocsUpdateToOneWithWhereWithoutStudentCardInput | AssigneeDocsUpdateWithoutStudentCardInput | AssigneeDocsUncheckedUpdateWithoutStudentCardInput | No |
Name | Type | Nullable |
---|---|---|
create | AssigneeDocsCreateWithoutCniInput | AssigneeDocsUncheckedCreateWithoutCniInput | No |
connectOrCreate | AssigneeDocsCreateOrConnectWithoutCniInput | No |
upsert | AssigneeDocsUpsertWithoutCniInput | No |
disconnect | Boolean | AssigneeDocsWhereInput | No |
delete | Boolean | AssigneeDocsWhereInput | No |
connect | AssigneeDocsWhereUniqueInput | No |
update | AssigneeDocsUpdateToOneWithWhereWithoutCniInput | AssigneeDocsUpdateWithoutCniInput | AssigneeDocsUncheckedUpdateWithoutCniInput | No |
Name | Type | Nullable |
---|---|---|
create | AssigneeDocsCreateWithoutSocialSecurityInput | AssigneeDocsUncheckedCreateWithoutSocialSecurityInput | No |
connectOrCreate | AssigneeDocsCreateOrConnectWithoutSocialSecurityInput | No |
upsert | AssigneeDocsUpsertWithoutSocialSecurityInput | No |
disconnect | Boolean | AssigneeDocsWhereInput | No |
delete | Boolean | AssigneeDocsWhereInput | No |
connect | AssigneeDocsWhereUniqueInput | No |
update | AssigneeDocsUpdateToOneWithWhereWithoutSocialSecurityInput | AssigneeDocsUpdateWithoutSocialSecurityInput | AssigneeDocsUncheckedUpdateWithoutSocialSecurityInput | No |
Name | Type | Nullable |
---|---|---|
create | AssigneeDocsCreateWithoutStudentCardInput | AssigneeDocsUncheckedCreateWithoutStudentCardInput | No |
connectOrCreate | AssigneeDocsCreateOrConnectWithoutStudentCardInput | No |
upsert | AssigneeDocsUpsertWithoutStudentCardInput | No |
disconnect | Boolean | AssigneeDocsWhereInput | No |
delete | Boolean | AssigneeDocsWhereInput | No |
connect | AssigneeDocsWhereUniqueInput | No |
update | AssigneeDocsUpdateToOneWithWhereWithoutStudentCardInput | AssigneeDocsUpdateWithoutStudentCardInput | AssigneeDocsUncheckedUpdateWithoutStudentCardInput | No |
Name | Type | Nullable |
---|---|---|
create | DocumentCreateWithoutStatusInput | DocumentCreateWithoutStatusInput[] | DocumentUncheckedCreateWithoutStatusInput | DocumentUncheckedCreateWithoutStatusInput[] | No |
connectOrCreate | DocumentCreateOrConnectWithoutStatusInput | DocumentCreateOrConnectWithoutStatusInput[] | No |
createMany | DocumentCreateManyStatusInputEnvelope | No |
connect | DocumentWhereUniqueInput | DocumentWhereUniqueInput[] | No |
Name | Type | Nullable |
---|---|---|
create | DocumentCreateWithoutStatusInput | DocumentCreateWithoutStatusInput[] | DocumentUncheckedCreateWithoutStatusInput | DocumentUncheckedCreateWithoutStatusInput[] | No |
connectOrCreate | DocumentCreateOrConnectWithoutStatusInput | DocumentCreateOrConnectWithoutStatusInput[] | No |
createMany | DocumentCreateManyStatusInputEnvelope | No |
connect | DocumentWhereUniqueInput | DocumentWhereUniqueInput[] | No |
Name | Type | Nullable |
---|---|---|
set | DateTime | Null | Yes |
Name | Type | Nullable |
---|---|---|
create | StudyCreateWithoutMriInput | StudyUncheckedCreateWithoutMriInput | No |
connectOrCreate | StudyCreateOrConnectWithoutMriInput | No |
connect | StudyWhereUniqueInput | No |
Name | Type | Nullable |
---|---|---|
create | MriFormCreateWithoutMriInput | MriFormCreateWithoutMriInput[] | MriFormUncheckedCreateWithoutMriInput | MriFormUncheckedCreateWithoutMriInput[] | No |
connectOrCreate | MriFormCreateOrConnectWithoutMriInput | MriFormCreateOrConnectWithoutMriInput[] | No |
createMany | MriFormCreateManyMriInputEnvelope | No |
connect | MriFormWhereUniqueInput | MriFormWhereUniqueInput[] | No |
Name | Type | Nullable |
---|---|---|
create | MriFormCreateWithoutMriInput | MriFormCreateWithoutMriInput[] | MriFormUncheckedCreateWithoutMriInput | MriFormUncheckedCreateWithoutMriInput[] | No |
connectOrCreate | MriFormCreateOrConnectWithoutMriInput | MriFormCreateOrConnectWithoutMriInput[] | No |
createMany | MriFormCreateManyMriInputEnvelope | No |
connect | MriFormWhereUniqueInput | MriFormWhereUniqueInput[] | No |
Name | Type | Nullable |
---|---|---|
set | Level | Null | Yes |
Name | Type | Nullable |
---|---|---|
set | Domain | Null | Yes |
Name | Type | Nullable |
---|---|---|
set | MriStatus | No |
Name | Type | Nullable |
---|---|---|
create | StudyCreateWithoutMriInput | StudyUncheckedCreateWithoutMriInput | No |
connectOrCreate | StudyCreateOrConnectWithoutMriInput | No |
upsert | StudyUpsertWithoutMriInput | No |
connect | StudyWhereUniqueInput | No |
update | StudyUpdateToOneWithWhereWithoutMriInput | StudyUpdateWithoutMriInput | StudyUncheckedUpdateWithoutMriInput | No |
Name | Type | Nullable |
---|---|---|
create | MriFormCreateWithoutMriInput | MriFormCreateWithoutMriInput[] | MriFormUncheckedCreateWithoutMriInput | MriFormUncheckedCreateWithoutMriInput[] | No |
connectOrCreate | MriFormCreateOrConnectWithoutMriInput | MriFormCreateOrConnectWithoutMriInput[] | No |
upsert | MriFormUpsertWithWhereUniqueWithoutMriInput | MriFormUpsertWithWhereUniqueWithoutMriInput[] | No |
createMany | MriFormCreateManyMriInputEnvelope | No |
set | MriFormWhereUniqueInput | MriFormWhereUniqueInput[] | No |
disconnect | MriFormWhereUniqueInput | MriFormWhereUniqueInput[] | No |
delete | MriFormWhereUniqueInput | MriFormWhereUniqueInput[] | No |
connect | MriFormWhereUniqueInput | MriFormWhereUniqueInput[] | No |
update | MriFormUpdateWithWhereUniqueWithoutMriInput | MriFormUpdateWithWhereUniqueWithoutMriInput[] | No |
updateMany | MriFormUpdateManyWithWhereWithoutMriInput | MriFormUpdateManyWithWhereWithoutMriInput[] | No |
deleteMany | MriFormScalarWhereInput | MriFormScalarWhereInput[] | No |
Name | Type | Nullable |
---|---|---|
create | MriFormCreateWithoutMriInput | MriFormCreateWithoutMriInput[] | MriFormUncheckedCreateWithoutMriInput | MriFormUncheckedCreateWithoutMriInput[] | No |
connectOrCreate | MriFormCreateOrConnectWithoutMriInput | MriFormCreateOrConnectWithoutMriInput[] | No |
upsert | MriFormUpsertWithWhereUniqueWithoutMriInput | MriFormUpsertWithWhereUniqueWithoutMriInput[] | No |
createMany | MriFormCreateManyMriInputEnvelope | No |
set | MriFormWhereUniqueInput | MriFormWhereUniqueInput[] | No |
disconnect | MriFormWhereUniqueInput | MriFormWhereUniqueInput[] | No |
delete | MriFormWhereUniqueInput | MriFormWhereUniqueInput[] | No |
connect | MriFormWhereUniqueInput | MriFormWhereUniqueInput[] | No |
update | MriFormUpdateWithWhereUniqueWithoutMriInput | MriFormUpdateWithWhereUniqueWithoutMriInput[] | No |
updateMany | MriFormUpdateManyWithWhereWithoutMriInput | MriFormUpdateManyWithWhereWithoutMriInput[] | No |
deleteMany | MriFormScalarWhereInput | MriFormScalarWhereInput[] | No |
Name | Type | Nullable |
---|---|---|
create | AssigneeInfosCreateWithoutAssigneeInput | AssigneeInfosUncheckedCreateWithoutAssigneeInput | No |
connectOrCreate | AssigneeInfosCreateOrConnectWithoutAssigneeInput | No |
connect | AssigneeInfosWhereUniqueInput | No |
Name | Type | Nullable |
---|---|---|
create | PersonCreateWithoutAssigneeInput | PersonUncheckedCreateWithoutAssigneeInput | No |
connectOrCreate | PersonCreateOrConnectWithoutAssigneeInput | No |
connect | PersonWhereUniqueInput | No |
Name | Type | Nullable |
---|---|---|
create | AssigneeInfosCreateWithoutAssigneeInput | AssigneeInfosUncheckedCreateWithoutAssigneeInput | No |
connectOrCreate | AssigneeInfosCreateOrConnectWithoutAssigneeInput | No |
connect | AssigneeInfosWhereUniqueInput | No |
Name | Type | Nullable |
---|---|---|
create | AssigneeInfosCreateWithoutAssigneeInput | AssigneeInfosUncheckedCreateWithoutAssigneeInput | No |
connectOrCreate | AssigneeInfosCreateOrConnectWithoutAssigneeInput | No |
upsert | AssigneeInfosUpsertWithoutAssigneeInput | No |
disconnect | Boolean | AssigneeInfosWhereInput | No |
delete | Boolean | AssigneeInfosWhereInput | No |
connect | AssigneeInfosWhereUniqueInput | No |
update | AssigneeInfosUpdateToOneWithWhereWithoutAssigneeInput | AssigneeInfosUpdateWithoutAssigneeInput | AssigneeInfosUncheckedUpdateWithoutAssigneeInput | No |
Name | Type | Nullable |
---|---|---|
create | PersonCreateWithoutAssigneeInput | PersonUncheckedCreateWithoutAssigneeInput | No |
connectOrCreate | PersonCreateOrConnectWithoutAssigneeInput | No |
upsert | PersonUpsertWithoutAssigneeInput | No |
connect | PersonWhereUniqueInput | No |
update | PersonUpdateToOneWithWhereWithoutAssigneeInput | PersonUpdateWithoutAssigneeInput | PersonUncheckedUpdateWithoutAssigneeInput | No |
Name | Type | Nullable |
---|---|---|
create | AssigneeInfosCreateWithoutAssigneeInput | AssigneeInfosUncheckedCreateWithoutAssigneeInput | No |
connectOrCreate | AssigneeInfosCreateOrConnectWithoutAssigneeInput | No |
upsert | AssigneeInfosUpsertWithoutAssigneeInput | No |
disconnect | Boolean | AssigneeInfosWhereInput | No |
delete | Boolean | AssigneeInfosWhereInput | No |
connect | AssigneeInfosWhereUniqueInput | No |
update | AssigneeInfosUpdateToOneWithWhereWithoutAssigneeInput | AssigneeInfosUpdateWithoutAssigneeInput | AssigneeInfosUncheckedUpdateWithoutAssigneeInput | No |
Name | Type | Nullable |
---|---|---|
create | AssigneeCreateWithoutInformationInput | AssigneeUncheckedCreateWithoutInformationInput | No |
connectOrCreate | AssigneeCreateOrConnectWithoutInformationInput | No |
connect | AssigneeWhereUniqueInput | No |
Name | Type | Nullable |
---|---|---|
create | AssigneeCreateWithoutInformationInput | AssigneeUncheckedCreateWithoutInformationInput | No |
connectOrCreate | AssigneeCreateOrConnectWithoutInformationInput | No |
upsert | AssigneeUpsertWithoutInformationInput | No |
connect | AssigneeWhereUniqueInput | No |
update | AssigneeUpdateToOneWithWhereWithoutInformationInput | AssigneeUpdateWithoutInformationInput | AssigneeUncheckedUpdateWithoutInformationInput | No |
Name | Type | Nullable |
---|---|---|
create | AssigneeCreateWithoutDocsInput | AssigneeUncheckedCreateWithoutDocsInput | No |
connectOrCreate | AssigneeCreateOrConnectWithoutDocsInput | No |
connect | AssigneeWhereUniqueInput | No |
Name | Type | Nullable |
---|---|---|
create | DocumentCreateWithoutAssigneeCniInput | DocumentUncheckedCreateWithoutAssigneeCniInput | No |
connectOrCreate | DocumentCreateOrConnectWithoutAssigneeCniInput | No |
connect | DocumentWhereUniqueInput | No |
Name | Type | Nullable |
---|---|---|
create | DocumentCreateWithoutAssigneeSocialSecurityInput | DocumentUncheckedCreateWithoutAssigneeSocialSecurityInput | No |
connectOrCreate | DocumentCreateOrConnectWithoutAssigneeSocialSecurityInput | No |
connect | DocumentWhereUniqueInput | No |
Name | Type | Nullable |
---|---|---|
create | DocumentCreateWithoutAssigneeStudentCardInput | DocumentUncheckedCreateWithoutAssigneeStudentCardInput | No |
connectOrCreate | DocumentCreateOrConnectWithoutAssigneeStudentCardInput | No |
connect | DocumentWhereUniqueInput | No |
Name | Type | Nullable |
---|---|---|
create | AssigneeCreateWithoutDocsInput | AssigneeUncheckedCreateWithoutDocsInput | No |
connectOrCreate | AssigneeCreateOrConnectWithoutDocsInput | No |
upsert | AssigneeUpsertWithoutDocsInput | No |
connect | AssigneeWhereUniqueInput | No |
update | AssigneeUpdateToOneWithWhereWithoutDocsInput | AssigneeUpdateWithoutDocsInput | AssigneeUncheckedUpdateWithoutDocsInput | No |
Name | Type | Nullable |
---|---|---|
create | DocumentCreateWithoutAssigneeCniInput | DocumentUncheckedCreateWithoutAssigneeCniInput | No |
connectOrCreate | DocumentCreateOrConnectWithoutAssigneeCniInput | No |
upsert | DocumentUpsertWithoutAssigneeCniInput | No |
connect | DocumentWhereUniqueInput | No |
update | DocumentUpdateToOneWithWhereWithoutAssigneeCniInput | DocumentUpdateWithoutAssigneeCniInput | DocumentUncheckedUpdateWithoutAssigneeCniInput | No |
Name | Type | Nullable |
---|---|---|
create | StudyCreateWithoutStudyAssigneesInput | StudyUncheckedCreateWithoutStudyAssigneesInput | No |
connectOrCreate | StudyCreateOrConnectWithoutStudyAssigneesInput | No |
connect | StudyWhereUniqueInput | No |
Name | Type | Nullable |
---|---|---|
create | AssigneeCreateWithoutStudyAssignInput | AssigneeUncheckedCreateWithoutStudyAssignInput | No |
connectOrCreate | AssigneeCreateOrConnectWithoutStudyAssignInput | No |
connect | AssigneeWhereUniqueInput | No |
Name | Type | Nullable |
---|---|---|
create | FormInterviewsCreateWithoutStudyAssigneesInput | FormInterviewsUncheckedCreateWithoutStudyAssigneesInput | No |
connectOrCreate | FormInterviewsCreateOrConnectWithoutStudyAssigneesInput | No |
connect | FormInterviewsWhereUniqueInput | No |
Name | Type | Nullable |
---|---|---|
create | MriFormCreateWithoutStudyAssigneesInput | MriFormUncheckedCreateWithoutStudyAssigneesInput | No |
connectOrCreate | MriFormCreateOrConnectWithoutStudyAssigneesInput | No |
connect | MriFormWhereUniqueInput | No |
Name | Type | Nullable |
---|---|---|
create | StudyCreateWithoutStudyAssigneesInput | StudyUncheckedCreateWithoutStudyAssigneesInput | No |
connectOrCreate | StudyCreateOrConnectWithoutStudyAssigneesInput | No |
upsert | StudyUpsertWithoutStudyAssigneesInput | No |
connect | StudyWhereUniqueInput | No |
update | StudyUpdateToOneWithWhereWithoutStudyAssigneesInput | StudyUpdateWithoutStudyAssigneesInput | StudyUncheckedUpdateWithoutStudyAssigneesInput | No |
Name | Type | Nullable |
---|---|---|
create | AssigneeCreateWithoutStudyAssignInput | AssigneeUncheckedCreateWithoutStudyAssignInput | No |
connectOrCreate | AssigneeCreateOrConnectWithoutStudyAssignInput | No |
upsert | AssigneeUpsertWithoutStudyAssignInput | No |
connect | AssigneeWhereUniqueInput | No |
update | AssigneeUpdateToOneWithWhereWithoutStudyAssignInput | AssigneeUpdateWithoutStudyAssignInput | AssigneeUncheckedUpdateWithoutStudyAssignInput | No |
Name | Type | Nullable |
---|---|---|
create | MriFormCreateWithoutStudyAssigneesInput | MriFormUncheckedCreateWithoutStudyAssigneesInput | No |
connectOrCreate | MriFormCreateOrConnectWithoutStudyAssigneesInput | No |
upsert | MriFormUpsertWithoutStudyAssigneesInput | No |
connect | MriFormWhereUniqueInput | No |
update | MriFormUpdateToOneWithWhereWithoutStudyAssigneesInput | MriFormUpdateWithoutStudyAssigneesInput | MriFormUncheckedUpdateWithoutStudyAssigneesInput | No |
Name | Type | Nullable |
---|---|---|
create | MriCreateWithoutFormMRIsInput | MriUncheckedCreateWithoutFormMRIsInput | No |
connectOrCreate | MriCreateOrConnectWithoutFormMRIsInput | No |
connect | MriWhereUniqueInput | No |
Name | Type | Nullable |
---|---|---|
create | StudyAssigneeCreateWithoutMriFormInput | StudyAssigneeUncheckedCreateWithoutMriFormInput | No |
connectOrCreate | StudyAssigneeCreateOrConnectWithoutMriFormInput | No |
connect | StudyAssigneeWhereUniqueInput | No |
Name | Type | Nullable |
---|---|---|
create | StudyAssigneeCreateWithoutMriFormInput | StudyAssigneeUncheckedCreateWithoutMriFormInput | No |
connectOrCreate | StudyAssigneeCreateOrConnectWithoutMriFormInput | No |
connect | StudyAssigneeWhereUniqueInput | No |
Name | Type | Nullable |
---|---|---|
create | MriCreateWithoutFormMRIsInput | MriUncheckedCreateWithoutFormMRIsInput | No |
connectOrCreate | MriCreateOrConnectWithoutFormMRIsInput | No |
upsert | MriUpsertWithoutFormMRIsInput | No |
connect | MriWhereUniqueInput | No |
update | MriUpdateToOneWithWhereWithoutFormMRIsInput | MriUpdateWithoutFormMRIsInput | MriUncheckedUpdateWithoutFormMRIsInput | No |
Name | Type | Nullable |
---|---|---|
create | StudyAssigneeCreateWithoutMriFormInput | StudyAssigneeUncheckedCreateWithoutMriFormInput | No |
connectOrCreate | StudyAssigneeCreateOrConnectWithoutMriFormInput | No |
upsert | StudyAssigneeUpsertWithoutMriFormInput | No |
disconnect | Boolean | StudyAssigneeWhereInput | No |
delete | Boolean | StudyAssigneeWhereInput | No |
connect | StudyAssigneeWhereUniqueInput | No |
update | StudyAssigneeUpdateToOneWithWhereWithoutMriFormInput | StudyAssigneeUpdateWithoutMriFormInput | StudyAssigneeUncheckedUpdateWithoutMriFormInput | No |
Name | Type | Nullable |
---|---|---|
create | StudyAssigneeCreateWithoutMriFormInput | StudyAssigneeUncheckedCreateWithoutMriFormInput | No |
connectOrCreate | StudyAssigneeCreateOrConnectWithoutMriFormInput | No |
upsert | StudyAssigneeUpsertWithoutMriFormInput | No |
disconnect | Boolean | StudyAssigneeWhereInput | No |
delete | Boolean | StudyAssigneeWhereInput | No |
connect | StudyAssigneeWhereUniqueInput | No |
update | StudyAssigneeUpdateToOneWithWhereWithoutMriFormInput | StudyAssigneeUpdateWithoutMriFormInput | StudyAssigneeUncheckedUpdateWithoutMriFormInput | No |
Name | Type | Nullable |
---|---|---|
create | StudyAssigneeCreateWithoutFormInterviewInput | StudyAssigneeUncheckedCreateWithoutFormInterviewInput | No |
connectOrCreate | StudyAssigneeCreateOrConnectWithoutFormInterviewInput | No |
connect | StudyAssigneeWhereUniqueInput | No |
Name | Type | Nullable |
---|---|---|
create | StudyAssigneeCreateWithoutFormInterviewInput | StudyAssigneeUncheckedCreateWithoutFormInterviewInput | No |
connectOrCreate | StudyAssigneeCreateOrConnectWithoutFormInterviewInput | No |
connect | StudyAssigneeWhereUniqueInput | No |
Name | Type | Nullable |
---|---|---|
create | StudyAssigneeCreateWithoutFormInterviewInput | StudyAssigneeUncheckedCreateWithoutFormInterviewInput | No |
connectOrCreate | StudyAssigneeCreateOrConnectWithoutFormInterviewInput | No |
upsert | StudyAssigneeUpsertWithoutFormInterviewInput | No |
disconnect | Boolean | StudyAssigneeWhereInput | No |
delete | Boolean | StudyAssigneeWhereInput | No |
connect | StudyAssigneeWhereUniqueInput | No |
update | StudyAssigneeUpdateToOneWithWhereWithoutFormInterviewInput | StudyAssigneeUpdateWithoutFormInterviewInput | StudyAssigneeUncheckedUpdateWithoutFormInterviewInput | No |
Name | Type | Nullable |
---|---|---|
create | StudyAssigneeCreateWithoutFormInterviewInput | StudyAssigneeUncheckedCreateWithoutFormInterviewInput | No |
connectOrCreate | StudyAssigneeCreateOrConnectWithoutFormInterviewInput | No |
upsert | StudyAssigneeUpsertWithoutFormInterviewInput | No |
disconnect | Boolean | StudyAssigneeWhereInput | No |
delete | Boolean | StudyAssigneeWhereInput | No |
connect | StudyAssigneeWhereUniqueInput | No |
update | StudyAssigneeUpdateToOneWithWhereWithoutFormInterviewInput | StudyAssigneeUpdateWithoutFormInterviewInput | StudyAssigneeUncheckedUpdateWithoutFormInterviewInput | No |
Name | Type | Nullable |
---|---|---|
create | AdminCreateWithoutStudiesInput | AdminCreateWithoutStudiesInput[] | AdminUncheckedCreateWithoutStudiesInput | AdminUncheckedCreateWithoutStudiesInput[] | No |
connectOrCreate | AdminCreateOrConnectWithoutStudiesInput | AdminCreateOrConnectWithoutStudiesInput[] | No |
connect | AdminWhereUniqueInput | AdminWhereUniqueInput[] | No |
Name | Type | Nullable |
---|---|---|
create | StudyInfosCreateWithoutStudyInput | StudyInfosUncheckedCreateWithoutStudyInput | No |
connectOrCreate | StudyInfosCreateOrConnectWithoutStudyInput | No |
connect | StudyInfosWhereUniqueInput | No |
Name | Type | Nullable |
---|---|---|
create | StudyProceedingsCreateWithoutStudyInput | StudyProceedingsUncheckedCreateWithoutStudyInput | No |
connectOrCreate | StudyProceedingsCreateOrConnectWithoutStudyInput | No |
connect | StudyProceedingsWhereUniqueInput | No |
Name | Type | Nullable |
---|---|---|
create | StudyClientCreateWithoutStudyInput | StudyClientCreateWithoutStudyInput[] | StudyClientUncheckedCreateWithoutStudyInput | StudyClientUncheckedCreateWithoutStudyInput[] | No |
connectOrCreate | StudyClientCreateOrConnectWithoutStudyInput | StudyClientCreateOrConnectWithoutStudyInput[] | No |
createMany | StudyClientCreateManyStudyInputEnvelope | No |
connect | StudyClientWhereUniqueInput | StudyClientWhereUniqueInput[] | No |
Name | Type | Nullable |
---|---|---|
create | MriCreateWithoutStudyInput | MriUncheckedCreateWithoutStudyInput | No |
connectOrCreate | MriCreateOrConnectWithoutStudyInput | No |
connect | MriWhereUniqueInput | No |
Name | Type | Nullable |
---|---|---|
create | StudyAssigneeCreateWithoutStudyInput | StudyAssigneeCreateWithoutStudyInput[] | StudyAssigneeUncheckedCreateWithoutStudyInput | StudyAssigneeUncheckedCreateWithoutStudyInput[] | No |
connectOrCreate | StudyAssigneeCreateOrConnectWithoutStudyInput | StudyAssigneeCreateOrConnectWithoutStudyInput[] | No |
createMany | StudyAssigneeCreateManyStudyInputEnvelope | No |
connect | StudyAssigneeWhereUniqueInput | StudyAssigneeWhereUniqueInput[] | No |
Name | Type | Nullable |
---|---|---|
create | SatisfactionCreateWithoutStudyInput | SatisfactionUncheckedCreateWithoutStudyInput | No |
connectOrCreate | SatisfactionCreateOrConnectWithoutStudyInput | No |
connect | SatisfactionWhereUniqueInput | No |
Name | Type | Nullable |
---|---|---|
create | AdminCreateWithoutStudiesInput | AdminCreateWithoutStudiesInput[] | AdminUncheckedCreateWithoutStudiesInput | AdminUncheckedCreateWithoutStudiesInput[] | No |
connectOrCreate | AdminCreateOrConnectWithoutStudiesInput | AdminCreateOrConnectWithoutStudiesInput[] | No |
connect | AdminWhereUniqueInput | AdminWhereUniqueInput[] | No |
Name | Type | Nullable |
---|---|---|
create | StudyProceedingsCreateWithoutStudyInput | StudyProceedingsUncheckedCreateWithoutStudyInput | No |
connectOrCreate | StudyProceedingsCreateOrConnectWithoutStudyInput | No |
connect | StudyProceedingsWhereUniqueInput | No |
Name | Type | Nullable |
---|---|---|
create | StudyClientCreateWithoutStudyInput | StudyClientCreateWithoutStudyInput[] | StudyClientUncheckedCreateWithoutStudyInput | StudyClientUncheckedCreateWithoutStudyInput[] | No |
connectOrCreate | StudyClientCreateOrConnectWithoutStudyInput | StudyClientCreateOrConnectWithoutStudyInput[] | No |
createMany | StudyClientCreateManyStudyInputEnvelope | No |
connect | StudyClientWhereUniqueInput | StudyClientWhereUniqueInput[] | No |
Name | Type | Nullable |
---|---|---|
create | MriCreateWithoutStudyInput | MriUncheckedCreateWithoutStudyInput | No |
connectOrCreate | MriCreateOrConnectWithoutStudyInput | No |
connect | MriWhereUniqueInput | No |
Name | Type | Nullable |
---|---|---|
create | StudyAssigneeCreateWithoutStudyInput | StudyAssigneeCreateWithoutStudyInput[] | StudyAssigneeUncheckedCreateWithoutStudyInput | StudyAssigneeUncheckedCreateWithoutStudyInput[] | No |
connectOrCreate | StudyAssigneeCreateOrConnectWithoutStudyInput | StudyAssigneeCreateOrConnectWithoutStudyInput[] | No |
createMany | StudyAssigneeCreateManyStudyInputEnvelope | No |
connect | StudyAssigneeWhereUniqueInput | StudyAssigneeWhereUniqueInput[] | No |
Name | Type | Nullable |
---|---|---|
create | SatisfactionCreateWithoutStudyInput | SatisfactionUncheckedCreateWithoutStudyInput | No |
connectOrCreate | SatisfactionCreateOrConnectWithoutStudyInput | No |
connect | SatisfactionWhereUniqueInput | No |
Name | Type | Nullable |
---|---|---|
create | AdminCreateWithoutStudiesInput | AdminCreateWithoutStudiesInput[] | AdminUncheckedCreateWithoutStudiesInput | AdminUncheckedCreateWithoutStudiesInput[] | No |
connectOrCreate | AdminCreateOrConnectWithoutStudiesInput | AdminCreateOrConnectWithoutStudiesInput[] | No |
upsert | AdminUpsertWithWhereUniqueWithoutStudiesInput | AdminUpsertWithWhereUniqueWithoutStudiesInput[] | No |
set | AdminWhereUniqueInput | AdminWhereUniqueInput[] | No |
disconnect | AdminWhereUniqueInput | AdminWhereUniqueInput[] | No |
delete | AdminWhereUniqueInput | AdminWhereUniqueInput[] | No |
connect | AdminWhereUniqueInput | AdminWhereUniqueInput[] | No |
update | AdminUpdateWithWhereUniqueWithoutStudiesInput | AdminUpdateWithWhereUniqueWithoutStudiesInput[] | No |
updateMany | AdminUpdateManyWithWhereWithoutStudiesInput | AdminUpdateManyWithWhereWithoutStudiesInput[] | No |
deleteMany | AdminScalarWhereInput | AdminScalarWhereInput[] | No |
Name | Type | Nullable |
---|---|---|
create | StudyInfosCreateWithoutStudyInput | StudyInfosUncheckedCreateWithoutStudyInput | No |
connectOrCreate | StudyInfosCreateOrConnectWithoutStudyInput | No |
upsert | StudyInfosUpsertWithoutStudyInput | No |
connect | StudyInfosWhereUniqueInput | No |
update | StudyInfosUpdateToOneWithWhereWithoutStudyInput | StudyInfosUpdateWithoutStudyInput | StudyInfosUncheckedUpdateWithoutStudyInput | No |
Name | Type | Nullable |
---|---|---|
create | StudyProceedingsCreateWithoutStudyInput | StudyProceedingsUncheckedCreateWithoutStudyInput | No |
connectOrCreate | StudyProceedingsCreateOrConnectWithoutStudyInput | No |
upsert | StudyProceedingsUpsertWithoutStudyInput | No |
disconnect | Boolean | StudyProceedingsWhereInput | No |
delete | Boolean | StudyProceedingsWhereInput | No |
connect | StudyProceedingsWhereUniqueInput | No |
update | StudyProceedingsUpdateToOneWithWhereWithoutStudyInput | StudyProceedingsUpdateWithoutStudyInput | StudyProceedingsUncheckedUpdateWithoutStudyInput | No |
Name | Type | Nullable |
---|---|---|
create | MriCreateWithoutStudyInput | MriUncheckedCreateWithoutStudyInput | No |
connectOrCreate | MriCreateOrConnectWithoutStudyInput | No |
upsert | MriUpsertWithoutStudyInput | No |
disconnect | Boolean | MriWhereInput | No |
delete | Boolean | MriWhereInput | No |
connect | MriWhereUniqueInput | No |
update | MriUpdateToOneWithWhereWithoutStudyInput | MriUpdateWithoutStudyInput | MriUncheckedUpdateWithoutStudyInput | No |
Name | Type | Nullable |
---|---|---|
create | SatisfactionCreateWithoutStudyInput | SatisfactionUncheckedCreateWithoutStudyInput | No |
connectOrCreate | SatisfactionCreateOrConnectWithoutStudyInput | No |
upsert | SatisfactionUpsertWithoutStudyInput | No |
disconnect | Boolean | SatisfactionWhereInput | No |
delete | Boolean | SatisfactionWhereInput | No |
connect | SatisfactionWhereUniqueInput | No |
update | SatisfactionUpdateToOneWithWhereWithoutStudyInput | SatisfactionUpdateWithoutStudyInput | SatisfactionUncheckedUpdateWithoutStudyInput | No |
Name | Type | Nullable |
---|---|---|
create | AdminCreateWithoutStudiesInput | AdminCreateWithoutStudiesInput[] | AdminUncheckedCreateWithoutStudiesInput | AdminUncheckedCreateWithoutStudiesInput[] | No |
connectOrCreate | AdminCreateOrConnectWithoutStudiesInput | AdminCreateOrConnectWithoutStudiesInput[] | No |
upsert | AdminUpsertWithWhereUniqueWithoutStudiesInput | AdminUpsertWithWhereUniqueWithoutStudiesInput[] | No |
set | AdminWhereUniqueInput | AdminWhereUniqueInput[] | No |
disconnect | AdminWhereUniqueInput | AdminWhereUniqueInput[] | No |
delete | AdminWhereUniqueInput | AdminWhereUniqueInput[] | No |
connect | AdminWhereUniqueInput | AdminWhereUniqueInput[] | No |
update | AdminUpdateWithWhereUniqueWithoutStudiesInput | AdminUpdateWithWhereUniqueWithoutStudiesInput[] | No |
updateMany | AdminUpdateManyWithWhereWithoutStudiesInput | AdminUpdateManyWithWhereWithoutStudiesInput[] | No |
deleteMany | AdminScalarWhereInput | AdminScalarWhereInput[] | No |
Name | Type | Nullable |
---|---|---|
create | StudyProceedingsCreateWithoutStudyInput | StudyProceedingsUncheckedCreateWithoutStudyInput | No |
connectOrCreate | StudyProceedingsCreateOrConnectWithoutStudyInput | No |
upsert | StudyProceedingsUpsertWithoutStudyInput | No |
disconnect | Boolean | StudyProceedingsWhereInput | No |
delete | Boolean | StudyProceedingsWhereInput | No |
connect | StudyProceedingsWhereUniqueInput | No |
update | StudyProceedingsUpdateToOneWithWhereWithoutStudyInput | StudyProceedingsUpdateWithoutStudyInput | StudyProceedingsUncheckedUpdateWithoutStudyInput | No |
Name | Type | Nullable |
---|---|---|
create | MriCreateWithoutStudyInput | MriUncheckedCreateWithoutStudyInput | No |
connectOrCreate | MriCreateOrConnectWithoutStudyInput | No |
upsert | MriUpsertWithoutStudyInput | No |
disconnect | Boolean | MriWhereInput | No |
delete | Boolean | MriWhereInput | No |
connect | MriWhereUniqueInput | No |
update | MriUpdateToOneWithWhereWithoutStudyInput | MriUpdateWithoutStudyInput | MriUncheckedUpdateWithoutStudyInput | No |
Name | Type | Nullable |
---|---|---|
create | SatisfactionCreateWithoutStudyInput | SatisfactionUncheckedCreateWithoutStudyInput | No |
connectOrCreate | SatisfactionCreateOrConnectWithoutStudyInput | No |
upsert | SatisfactionUpsertWithoutStudyInput | No |
disconnect | Boolean | SatisfactionWhereInput | No |
delete | Boolean | SatisfactionWhereInput | No |
connect | SatisfactionWhereUniqueInput | No |
update | SatisfactionUpdateToOneWithWhereWithoutStudyInput | SatisfactionUpdateWithoutStudyInput | SatisfactionUncheckedUpdateWithoutStudyInput | No |
Name | Type | Nullable |
---|---|---|
set | Domain[] | No |
Name | Type | Nullable |
---|---|---|
create | StudyCreateWithoutInformationInput | StudyUncheckedCreateWithoutInformationInput | No |
connectOrCreate | StudyCreateOrConnectWithoutInformationInput | No |
connect | StudyWhereUniqueInput | No |
Name | Type | Nullable |
---|---|---|
create | StudyCreateWithoutInformationInput | StudyUncheckedCreateWithoutInformationInput | No |
connectOrCreate | StudyCreateOrConnectWithoutInformationInput | No |
connect | StudyWhereUniqueInput | No |
Name | Type | Nullable |
---|---|---|
set | Float | No |
increment | Float | No |
decrement | Float | No |
multiply | Float | No |
divide | Float | No |
Name | Type | Nullable |
---|---|---|
create | StudyCreateWithoutInformationInput | StudyUncheckedCreateWithoutInformationInput | No |
connectOrCreate | StudyCreateOrConnectWithoutInformationInput | No |
upsert | StudyUpsertWithoutInformationInput | No |
disconnect | Boolean | StudyWhereInput | No |
delete | Boolean | StudyWhereInput | No |
connect | StudyWhereUniqueInput | No |
update | StudyUpdateToOneWithWhereWithoutInformationInput | StudyUpdateWithoutInformationInput | StudyUncheckedUpdateWithoutInformationInput | No |
Name | Type | Nullable |
---|---|---|
create | StudyCreateWithoutInformationInput | StudyUncheckedCreateWithoutInformationInput | No |
connectOrCreate | StudyCreateOrConnectWithoutInformationInput | No |
upsert | StudyUpsertWithoutInformationInput | No |
disconnect | Boolean | StudyWhereInput | No |
delete | Boolean | StudyWhereInput | No |
connect | StudyWhereUniqueInput | No |
update | StudyUpdateToOneWithWhereWithoutInformationInput | StudyUpdateWithoutInformationInput | StudyUncheckedUpdateWithoutInformationInput | No |
Name | Type | Nullable |
---|---|---|
create | PhaseCreateWithoutStudyProceedingsInput | PhaseCreateWithoutStudyProceedingsInput[] | PhaseUncheckedCreateWithoutStudyProceedingsInput | PhaseUncheckedCreateWithoutStudyProceedingsInput[] | No |
connectOrCreate | PhaseCreateOrConnectWithoutStudyProceedingsInput | PhaseCreateOrConnectWithoutStudyProceedingsInput[] | No |
createMany | PhaseCreateManyStudyProceedingsInputEnvelope | No |
connect | PhaseWhereUniqueInput | PhaseWhereUniqueInput[] | No |
Name | Type | Nullable |
---|---|---|
create | StudyCreateWithoutStudyProceedingsInput | StudyUncheckedCreateWithoutStudyProceedingsInput | No |
connectOrCreate | StudyCreateOrConnectWithoutStudyProceedingsInput | No |
connect | StudyWhereUniqueInput | No |
Name | Type | Nullable |
---|---|---|
create | PhaseCreateWithoutStudyProceedingsInput | PhaseCreateWithoutStudyProceedingsInput[] | PhaseUncheckedCreateWithoutStudyProceedingsInput | PhaseUncheckedCreateWithoutStudyProceedingsInput[] | No |
connectOrCreate | PhaseCreateOrConnectWithoutStudyProceedingsInput | PhaseCreateOrConnectWithoutStudyProceedingsInput[] | No |
createMany | PhaseCreateManyStudyProceedingsInputEnvelope | No |
connect | PhaseWhereUniqueInput | PhaseWhereUniqueInput[] | No |
Name | Type | Nullable |
---|---|---|
set | StudyProgressStep | No |
Name | Type | Nullable |
---|---|---|
create | StudyCreateWithoutStudyProceedingsInput | StudyUncheckedCreateWithoutStudyProceedingsInput | No |
connectOrCreate | StudyCreateOrConnectWithoutStudyProceedingsInput | No |
upsert | StudyUpsertWithoutStudyProceedingsInput | No |
connect | StudyWhereUniqueInput | No |
update | StudyUpdateToOneWithWhereWithoutStudyProceedingsInput | StudyUpdateWithoutStudyProceedingsInput | StudyUncheckedUpdateWithoutStudyProceedingsInput | No |
Name | Type | Nullable |
---|---|---|
create | DeliverableCreateWithoutPhaseInput | DeliverableUncheckedCreateWithoutPhaseInput | No |
connectOrCreate | DeliverableCreateOrConnectWithoutPhaseInput | No |
connect | DeliverableWhereUniqueInput | No |
Name | Type | Nullable |
---|---|---|
create | StudyProceedingsCreateWithoutPhasesInput | StudyProceedingsUncheckedCreateWithoutPhasesInput | No |
connectOrCreate | StudyProceedingsCreateOrConnectWithoutPhasesInput | No |
connect | StudyProceedingsWhereUniqueInput | No |
Name | Type | Nullable |
---|---|---|
create | DeliverableCreateWithoutPhaseInput | DeliverableUncheckedCreateWithoutPhaseInput | No |
connectOrCreate | DeliverableCreateOrConnectWithoutPhaseInput | No |
connect | DeliverableWhereUniqueInput | No |
Name | Type | Nullable |
---|---|---|
create | DeliverableCreateWithoutPhaseInput | DeliverableUncheckedCreateWithoutPhaseInput | No |
connectOrCreate | DeliverableCreateOrConnectWithoutPhaseInput | No |
upsert | DeliverableUpsertWithoutPhaseInput | No |
disconnect | Boolean | DeliverableWhereInput | No |
delete | Boolean | DeliverableWhereInput | No |
connect | DeliverableWhereUniqueInput | No |
update | DeliverableUpdateToOneWithWhereWithoutPhaseInput | DeliverableUpdateWithoutPhaseInput | DeliverableUncheckedUpdateWithoutPhaseInput | No |
Name | Type | Nullable |
---|---|---|
create | StudyProceedingsCreateWithoutPhasesInput | StudyProceedingsUncheckedCreateWithoutPhasesInput | No |
connectOrCreate | StudyProceedingsCreateOrConnectWithoutPhasesInput | No |
upsert | StudyProceedingsUpsertWithoutPhasesInput | No |
connect | StudyProceedingsWhereUniqueInput | No |
update | StudyProceedingsUpdateToOneWithWhereWithoutPhasesInput | StudyProceedingsUpdateWithoutPhasesInput | StudyProceedingsUncheckedUpdateWithoutPhasesInput | No |
Name | Type | Nullable |
---|---|---|
create | DeliverableCreateWithoutPhaseInput | DeliverableUncheckedCreateWithoutPhaseInput | No |
connectOrCreate | DeliverableCreateOrConnectWithoutPhaseInput | No |
upsert | DeliverableUpsertWithoutPhaseInput | No |
disconnect | Boolean | DeliverableWhereInput | No |
delete | Boolean | DeliverableWhereInput | No |
connect | DeliverableWhereUniqueInput | No |
update | DeliverableUpdateToOneWithWhereWithoutPhaseInput | DeliverableUpdateWithoutPhaseInput | DeliverableUncheckedUpdateWithoutPhaseInput | No |
Name | Type | Nullable |
---|---|---|
create | PhaseCreateWithoutDeliverableInput | PhaseUncheckedCreateWithoutDeliverableInput | No |
connectOrCreate | PhaseCreateOrConnectWithoutDeliverableInput | No |
connect | PhaseWhereUniqueInput | No |
Name | Type | Nullable |
---|---|---|
set | DeliverableStatus | No |
Name | Type | Nullable |
---|---|---|
create | PhaseCreateWithoutDeliverableInput | PhaseUncheckedCreateWithoutDeliverableInput | No |
connectOrCreate | PhaseCreateOrConnectWithoutDeliverableInput | No |
upsert | PhaseUpsertWithoutDeliverableInput | No |
connect | PhaseWhereUniqueInput | No |
update | PhaseUpdateToOneWithWhereWithoutDeliverableInput | PhaseUpdateWithoutDeliverableInput | PhaseUncheckedUpdateWithoutDeliverableInput | 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 | 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 | 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 | 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 | NotificationLevel | EnumNotificationLevelFieldRefInput | No |
in | NotificationLevel[] | ListEnumNotificationLevelFieldRefInput | No |
notIn | NotificationLevel[] | ListEnumNotificationLevelFieldRefInput | No |
not | NotificationLevel | NestedEnumNotificationLevelFilter | No |
Name | Type | Nullable |
---|---|---|
equals | Boolean | BooleanFieldRefInput | No |
not | Boolean | NestedBoolFilter | No |
Name | Type | Nullable |
---|---|---|
equals | NotificationLevel | EnumNotificationLevelFieldRefInput | No |
in | NotificationLevel[] | ListEnumNotificationLevelFieldRefInput | No |
notIn | NotificationLevel[] | ListEnumNotificationLevelFieldRefInput | No |
not | NotificationLevel | NestedEnumNotificationLevelWithAggregatesFilter | No |
_count | NestedIntFilter | No |
_min | NestedEnumNotificationLevelFilter | No |
_max | NestedEnumNotificationLevelFilter | 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 | CompanySize | EnumCompanySizeFieldRefInput | Null | Yes |
in | CompanySize[] | ListEnumCompanySizeFieldRefInput | Null | Yes |
notIn | CompanySize[] | ListEnumCompanySizeFieldRefInput | Null | Yes |
not | CompanySize | NestedEnumCompanySizeNullableFilter | Null | Yes |
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 | NestedIntNullableWithAggregatesFilter | Null | Yes |
_count | NestedIntNullableFilter | No |
_avg | NestedFloatNullableFilter | No |
_sum | NestedIntNullableFilter | No |
_min | NestedIntNullableFilter | No |
_max | NestedIntNullableFilter | No |
Name | Type | Nullable |
---|---|---|
equals | Float | FloatFieldRefInput | Null | Yes |
in | Float | 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 | CompanySize | EnumCompanySizeFieldRefInput | Null | Yes |
in | CompanySize[] | ListEnumCompanySizeFieldRefInput | Null | Yes |
notIn | CompanySize[] | ListEnumCompanySizeFieldRefInput | Null | Yes |
not | CompanySize | NestedEnumCompanySizeNullableWithAggregatesFilter | Null | Yes |
_count | NestedIntNullableFilter | No |
_min | NestedEnumCompanySizeNullableFilter | No |
_max | NestedEnumCompanySizeNullableFilter | No |
Name | Type | Nullable |
---|---|---|
equals | DateTime | DateTimeFieldRefInput | Null | Yes |
in | DateTime | ListDateTimeFieldRefInput | Null | Yes |
notIn | DateTime | ListDateTimeFieldRefInput | Null | Yes |
lt | DateTime | DateTimeFieldRefInput | No |
lte | DateTime | DateTimeFieldRefInput | No |
gt | DateTime | DateTimeFieldRefInput | No |
gte | DateTime | DateTimeFieldRefInput | No |
not | DateTime | NestedDateTimeNullableFilter | Null | Yes |
Name | Type | Nullable |
---|---|---|
equals | DateTime | DateTimeFieldRefInput | Null | Yes |
in | DateTime | ListDateTimeFieldRefInput | Null | Yes |
notIn | DateTime | ListDateTimeFieldRefInput | Null | Yes |
lt | DateTime | DateTimeFieldRefInput | No |
lte | DateTime | DateTimeFieldRefInput | No |
gt | DateTime | DateTimeFieldRefInput | No |
gte | DateTime | DateTimeFieldRefInput | No |
not | DateTime | NestedDateTimeNullableWithAggregatesFilter | Null | Yes |
_count | NestedIntNullableFilter | No |
_min | NestedDateTimeNullableFilter | No |
_max | NestedDateTimeNullableFilter | No |
Name | Type | Nullable |
---|---|---|
equals | Level | EnumLevelFieldRefInput | Null | Yes |
in | Level[] | ListEnumLevelFieldRefInput | Null | Yes |
notIn | Level[] | ListEnumLevelFieldRefInput | Null | Yes |
not | Level | NestedEnumLevelNullableFilter | Null | Yes |
Name | Type | Nullable |
---|---|---|
equals | Domain | EnumDomainFieldRefInput | Null | Yes |
in | Domain[] | ListEnumDomainFieldRefInput | Null | Yes |
notIn | Domain[] | ListEnumDomainFieldRefInput | Null | Yes |
not | Domain | NestedEnumDomainNullableFilter | Null | Yes |
Name | Type | Nullable |
---|---|---|
equals | MriStatus | EnumMriStatusFieldRefInput | No |
in | MriStatus[] | ListEnumMriStatusFieldRefInput | No |
notIn | MriStatus[] | ListEnumMriStatusFieldRefInput | No |
not | MriStatus | NestedEnumMriStatusFilter | No |
Name | Type | Nullable |
---|---|---|
equals | Level | EnumLevelFieldRefInput | Null | Yes |
in | Level[] | ListEnumLevelFieldRefInput | Null | Yes |
notIn | Level[] | ListEnumLevelFieldRefInput | Null | Yes |
not | Level | NestedEnumLevelNullableWithAggregatesFilter | Null | Yes |
_count | NestedIntNullableFilter | No |
_min | NestedEnumLevelNullableFilter | No |
_max | NestedEnumLevelNullableFilter | No |
Name | Type | Nullable |
---|---|---|
equals | Domain | EnumDomainFieldRefInput | Null | Yes |
in | Domain[] | ListEnumDomainFieldRefInput | Null | Yes |
notIn | Domain[] | ListEnumDomainFieldRefInput | Null | Yes |
not | Domain | NestedEnumDomainNullableWithAggregatesFilter | Null | Yes |
_count | NestedIntNullableFilter | No |
_min | NestedEnumDomainNullableFilter | No |
_max | NestedEnumDomainNullableFilter | No |
Name | Type | Nullable |
---|---|---|
equals | MriStatus | EnumMriStatusFieldRefInput | No |
in | MriStatus[] | ListEnumMriStatusFieldRefInput | No |
notIn | MriStatus[] | ListEnumMriStatusFieldRefInput | No |
not | MriStatus | NestedEnumMriStatusWithAggregatesFilter | No |
_count | NestedIntFilter | No |
_min | NestedEnumMriStatusFilter | No |
_max | NestedEnumMriStatusFilter | 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 | StudyProgressStep | EnumStudyProgressStepFieldRefInput | No |
in | StudyProgressStep[] | ListEnumStudyProgressStepFieldRefInput | No |
notIn | StudyProgressStep[] | ListEnumStudyProgressStepFieldRefInput | No |
not | StudyProgressStep | NestedEnumStudyProgressStepFilter | No |
Name | Type | Nullable |
---|---|---|
equals | StudyProgressStep | EnumStudyProgressStepFieldRefInput | No |
in | StudyProgressStep[] | ListEnumStudyProgressStepFieldRefInput | No |
notIn | StudyProgressStep[] | ListEnumStudyProgressStepFieldRefInput | No |
not | StudyProgressStep | NestedEnumStudyProgressStepWithAggregatesFilter | No |
_count | NestedIntFilter | No |
_min | NestedEnumStudyProgressStepFilter | No |
_max | NestedEnumStudyProgressStepFilter | No |
Name | Type | Nullable |
---|---|---|
equals | DeliverableStatus | EnumDeliverableStatusFieldRefInput | No |
in | DeliverableStatus[] | ListEnumDeliverableStatusFieldRefInput | No |
notIn | DeliverableStatus[] | ListEnumDeliverableStatusFieldRefInput | No |
not | DeliverableStatus | NestedEnumDeliverableStatusFilter | No |
Name | Type | Nullable |
---|---|---|
equals | DeliverableStatus | EnumDeliverableStatusFieldRefInput | No |
in | DeliverableStatus[] | ListEnumDeliverableStatusFieldRefInput | No |
notIn | DeliverableStatus[] | ListEnumDeliverableStatusFieldRefInput | No |
not | DeliverableStatus | NestedEnumDeliverableStatusWithAggregatesFilter | No |
_count | NestedIntFilter | No |
_min | NestedEnumDeliverableStatusFilter | No |
_max | NestedEnumDeliverableStatusFilter | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
streetNumber | String | No |
streetName | String | No |
city | String | No |
zipCode | String | No |
country | String | No |
Company | CompanyCreateNestedOneWithoutAddressInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
streetNumber | String | No |
streetName | String | No |
city | String | No |
zipCode | String | No |
country | String | No |
companyId | String | Null | Yes |
Name | Type | Nullable |
---|---|---|
where | AddressWhereUniqueInput | No |
create | AddressCreateWithoutPersonInput | AddressUncheckedCreateWithoutPersonInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
settings | UserSettingsCreateNestedOneWithoutUserInput | No |
admin | AdminCreateNestedOneWithoutUserInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
userSettingsId | String | Null | Yes |
admin | AdminUncheckedCreateNestedOneWithoutUserInput | No |
Name | Type | Nullable |
---|---|---|
where | UserWhereUniqueInput | No |
create | UserCreateWithoutPersonInput | UserUncheckedCreateWithoutPersonInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
nbApplications | Int | No |
docs | AssigneeDocsCreateNestedManyWithoutAssigneeInput | No |
information | AssigneeInfosCreateNestedOneWithoutAssigneeInput | No |
studyAssign | StudyAssigneeCreateNestedManyWithoutAssigneeInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
nbApplications | Int | No |
docs | AssigneeDocsUncheckedCreateNestedManyWithoutAssigneeInput | No |
information | AssigneeInfosUncheckedCreateNestedOneWithoutAssigneeInput | No |
studyAssign | StudyAssigneeUncheckedCreateNestedManyWithoutAssigneeInput | No |
Name | Type | Nullable |
---|---|---|
where | AssigneeWhereUniqueInput | No |
create | AssigneeCreateWithoutPersonInput | AssigneeUncheckedCreateWithoutPersonInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
privateIndividual | Boolean | No |
job | String | No |
company | CompanyCreateNestedOneWithoutMembersInput | No |
studyClients | StudyClientCreateNestedManyWithoutClientInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
privateIndividual | Boolean | No |
companyId | String | Null | Yes |
job | String | No |
studyClients | StudyClientUncheckedCreateNestedManyWithoutClientInput | No |
Name | Type | Nullable |
---|---|---|
where | ClientWhereUniqueInput | No |
create | ClientCreateWithoutPersonInput | ClientUncheckedCreateWithoutPersonInput | No |
Name | Type | Nullable |
---|---|---|
update | AddressUpdateWithoutPersonInput | AddressUncheckedUpdateWithoutPersonInput | No |
create | AddressCreateWithoutPersonInput | AddressUncheckedCreateWithoutPersonInput | No |
where | AddressWhereInput | No |
Name | Type | Nullable |
---|---|---|
where | AddressWhereInput | No |
data | AddressUpdateWithoutPersonInput | AddressUncheckedUpdateWithoutPersonInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
streetNumber | String | StringFieldUpdateOperationsInput | No |
streetName | String | StringFieldUpdateOperationsInput | No |
city | String | StringFieldUpdateOperationsInput | No |
zipCode | String | StringFieldUpdateOperationsInput | No |
country | String | StringFieldUpdateOperationsInput | No |
Company | CompanyUpdateOneWithoutAddressNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
streetNumber | String | StringFieldUpdateOperationsInput | No |
streetName | String | StringFieldUpdateOperationsInput | No |
city | String | StringFieldUpdateOperationsInput | No |
zipCode | String | StringFieldUpdateOperationsInput | No |
country | String | StringFieldUpdateOperationsInput | No |
companyId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
Name | Type | Nullable |
---|---|---|
update | UserUpdateWithoutPersonInput | UserUncheckedUpdateWithoutPersonInput | No |
create | UserCreateWithoutPersonInput | UserUncheckedCreateWithoutPersonInput | No |
where | UserWhereInput | No |
Name | Type | Nullable |
---|---|---|
where | UserWhereInput | No |
data | UserUpdateWithoutPersonInput | UserUncheckedUpdateWithoutPersonInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
settings | UserSettingsUpdateOneWithoutUserNestedInput | No |
admin | AdminUpdateOneWithoutUserNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
userSettingsId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
admin | AdminUncheckedUpdateOneWithoutUserNestedInput | No |
Name | Type | Nullable |
---|---|---|
update | AssigneeUpdateWithoutPersonInput | AssigneeUncheckedUpdateWithoutPersonInput | No |
create | AssigneeCreateWithoutPersonInput | AssigneeUncheckedCreateWithoutPersonInput | No |
where | AssigneeWhereInput | No |
Name | Type | Nullable |
---|---|---|
where | AssigneeWhereInput | No |
data | AssigneeUpdateWithoutPersonInput | AssigneeUncheckedUpdateWithoutPersonInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
nbApplications | Int | IntFieldUpdateOperationsInput | No |
docs | AssigneeDocsUpdateManyWithoutAssigneeNestedInput | No |
information | AssigneeInfosUpdateOneWithoutAssigneeNestedInput | No |
studyAssign | StudyAssigneeUpdateManyWithoutAssigneeNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
nbApplications | Int | IntFieldUpdateOperationsInput | No |
docs | AssigneeDocsUncheckedUpdateManyWithoutAssigneeNestedInput | No |
information | AssigneeInfosUncheckedUpdateOneWithoutAssigneeNestedInput | No |
studyAssign | StudyAssigneeUncheckedUpdateManyWithoutAssigneeNestedInput | No |
Name | Type | Nullable |
---|---|---|
update | ClientUpdateWithoutPersonInput | ClientUncheckedUpdateWithoutPersonInput | No |
create | ClientCreateWithoutPersonInput | ClientUncheckedCreateWithoutPersonInput | No |
where | ClientWhereInput | No |
Name | Type | Nullable |
---|---|---|
where | ClientWhereInput | No |
data | ClientUpdateWithoutPersonInput | ClientUncheckedUpdateWithoutPersonInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
privateIndividual | Boolean | BoolFieldUpdateOperationsInput | No |
job | String | StringFieldUpdateOperationsInput | No |
company | CompanyUpdateOneWithoutMembersNestedInput | No |
studyClients | StudyClientUpdateManyWithoutClientNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
privateIndividual | Boolean | BoolFieldUpdateOperationsInput | No |
companyId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
job | String | StringFieldUpdateOperationsInput | No |
studyClients | StudyClientUncheckedUpdateManyWithoutClientNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
String | Null | Yes | |
firstName | String | No |
lastName | String | No |
number | String | Null | Yes |
address | AddressCreateNestedOneWithoutPersonInput | No |
assignee | AssigneeCreateNestedOneWithoutPersonInput | No |
clients | ClientCreateNestedOneWithoutPersonInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
String | Null | Yes | |
firstName | String | No |
lastName | String | No |
number | String | Null | Yes |
address | AddressUncheckedCreateNestedOneWithoutPersonInput | No |
assignee | AssigneeUncheckedCreateNestedOneWithoutPersonInput | No |
clients | ClientUncheckedCreateNestedOneWithoutPersonInput | No |
Name | Type | Nullable |
---|---|---|
where | PersonWhereUniqueInput | No |
create | PersonCreateWithoutUserInput | PersonUncheckedCreateWithoutUserInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
theme | String | No |
notificationLevel | NotificationLevel | No |
gui | Boolean | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
theme | String | No |
notificationLevel | NotificationLevel | No |
gui | Boolean | No |
Name | Type | Nullable |
---|---|---|
where | UserSettingsWhereUniqueInput | No |
create | UserSettingsCreateWithoutUserInput | UserSettingsUncheckedCreateWithoutUserInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
position | String | Null | Yes |
image | String | Null | Yes |
studies | StudyCreateNestedManyWithoutCdpsInput | No |
auditedStudies | StudyCreateNestedManyWithoutAuditorsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
position | String | Null | Yes |
image | String | Null | Yes |
studies | StudyUncheckedCreateNestedManyWithoutCdpsInput | No |
auditedStudies | StudyUncheckedCreateNestedManyWithoutAuditorsInput | No |
Name | Type | Nullable |
---|---|---|
where | AdminWhereUniqueInput | No |
create | AdminCreateWithoutUserInput | AdminUncheckedCreateWithoutUserInput | No |
Name | Type | Nullable |
---|---|---|
update | PersonUpdateWithoutUserInput | PersonUncheckedUpdateWithoutUserInput | No |
create | PersonCreateWithoutUserInput | PersonUncheckedCreateWithoutUserInput | No |
where | PersonWhereInput | No |
Name | Type | Nullable |
---|---|---|
where | PersonWhereInput | No |
data | PersonUpdateWithoutUserInput | PersonUncheckedUpdateWithoutUserInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
String | NullableStringFieldUpdateOperationsInput | Null | Yes | |
firstName | String | StringFieldUpdateOperationsInput | No |
lastName | String | StringFieldUpdateOperationsInput | No |
number | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
address | AddressUpdateOneWithoutPersonNestedInput | No |
assignee | AssigneeUpdateOneWithoutPersonNestedInput | No |
clients | ClientUpdateOneWithoutPersonNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
String | NullableStringFieldUpdateOperationsInput | Null | Yes | |
firstName | String | StringFieldUpdateOperationsInput | No |
lastName | String | StringFieldUpdateOperationsInput | No |
number | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
address | AddressUncheckedUpdateOneWithoutPersonNestedInput | No |
assignee | AssigneeUncheckedUpdateOneWithoutPersonNestedInput | No |
clients | ClientUncheckedUpdateOneWithoutPersonNestedInput | No |
Name | Type | Nullable |
---|---|---|
update | UserSettingsUpdateWithoutUserInput | UserSettingsUncheckedUpdateWithoutUserInput | No |
create | UserSettingsCreateWithoutUserInput | UserSettingsUncheckedCreateWithoutUserInput | No |
where | UserSettingsWhereInput | No |
Name | Type | Nullable |
---|---|---|
where | UserSettingsWhereInput | No |
data | UserSettingsUpdateWithoutUserInput | UserSettingsUncheckedUpdateWithoutUserInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
theme | String | StringFieldUpdateOperationsInput | No |
notificationLevel | NotificationLevel | EnumNotificationLevelFieldUpdateOperationsInput | No |
gui | Boolean | BoolFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
theme | String | StringFieldUpdateOperationsInput | No |
notificationLevel | NotificationLevel | EnumNotificationLevelFieldUpdateOperationsInput | No |
gui | Boolean | BoolFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
update | AdminUpdateWithoutUserInput | AdminUncheckedUpdateWithoutUserInput | No |
create | AdminCreateWithoutUserInput | AdminUncheckedCreateWithoutUserInput | No |
where | AdminWhereInput | No |
Name | Type | Nullable |
---|---|---|
where | AdminWhereInput | No |
data | AdminUpdateWithoutUserInput | AdminUncheckedUpdateWithoutUserInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
position | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
image | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
studies | StudyUpdateManyWithoutCdpsNestedInput | No |
auditedStudies | StudyUpdateManyWithoutAuditorsNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
position | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
image | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
studies | StudyUncheckedUpdateManyWithoutCdpsNestedInput | No |
auditedStudies | StudyUncheckedUpdateManyWithoutAuditorsNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
person | PersonCreateNestedOneWithoutUserInput | No |
settings | UserSettingsCreateNestedOneWithoutUserInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
personId | String | No |
userSettingsId | String | Null | Yes |
Name | Type | Nullable |
---|---|---|
where | UserWhereUniqueInput | No |
create | UserCreateWithoutAdminInput | UserUncheckedCreateWithoutAdminInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
studyProceedingsId | String | Null | Yes |
auditors | AdminCreateNestedManyWithoutAuditedStudiesInput | No |
information | StudyInfosCreateNestedOneWithoutStudyInput | No |
studyProceedings | StudyProceedingsCreateNestedOneWithoutStudyInput | No |
clients | StudyClientCreateNestedManyWithoutStudyInput | No |
mri | MriCreateNestedOneWithoutStudyInput | No |
studyAssignees | StudyAssigneeCreateNestedManyWithoutStudyInput | No |
satisfaction | SatisfactionCreateNestedOneWithoutStudyInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
informationId | String | No |
studyProceedingsId | String | Null | Yes |
auditors | AdminUncheckedCreateNestedManyWithoutAuditedStudiesInput | No |
studyProceedings | StudyProceedingsUncheckedCreateNestedOneWithoutStudyInput | No |
clients | StudyClientUncheckedCreateNestedManyWithoutStudyInput | No |
mri | MriUncheckedCreateNestedOneWithoutStudyInput | No |
studyAssignees | StudyAssigneeUncheckedCreateNestedManyWithoutStudyInput | No |
satisfaction | SatisfactionUncheckedCreateNestedOneWithoutStudyInput | No |
Name | Type | Nullable |
---|---|---|
where | StudyWhereUniqueInput | No |
create | StudyCreateWithoutCdpsInput | StudyUncheckedCreateWithoutCdpsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
studyProceedingsId | String | Null | Yes |
cdps | AdminCreateNestedManyWithoutStudiesInput | No |
information | StudyInfosCreateNestedOneWithoutStudyInput | No |
studyProceedings | StudyProceedingsCreateNestedOneWithoutStudyInput | No |
clients | StudyClientCreateNestedManyWithoutStudyInput | No |
mri | MriCreateNestedOneWithoutStudyInput | No |
studyAssignees | StudyAssigneeCreateNestedManyWithoutStudyInput | No |
satisfaction | SatisfactionCreateNestedOneWithoutStudyInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
informationId | String | No |
studyProceedingsId | String | Null | Yes |
cdps | AdminUncheckedCreateNestedManyWithoutStudiesInput | No |
studyProceedings | StudyProceedingsUncheckedCreateNestedOneWithoutStudyInput | No |
clients | StudyClientUncheckedCreateNestedManyWithoutStudyInput | No |
mri | MriUncheckedCreateNestedOneWithoutStudyInput | No |
studyAssignees | StudyAssigneeUncheckedCreateNestedManyWithoutStudyInput | No |
satisfaction | SatisfactionUncheckedCreateNestedOneWithoutStudyInput | No |
Name | Type | Nullable |
---|---|---|
where | StudyWhereUniqueInput | No |
create | StudyCreateWithoutAuditorsInput | StudyUncheckedCreateWithoutAuditorsInput | No |
Name | Type | Nullable |
---|---|---|
update | UserUpdateWithoutAdminInput | UserUncheckedUpdateWithoutAdminInput | No |
create | UserCreateWithoutAdminInput | UserUncheckedCreateWithoutAdminInput | No |
where | UserWhereInput | No |
Name | Type | Nullable |
---|---|---|
where | UserWhereInput | No |
data | UserUpdateWithoutAdminInput | UserUncheckedUpdateWithoutAdminInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
person | PersonUpdateOneRequiredWithoutUserNestedInput | No |
settings | UserSettingsUpdateOneWithoutUserNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
personId | String | StringFieldUpdateOperationsInput | No |
userSettingsId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
Name | Type | Nullable |
---|---|---|
where | StudyWhereUniqueInput | No |
update | StudyUpdateWithoutCdpsInput | StudyUncheckedUpdateWithoutCdpsInput | No |
create | StudyCreateWithoutCdpsInput | StudyUncheckedCreateWithoutCdpsInput | No |
Name | Type | Nullable |
---|---|---|
where | StudyWhereUniqueInput | No |
data | StudyUpdateWithoutCdpsInput | StudyUncheckedUpdateWithoutCdpsInput | No |
Name | Type | Nullable |
---|---|---|
where | StudyScalarWhereInput | No |
data | StudyUpdateManyMutationInput | StudyUncheckedUpdateManyWithoutCdpsInput | No |
Name | Type | Nullable |
---|---|---|
AND | StudyScalarWhereInput | StudyScalarWhereInput[] | No |
OR | StudyScalarWhereInput[] | No |
NOT | StudyScalarWhereInput | StudyScalarWhereInput[] | No |
id | StringFilter | String | No |
informationId | StringFilter | String | No |
studyProceedingsId | StringNullableFilter | String | Null | Yes |
Name | Type | Nullable |
---|---|---|
where | StudyWhereUniqueInput | No |
update | StudyUpdateWithoutAuditorsInput | StudyUncheckedUpdateWithoutAuditorsInput | No |
create | StudyCreateWithoutAuditorsInput | StudyUncheckedCreateWithoutAuditorsInput | No |
Name | Type | Nullable |
---|---|---|
where | StudyWhereUniqueInput | No |
data | StudyUpdateWithoutAuditorsInput | StudyUncheckedUpdateWithoutAuditorsInput | No |
Name | Type | Nullable |
---|---|---|
where | StudyScalarWhereInput | No |
data | StudyUpdateManyMutationInput | StudyUncheckedUpdateManyWithoutAuditorsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
person | PersonCreateNestedOneWithoutUserInput | No |
admin | AdminCreateNestedOneWithoutUserInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
personId | String | No |
admin | AdminUncheckedCreateNestedOneWithoutUserInput | No |
Name | Type | Nullable |
---|---|---|
where | UserWhereUniqueInput | No |
create | UserCreateWithoutSettingsInput | UserUncheckedCreateWithoutSettingsInput | No |
Name | Type | Nullable |
---|---|---|
data | UserCreateManySettingsInput | UserCreateManySettingsInput[] | No |
skipDuplicates | Boolean | No |
Name | Type | Nullable |
---|---|---|
where | UserWhereUniqueInput | No |
update | UserUpdateWithoutSettingsInput | UserUncheckedUpdateWithoutSettingsInput | No |
create | UserCreateWithoutSettingsInput | UserUncheckedCreateWithoutSettingsInput | No |
Name | Type | Nullable |
---|---|---|
where | UserWhereUniqueInput | No |
data | UserUpdateWithoutSettingsInput | UserUncheckedUpdateWithoutSettingsInput | No |
Name | Type | Nullable |
---|---|---|
where | UserScalarWhereInput | No |
data | UserUpdateManyMutationInput | UserUncheckedUpdateManyWithoutSettingsInput | No |
Name | Type | Nullable |
---|---|---|
AND | UserScalarWhereInput | UserScalarWhereInput[] | No |
OR | UserScalarWhereInput[] | No |
NOT | UserScalarWhereInput | UserScalarWhereInput[] | No |
id | StringFilter | String | No |
personId | StringFilter | String | No |
userSettingsId | StringNullableFilter | String | Null | Yes |
Name | Type | Nullable |
---|---|---|
id | String | No |
String | Null | Yes | |
firstName | String | No |
lastName | String | No |
number | String | Null | Yes |
user | UserCreateNestedOneWithoutPersonInput | No |
assignee | AssigneeCreateNestedOneWithoutPersonInput | No |
clients | ClientCreateNestedOneWithoutPersonInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
String | Null | Yes | |
firstName | String | No |
lastName | String | No |
number | String | Null | Yes |
user | UserUncheckedCreateNestedOneWithoutPersonInput | No |
assignee | AssigneeUncheckedCreateNestedOneWithoutPersonInput | No |
clients | ClientUncheckedCreateNestedOneWithoutPersonInput | No |
Name | Type | Nullable |
---|---|---|
where | PersonWhereUniqueInput | No |
create | PersonCreateWithoutAddressInput | PersonUncheckedCreateWithoutAddressInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
name | String | No |
companyInfos | CompanyInfosCreateNestedOneWithoutCompanyInput | No |
members | ClientCreateNestedManyWithoutCompanyInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
name | String | No |
companyInfosId | String | No |
members | ClientUncheckedCreateNestedManyWithoutCompanyInput | No |
Name | Type | Nullable |
---|---|---|
where | CompanyWhereUniqueInput | No |
create | CompanyCreateWithoutAddressInput | CompanyUncheckedCreateWithoutAddressInput | No |
Name | Type | Nullable |
---|---|---|
update | PersonUpdateWithoutAddressInput | PersonUncheckedUpdateWithoutAddressInput | No |
create | PersonCreateWithoutAddressInput | PersonUncheckedCreateWithoutAddressInput | No |
where | PersonWhereInput | No |
Name | Type | Nullable |
---|---|---|
where | PersonWhereInput | No |
data | PersonUpdateWithoutAddressInput | PersonUncheckedUpdateWithoutAddressInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
String | NullableStringFieldUpdateOperationsInput | Null | Yes | |
firstName | String | StringFieldUpdateOperationsInput | No |
lastName | String | StringFieldUpdateOperationsInput | No |
number | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
user | UserUpdateOneWithoutPersonNestedInput | No |
assignee | AssigneeUpdateOneWithoutPersonNestedInput | No |
clients | ClientUpdateOneWithoutPersonNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
String | NullableStringFieldUpdateOperationsInput | Null | Yes | |
firstName | String | StringFieldUpdateOperationsInput | No |
lastName | String | StringFieldUpdateOperationsInput | No |
number | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
user | UserUncheckedUpdateOneWithoutPersonNestedInput | No |
assignee | AssigneeUncheckedUpdateOneWithoutPersonNestedInput | No |
clients | ClientUncheckedUpdateOneWithoutPersonNestedInput | No |
Name | Type | Nullable |
---|---|---|
update | CompanyUpdateWithoutAddressInput | CompanyUncheckedUpdateWithoutAddressInput | No |
create | CompanyCreateWithoutAddressInput | CompanyUncheckedCreateWithoutAddressInput | No |
where | CompanyWhereInput | No |
Name | Type | Nullable |
---|---|---|
where | CompanyWhereInput | No |
data | CompanyUpdateWithoutAddressInput | CompanyUncheckedUpdateWithoutAddressInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
name | String | StringFieldUpdateOperationsInput | No |
companyInfos | CompanyInfosUpdateOneRequiredWithoutCompanyNestedInput | No |
members | ClientUpdateManyWithoutCompanyNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
name | String | StringFieldUpdateOperationsInput | No |
companyInfosId | String | StringFieldUpdateOperationsInput | No |
members | ClientUncheckedUpdateManyWithoutCompanyNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
name | String | No |
address | AddressCreateNestedOneWithoutCompanyInput | No |
companyInfos | CompanyInfosCreateNestedOneWithoutCompanyInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
name | String | No |
companyInfosId | String | No |
address | AddressUncheckedCreateNestedOneWithoutCompanyInput | No |
Name | Type | Nullable |
---|---|---|
where | CompanyWhereUniqueInput | No |
create | CompanyCreateWithoutMembersInput | CompanyUncheckedCreateWithoutMembersInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
String | Null | Yes | |
firstName | String | No |
lastName | String | No |
number | String | Null | Yes |
address | AddressCreateNestedOneWithoutPersonInput | No |
user | UserCreateNestedOneWithoutPersonInput | No |
assignee | AssigneeCreateNestedOneWithoutPersonInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
String | Null | Yes | |
firstName | String | No |
lastName | String | No |
number | String | Null | Yes |
address | AddressUncheckedCreateNestedOneWithoutPersonInput | No |
user | UserUncheckedCreateNestedOneWithoutPersonInput | No |
assignee | AssigneeUncheckedCreateNestedOneWithoutPersonInput | No |
Name | Type | Nullable |
---|---|---|
where | PersonWhereUniqueInput | No |
create | PersonCreateWithoutClientsInput | PersonUncheckedCreateWithoutClientsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
study | StudyCreateNestedOneWithoutClientsInput | No |
satisfaction | SatisfactionCreateNestedOneWithoutStudyClientInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
studyId | String | No |
satisfaction | SatisfactionUncheckedCreateNestedOneWithoutStudyClientInput | No |
Name | Type | Nullable |
---|---|---|
where | StudyClientWhereUniqueInput | No |
create | StudyClientCreateWithoutClientInput | StudyClientUncheckedCreateWithoutClientInput | No |
Name | Type | Nullable |
---|---|---|
data | StudyClientCreateManyClientInput | StudyClientCreateManyClientInput[] | No |
skipDuplicates | Boolean | No |
Name | Type | Nullable |
---|---|---|
update | CompanyUpdateWithoutMembersInput | CompanyUncheckedUpdateWithoutMembersInput | No |
create | CompanyCreateWithoutMembersInput | CompanyUncheckedCreateWithoutMembersInput | No |
where | CompanyWhereInput | No |
Name | Type | Nullable |
---|---|---|
where | CompanyWhereInput | No |
data | CompanyUpdateWithoutMembersInput | CompanyUncheckedUpdateWithoutMembersInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
name | String | StringFieldUpdateOperationsInput | No |
address | AddressUpdateOneWithoutCompanyNestedInput | No |
companyInfos | CompanyInfosUpdateOneRequiredWithoutCompanyNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
name | String | StringFieldUpdateOperationsInput | No |
companyInfosId | String | StringFieldUpdateOperationsInput | No |
address | AddressUncheckedUpdateOneWithoutCompanyNestedInput | No |
Name | Type | Nullable |
---|---|---|
update | PersonUpdateWithoutClientsInput | PersonUncheckedUpdateWithoutClientsInput | No |
create | PersonCreateWithoutClientsInput | PersonUncheckedCreateWithoutClientsInput | No |
where | PersonWhereInput | No |
Name | Type | Nullable |
---|---|---|
where | PersonWhereInput | No |
data | PersonUpdateWithoutClientsInput | PersonUncheckedUpdateWithoutClientsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
String | NullableStringFieldUpdateOperationsInput | Null | Yes | |
firstName | String | StringFieldUpdateOperationsInput | No |
lastName | String | StringFieldUpdateOperationsInput | No |
number | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
address | AddressUpdateOneWithoutPersonNestedInput | No |
user | UserUpdateOneWithoutPersonNestedInput | No |
assignee | AssigneeUpdateOneWithoutPersonNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
String | NullableStringFieldUpdateOperationsInput | Null | Yes | |
firstName | String | StringFieldUpdateOperationsInput | No |
lastName | String | StringFieldUpdateOperationsInput | No |
number | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
address | AddressUncheckedUpdateOneWithoutPersonNestedInput | No |
user | UserUncheckedUpdateOneWithoutPersonNestedInput | No |
assignee | AssigneeUncheckedUpdateOneWithoutPersonNestedInput | No |
Name | Type | Nullable |
---|---|---|
where | StudyClientWhereUniqueInput | No |
update | StudyClientUpdateWithoutClientInput | StudyClientUncheckedUpdateWithoutClientInput | No |
create | StudyClientCreateWithoutClientInput | StudyClientUncheckedCreateWithoutClientInput | No |
Name | Type | Nullable |
---|---|---|
where | StudyClientWhereUniqueInput | No |
data | StudyClientUpdateWithoutClientInput | StudyClientUncheckedUpdateWithoutClientInput | No |
Name | Type | Nullable |
---|---|---|
where | StudyClientScalarWhereInput | No |
data | StudyClientUpdateManyMutationInput | StudyClientUncheckedUpdateManyWithoutClientInput | No |
Name | Type | Nullable |
---|---|---|
AND | StudyClientScalarWhereInput | StudyClientScalarWhereInput[] | No |
OR | StudyClientScalarWhereInput[] | No |
NOT | StudyClientScalarWhereInput | StudyClientScalarWhereInput[] | No |
id | StringFilter | String | No |
studyId | StringFilter | String | No |
clientId | StringFilter | String | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
studyProceedingsId | String | Null | Yes |
cdps | AdminCreateNestedManyWithoutStudiesInput | No |
auditors | AdminCreateNestedManyWithoutAuditedStudiesInput | No |
information | StudyInfosCreateNestedOneWithoutStudyInput | No |
studyProceedings | StudyProceedingsCreateNestedOneWithoutStudyInput | No |
mri | MriCreateNestedOneWithoutStudyInput | No |
studyAssignees | StudyAssigneeCreateNestedManyWithoutStudyInput | No |
satisfaction | SatisfactionCreateNestedOneWithoutStudyInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
informationId | String | No |
studyProceedingsId | String | Null | Yes |
cdps | AdminUncheckedCreateNestedManyWithoutStudiesInput | No |
auditors | AdminUncheckedCreateNestedManyWithoutAuditedStudiesInput | No |
studyProceedings | StudyProceedingsUncheckedCreateNestedOneWithoutStudyInput | No |
mri | MriUncheckedCreateNestedOneWithoutStudyInput | No |
studyAssignees | StudyAssigneeUncheckedCreateNestedManyWithoutStudyInput | No |
satisfaction | SatisfactionUncheckedCreateNestedOneWithoutStudyInput | No |
Name | Type | Nullable |
---|---|---|
where | StudyWhereUniqueInput | No |
create | StudyCreateWithoutClientsInput | StudyUncheckedCreateWithoutClientsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
privateIndividual | Boolean | No |
job | String | No |
company | CompanyCreateNestedOneWithoutMembersInput | No |
person | PersonCreateNestedOneWithoutClientsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
privateIndividual | Boolean | No |
companyId | String | Null | Yes |
personId | String | No |
job | String | No |
Name | Type | Nullable |
---|---|---|
where | ClientWhereUniqueInput | No |
create | ClientCreateWithoutStudyClientsInput | ClientUncheckedCreateWithoutStudyClientsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
publish | Boolean | No |
howKnowUs | String | No |
whyUs | String | No |
satisfactionObjectives | Int | No |
easiness | Int | No |
timeElapsed | Int | No |
recommendUs | Int | No |
study | StudyCreateNestedOneWithoutSatisfactionInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
studyId | String | No |
publish | Boolean | No |
howKnowUs | String | No |
whyUs | String | No |
satisfactionObjectives | Int | No |
easiness | Int | No |
timeElapsed | Int | No |
recommendUs | Int | No |
Name | Type | Nullable |
---|---|---|
where | SatisfactionWhereUniqueInput | No |
create | SatisfactionCreateWithoutStudyClientInput | SatisfactionUncheckedCreateWithoutStudyClientInput | No |
Name | Type | Nullable |
---|---|---|
update | StudyUpdateWithoutClientsInput | StudyUncheckedUpdateWithoutClientsInput | No |
create | StudyCreateWithoutClientsInput | StudyUncheckedCreateWithoutClientsInput | No |
where | StudyWhereInput | No |
Name | Type | Nullable |
---|---|---|
where | StudyWhereInput | No |
data | StudyUpdateWithoutClientsInput | StudyUncheckedUpdateWithoutClientsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
studyProceedingsId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
cdps | AdminUpdateManyWithoutStudiesNestedInput | No |
auditors | AdminUpdateManyWithoutAuditedStudiesNestedInput | No |
information | StudyInfosUpdateOneRequiredWithoutStudyNestedInput | No |
studyProceedings | StudyProceedingsUpdateOneWithoutStudyNestedInput | No |
mri | MriUpdateOneWithoutStudyNestedInput | No |
studyAssignees | StudyAssigneeUpdateManyWithoutStudyNestedInput | No |
satisfaction | SatisfactionUpdateOneWithoutStudyNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
informationId | String | StringFieldUpdateOperationsInput | No |
studyProceedingsId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
cdps | AdminUncheckedUpdateManyWithoutStudiesNestedInput | No |
auditors | AdminUncheckedUpdateManyWithoutAuditedStudiesNestedInput | No |
studyProceedings | StudyProceedingsUncheckedUpdateOneWithoutStudyNestedInput | No |
mri | MriUncheckedUpdateOneWithoutStudyNestedInput | No |
studyAssignees | StudyAssigneeUncheckedUpdateManyWithoutStudyNestedInput | No |
satisfaction | SatisfactionUncheckedUpdateOneWithoutStudyNestedInput | No |
Name | Type | Nullable |
---|---|---|
update | ClientUpdateWithoutStudyClientsInput | ClientUncheckedUpdateWithoutStudyClientsInput | No |
create | ClientCreateWithoutStudyClientsInput | ClientUncheckedCreateWithoutStudyClientsInput | No |
where | ClientWhereInput | No |
Name | Type | Nullable |
---|---|---|
where | ClientWhereInput | No |
data | ClientUpdateWithoutStudyClientsInput | ClientUncheckedUpdateWithoutStudyClientsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
privateIndividual | Boolean | BoolFieldUpdateOperationsInput | No |
job | String | StringFieldUpdateOperationsInput | No |
company | CompanyUpdateOneWithoutMembersNestedInput | No |
person | PersonUpdateOneRequiredWithoutClientsNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
privateIndividual | Boolean | BoolFieldUpdateOperationsInput | No |
companyId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
personId | String | StringFieldUpdateOperationsInput | No |
job | String | StringFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
update | SatisfactionUpdateWithoutStudyClientInput | SatisfactionUncheckedUpdateWithoutStudyClientInput | No |
create | SatisfactionCreateWithoutStudyClientInput | SatisfactionUncheckedCreateWithoutStudyClientInput | No |
where | SatisfactionWhereInput | No |
Name | Type | Nullable |
---|---|---|
where | SatisfactionWhereInput | No |
data | SatisfactionUpdateWithoutStudyClientInput | SatisfactionUncheckedUpdateWithoutStudyClientInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
publish | Boolean | BoolFieldUpdateOperationsInput | No |
howKnowUs | String | StringFieldUpdateOperationsInput | No |
whyUs | String | StringFieldUpdateOperationsInput | No |
satisfactionObjectives | Int | IntFieldUpdateOperationsInput | No |
easiness | Int | IntFieldUpdateOperationsInput | No |
timeElapsed | Int | IntFieldUpdateOperationsInput | No |
recommendUs | Int | IntFieldUpdateOperationsInput | No |
study | StudyUpdateOneRequiredWithoutSatisfactionNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
studyId | String | StringFieldUpdateOperationsInput | No |
publish | Boolean | BoolFieldUpdateOperationsInput | No |
howKnowUs | String | StringFieldUpdateOperationsInput | No |
whyUs | String | StringFieldUpdateOperationsInput | No |
satisfactionObjectives | Int | IntFieldUpdateOperationsInput | No |
easiness | Int | IntFieldUpdateOperationsInput | No |
timeElapsed | Int | IntFieldUpdateOperationsInput | No |
recommendUs | Int | IntFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
study | StudyCreateNestedOneWithoutClientsInput | No |
client | ClientCreateNestedOneWithoutStudyClientsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
studyId | String | No |
clientId | String | No |
Name | Type | Nullable |
---|---|---|
where | StudyClientWhereUniqueInput | No |
create | StudyClientCreateWithoutSatisfactionInput | StudyClientUncheckedCreateWithoutSatisfactionInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
studyProceedingsId | String | Null | Yes |
cdps | AdminCreateNestedManyWithoutStudiesInput | No |
auditors | AdminCreateNestedManyWithoutAuditedStudiesInput | No |
information | StudyInfosCreateNestedOneWithoutStudyInput | No |
studyProceedings | StudyProceedingsCreateNestedOneWithoutStudyInput | No |
clients | StudyClientCreateNestedManyWithoutStudyInput | No |
mri | MriCreateNestedOneWithoutStudyInput | No |
studyAssignees | StudyAssigneeCreateNestedManyWithoutStudyInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
informationId | String | No |
studyProceedingsId | String | Null | Yes |
cdps | AdminUncheckedCreateNestedManyWithoutStudiesInput | No |
auditors | AdminUncheckedCreateNestedManyWithoutAuditedStudiesInput | No |
studyProceedings | StudyProceedingsUncheckedCreateNestedOneWithoutStudyInput | No |
clients | StudyClientUncheckedCreateNestedManyWithoutStudyInput | No |
mri | MriUncheckedCreateNestedOneWithoutStudyInput | No |
studyAssignees | StudyAssigneeUncheckedCreateNestedManyWithoutStudyInput | No |
Name | Type | Nullable |
---|---|---|
where | StudyWhereUniqueInput | No |
create | StudyCreateWithoutSatisfactionInput | StudyUncheckedCreateWithoutSatisfactionInput | No |
Name | Type | Nullable |
---|---|---|
update | StudyClientUpdateWithoutSatisfactionInput | StudyClientUncheckedUpdateWithoutSatisfactionInput | No |
create | StudyClientCreateWithoutSatisfactionInput | StudyClientUncheckedCreateWithoutSatisfactionInput | No |
where | StudyClientWhereInput | No |
Name | Type | Nullable |
---|---|---|
where | StudyClientWhereInput | No |
data | StudyClientUpdateWithoutSatisfactionInput | StudyClientUncheckedUpdateWithoutSatisfactionInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
study | StudyUpdateOneRequiredWithoutClientsNestedInput | No |
client | ClientUpdateOneRequiredWithoutStudyClientsNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
studyId | String | StringFieldUpdateOperationsInput | No |
clientId | String | StringFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
update | StudyUpdateWithoutSatisfactionInput | StudyUncheckedUpdateWithoutSatisfactionInput | No |
create | StudyCreateWithoutSatisfactionInput | StudyUncheckedCreateWithoutSatisfactionInput | No |
where | StudyWhereInput | No |
Name | Type | Nullable |
---|---|---|
where | StudyWhereInput | No |
data | StudyUpdateWithoutSatisfactionInput | StudyUncheckedUpdateWithoutSatisfactionInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
studyProceedingsId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
cdps | AdminUpdateManyWithoutStudiesNestedInput | No |
auditors | AdminUpdateManyWithoutAuditedStudiesNestedInput | No |
information | StudyInfosUpdateOneRequiredWithoutStudyNestedInput | No |
studyProceedings | StudyProceedingsUpdateOneWithoutStudyNestedInput | No |
clients | StudyClientUpdateManyWithoutStudyNestedInput | No |
mri | MriUpdateOneWithoutStudyNestedInput | No |
studyAssignees | StudyAssigneeUpdateManyWithoutStudyNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
informationId | String | StringFieldUpdateOperationsInput | No |
studyProceedingsId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
cdps | AdminUncheckedUpdateManyWithoutStudiesNestedInput | No |
auditors | AdminUncheckedUpdateManyWithoutAuditedStudiesNestedInput | No |
studyProceedings | StudyProceedingsUncheckedUpdateOneWithoutStudyNestedInput | No |
clients | StudyClientUncheckedUpdateManyWithoutStudyNestedInput | No |
mri | MriUncheckedUpdateOneWithoutStudyNestedInput | No |
studyAssignees | StudyAssigneeUncheckedUpdateManyWithoutStudyNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
streetNumber | String | No |
streetName | String | No |
city | String | No |
zipCode | String | No |
country | String | No |
person | PersonCreateNestedOneWithoutAddressInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
streetNumber | String | No |
streetName | String | No |
city | String | No |
zipCode | String | No |
country | String | No |
personId | String | Null | Yes |
Name | Type | Nullable |
---|---|---|
where | AddressWhereUniqueInput | No |
create | AddressCreateWithoutCompanyInput | AddressUncheckedCreateWithoutCompanyInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
domains | CompanyInfosCreatedomainsInput | Domain[] | No |
ca | Int | Null | Yes |
size | CompanySize | Null | Yes |
Name | Type | Nullable |
---|---|---|
id | String | No |
domains | CompanyInfosCreatedomainsInput | Domain[] | No |
ca | Int | Null | Yes |
size | CompanySize | Null | Yes |
Name | Type | Nullable |
---|---|---|
where | CompanyInfosWhereUniqueInput | No |
create | CompanyInfosCreateWithoutCompanyInput | CompanyInfosUncheckedCreateWithoutCompanyInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
privateIndividual | Boolean | No |
job | String | No |
person | PersonCreateNestedOneWithoutClientsInput | No |
studyClients | StudyClientCreateNestedManyWithoutClientInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
privateIndividual | Boolean | No |
personId | String | No |
job | String | No |
studyClients | StudyClientUncheckedCreateNestedManyWithoutClientInput | No |
Name | Type | Nullable |
---|---|---|
where | ClientWhereUniqueInput | No |
create | ClientCreateWithoutCompanyInput | ClientUncheckedCreateWithoutCompanyInput | No |
Name | Type | Nullable |
---|---|---|
data | ClientCreateManyCompanyInput | ClientCreateManyCompanyInput[] | No |
skipDuplicates | Boolean | No |
Name | Type | Nullable |
---|---|---|
update | AddressUpdateWithoutCompanyInput | AddressUncheckedUpdateWithoutCompanyInput | No |
create | AddressCreateWithoutCompanyInput | AddressUncheckedCreateWithoutCompanyInput | No |
where | AddressWhereInput | No |
Name | Type | Nullable |
---|---|---|
where | AddressWhereInput | No |
data | AddressUpdateWithoutCompanyInput | AddressUncheckedUpdateWithoutCompanyInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
streetNumber | String | StringFieldUpdateOperationsInput | No |
streetName | String | StringFieldUpdateOperationsInput | No |
city | String | StringFieldUpdateOperationsInput | No |
zipCode | String | StringFieldUpdateOperationsInput | No |
country | String | StringFieldUpdateOperationsInput | No |
person | PersonUpdateOneWithoutAddressNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
streetNumber | String | StringFieldUpdateOperationsInput | No |
streetName | String | StringFieldUpdateOperationsInput | No |
city | String | StringFieldUpdateOperationsInput | No |
zipCode | String | StringFieldUpdateOperationsInput | No |
country | String | StringFieldUpdateOperationsInput | No |
personId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
Name | Type | Nullable |
---|---|---|
update | CompanyInfosUpdateWithoutCompanyInput | CompanyInfosUncheckedUpdateWithoutCompanyInput | No |
create | CompanyInfosCreateWithoutCompanyInput | CompanyInfosUncheckedCreateWithoutCompanyInput | No |
where | CompanyInfosWhereInput | No |
Name | Type | Nullable |
---|---|---|
where | CompanyInfosWhereInput | No |
data | CompanyInfosUpdateWithoutCompanyInput | CompanyInfosUncheckedUpdateWithoutCompanyInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
domains | CompanyInfosUpdatedomainsInput | Domain[] | No |
ca | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
size | CompanySize | NullableEnumCompanySizeFieldUpdateOperationsInput | Null | Yes |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
domains | CompanyInfosUpdatedomainsInput | Domain[] | No |
ca | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
size | CompanySize | NullableEnumCompanySizeFieldUpdateOperationsInput | Null | Yes |
Name | Type | Nullable |
---|---|---|
where | ClientWhereUniqueInput | No |
update | ClientUpdateWithoutCompanyInput | ClientUncheckedUpdateWithoutCompanyInput | No |
create | ClientCreateWithoutCompanyInput | ClientUncheckedCreateWithoutCompanyInput | No |
Name | Type | Nullable |
---|---|---|
where | ClientWhereUniqueInput | No |
data | ClientUpdateWithoutCompanyInput | ClientUncheckedUpdateWithoutCompanyInput | No |
Name | Type | Nullable |
---|---|---|
where | ClientScalarWhereInput | No |
data | ClientUpdateManyMutationInput | ClientUncheckedUpdateManyWithoutCompanyInput | No |
Name | Type | Nullable |
---|---|---|
AND | ClientScalarWhereInput | ClientScalarWhereInput[] | No |
OR | ClientScalarWhereInput[] | No |
NOT | ClientScalarWhereInput | ClientScalarWhereInput[] | No |
id | StringFilter | String | No |
privateIndividual | BoolFilter | Boolean | No |
companyId | StringNullableFilter | String | Null | Yes |
personId | StringFilter | String | No |
job | StringFilter | String | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
name | String | No |
address | AddressCreateNestedOneWithoutCompanyInput | No |
members | ClientCreateNestedManyWithoutCompanyInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
name | String | No |
address | AddressUncheckedCreateNestedOneWithoutCompanyInput | No |
members | ClientUncheckedCreateNestedManyWithoutCompanyInput | No |
Name | Type | Nullable |
---|---|---|
where | CompanyWhereUniqueInput | No |
create | CompanyCreateWithoutCompanyInfosInput | CompanyUncheckedCreateWithoutCompanyInfosInput | No |
Name | Type | Nullable |
---|---|---|
data | CompanyCreateManyCompanyInfosInput | CompanyCreateManyCompanyInfosInput[] | No |
skipDuplicates | Boolean | No |
Name | Type | Nullable |
---|---|---|
where | CompanyWhereUniqueInput | No |
update | CompanyUpdateWithoutCompanyInfosInput | CompanyUncheckedUpdateWithoutCompanyInfosInput | No |
create | CompanyCreateWithoutCompanyInfosInput | CompanyUncheckedCreateWithoutCompanyInfosInput | No |
Name | Type | Nullable |
---|---|---|
where | CompanyWhereUniqueInput | No |
data | CompanyUpdateWithoutCompanyInfosInput | CompanyUncheckedUpdateWithoutCompanyInfosInput | No |
Name | Type | Nullable |
---|---|---|
where | CompanyScalarWhereInput | No |
data | CompanyUpdateManyMutationInput | CompanyUncheckedUpdateManyWithoutCompanyInfosInput | No |
Name | Type | Nullable |
---|---|---|
AND | CompanyScalarWhereInput | CompanyScalarWhereInput[] | No |
OR | CompanyScalarWhereInput[] | No |
NOT | CompanyScalarWhereInput | CompanyScalarWhereInput[] | No |
id | StringFilter | String | No |
name | StringFilter | String | No |
companyInfosId | StringFilter | String | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
docsId | String | No |
created | DateTime | Null | Yes |
wrote | DateTime | Null | Yes |
audited | DateTime | Null | Yes |
sent | DateTime | Null | Yes |
approved | DateTime | Null | Yes |
signed | DateTime | Null | Yes |
end_of_validity | DateTime | Null | Yes |
writing_deadline | DateTime | Null | Yes |
documentId | String | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
docsId | String | No |
created | DateTime | Null | Yes |
wrote | DateTime | Null | Yes |
audited | DateTime | Null | Yes |
sent | DateTime | Null | Yes |
approved | DateTime | Null | Yes |
signed | DateTime | Null | Yes |
end_of_validity | DateTime | Null | Yes |
writing_deadline | DateTime | Null | Yes |
documentId | String | No |
Name | Type | Nullable |
---|---|---|
where | StatusWhereUniqueInput | No |
create | StatusCreateWithoutDocumentInput | StatusUncheckedCreateWithoutDocumentInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
assignee | AssigneeCreateNestedOneWithoutDocsInput | No |
socialSecurity | DocumentCreateNestedOneWithoutAssigneeSocialSecurityInput | No |
studentCard | DocumentCreateNestedOneWithoutAssigneeStudentCardInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
assigneeId | String | No |
socialSecurityId | String | No |
studentCardId | String | No |
Name | Type | Nullable |
---|---|---|
where | AssigneeDocsWhereUniqueInput | No |
create | AssigneeDocsCreateWithoutCniInput | AssigneeDocsUncheckedCreateWithoutCniInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
assignee | AssigneeCreateNestedOneWithoutDocsInput | No |
cni | DocumentCreateNestedOneWithoutAssigneeCniInput | No |
studentCard | DocumentCreateNestedOneWithoutAssigneeStudentCardInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
assigneeId | String | No |
cniId | String | No |
studentCardId | String | No |
Name | Type | Nullable |
---|---|---|
where | AssigneeDocsWhereUniqueInput | No |
create | AssigneeDocsCreateWithoutSocialSecurityInput | AssigneeDocsUncheckedCreateWithoutSocialSecurityInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
assignee | AssigneeCreateNestedOneWithoutDocsInput | No |
cni | DocumentCreateNestedOneWithoutAssigneeCniInput | No |
socialSecurity | DocumentCreateNestedOneWithoutAssigneeSocialSecurityInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
assigneeId | String | No |
cniId | String | No |
socialSecurityId | String | No |
Name | Type | Nullable |
---|---|---|
where | AssigneeDocsWhereUniqueInput | No |
create | AssigneeDocsCreateWithoutStudentCardInput | AssigneeDocsUncheckedCreateWithoutStudentCardInput | No |
Name | Type | Nullable |
---|---|---|
update | StatusUpdateWithoutDocumentInput | StatusUncheckedUpdateWithoutDocumentInput | No |
create | StatusCreateWithoutDocumentInput | StatusUncheckedCreateWithoutDocumentInput | No |
where | StatusWhereInput | No |
Name | Type | Nullable |
---|---|---|
where | StatusWhereInput | No |
data | StatusUpdateWithoutDocumentInput | StatusUncheckedUpdateWithoutDocumentInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
docsId | String | StringFieldUpdateOperationsInput | No |
created | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
wrote | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
audited | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
sent | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
approved | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
signed | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
end_of_validity | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
writing_deadline | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
documentId | String | StringFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
docsId | String | StringFieldUpdateOperationsInput | No |
created | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
wrote | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
audited | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
sent | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
approved | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
signed | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
end_of_validity | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
writing_deadline | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
documentId | String | StringFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
update | AssigneeDocsUpdateWithoutCniInput | AssigneeDocsUncheckedUpdateWithoutCniInput | No |
create | AssigneeDocsCreateWithoutCniInput | AssigneeDocsUncheckedCreateWithoutCniInput | No |
where | AssigneeDocsWhereInput | No |
Name | Type | Nullable |
---|---|---|
where | AssigneeDocsWhereInput | No |
data | AssigneeDocsUpdateWithoutCniInput | AssigneeDocsUncheckedUpdateWithoutCniInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
assignee | AssigneeUpdateOneRequiredWithoutDocsNestedInput | No |
socialSecurity | DocumentUpdateOneRequiredWithoutAssigneeSocialSecurityNestedInput | No |
studentCard | DocumentUpdateOneRequiredWithoutAssigneeStudentCardNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
assigneeId | String | StringFieldUpdateOperationsInput | No |
socialSecurityId | String | StringFieldUpdateOperationsInput | No |
studentCardId | String | StringFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
update | AssigneeDocsUpdateWithoutSocialSecurityInput | AssigneeDocsUncheckedUpdateWithoutSocialSecurityInput | No |
create | AssigneeDocsCreateWithoutSocialSecurityInput | AssigneeDocsUncheckedCreateWithoutSocialSecurityInput | No |
where | AssigneeDocsWhereInput | No |
Name | Type | Nullable |
---|---|---|
where | AssigneeDocsWhereInput | No |
data | AssigneeDocsUpdateWithoutSocialSecurityInput | AssigneeDocsUncheckedUpdateWithoutSocialSecurityInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
assignee | AssigneeUpdateOneRequiredWithoutDocsNestedInput | No |
cni | DocumentUpdateOneRequiredWithoutAssigneeCniNestedInput | No |
studentCard | DocumentUpdateOneRequiredWithoutAssigneeStudentCardNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
assigneeId | String | StringFieldUpdateOperationsInput | No |
cniId | String | StringFieldUpdateOperationsInput | No |
studentCardId | String | StringFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
update | AssigneeDocsUpdateWithoutStudentCardInput | AssigneeDocsUncheckedUpdateWithoutStudentCardInput | No |
create | AssigneeDocsCreateWithoutStudentCardInput | AssigneeDocsUncheckedCreateWithoutStudentCardInput | No |
where | AssigneeDocsWhereInput | No |
Name | Type | Nullable |
---|---|---|
where | AssigneeDocsWhereInput | No |
data | AssigneeDocsUpdateWithoutStudentCardInput | AssigneeDocsUncheckedUpdateWithoutStudentCardInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
assignee | AssigneeUpdateOneRequiredWithoutDocsNestedInput | No |
cni | DocumentUpdateOneRequiredWithoutAssigneeCniNestedInput | No |
socialSecurity | DocumentUpdateOneRequiredWithoutAssigneeSocialSecurityNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
assigneeId | String | StringFieldUpdateOperationsInput | No |
cniId | String | StringFieldUpdateOperationsInput | No |
socialSecurityId | String | StringFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
title | String | No |
googleId | String | No |
type | String | No |
studyDocsId | String | Null | Yes |
assigneeCni | AssigneeDocsCreateNestedOneWithoutCniInput | No |
assigneeSocialSecurity | AssigneeDocsCreateNestedOneWithoutSocialSecurityInput | No |
assigneeStudentCard | AssigneeDocsCreateNestedOneWithoutStudentCardInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
title | String | No |
googleId | String | No |
type | String | No |
studyDocsId | String | Null | Yes |
assigneeCni | AssigneeDocsUncheckedCreateNestedOneWithoutCniInput | No |
assigneeSocialSecurity | AssigneeDocsUncheckedCreateNestedOneWithoutSocialSecurityInput | No |
assigneeStudentCard | AssigneeDocsUncheckedCreateNestedOneWithoutStudentCardInput | No |
Name | Type | Nullable |
---|---|---|
where | DocumentWhereUniqueInput | No |
create | DocumentCreateWithoutStatusInput | DocumentUncheckedCreateWithoutStatusInput | No |
Name | Type | Nullable |
---|---|---|
data | DocumentCreateManyStatusInput | DocumentCreateManyStatusInput[] | No |
skipDuplicates | Boolean | No |
Name | Type | Nullable |
---|---|---|
where | DocumentWhereUniqueInput | No |
update | DocumentUpdateWithoutStatusInput | DocumentUncheckedUpdateWithoutStatusInput | No |
create | DocumentCreateWithoutStatusInput | DocumentUncheckedCreateWithoutStatusInput | No |
Name | Type | Nullable |
---|---|---|
where | DocumentWhereUniqueInput | No |
data | DocumentUpdateWithoutStatusInput | DocumentUncheckedUpdateWithoutStatusInput | No |
Name | Type | Nullable |
---|---|---|
where | DocumentScalarWhereInput | No |
data | DocumentUpdateManyMutationInput | DocumentUncheckedUpdateManyWithoutStatusInput | No |
Name | Type | Nullable |
---|---|---|
AND | DocumentScalarWhereInput | DocumentScalarWhereInput[] | No |
OR | DocumentScalarWhereInput[] | No |
NOT | DocumentScalarWhereInput | DocumentScalarWhereInput[] | No |
id | StringFilter | String | No |
title | StringFilter | String | No |
googleId | StringFilter | String | No |
type | StringFilter | String | No |
studyDocsId | StringNullableFilter | String | Null | Yes |
statusId | StringNullableFilter | String | Null | Yes |
Name | Type | Nullable |
---|---|---|
id | String | No |
studyProceedingsId | String | Null | Yes |
cdps | AdminCreateNestedManyWithoutStudiesInput | No |
auditors | AdminCreateNestedManyWithoutAuditedStudiesInput | No |
information | StudyInfosCreateNestedOneWithoutStudyInput | No |
studyProceedings | StudyProceedingsCreateNestedOneWithoutStudyInput | No |
clients | StudyClientCreateNestedManyWithoutStudyInput | No |
studyAssignees | StudyAssigneeCreateNestedManyWithoutStudyInput | No |
satisfaction | SatisfactionCreateNestedOneWithoutStudyInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
informationId | String | No |
studyProceedingsId | String | Null | Yes |
cdps | AdminUncheckedCreateNestedManyWithoutStudiesInput | No |
auditors | AdminUncheckedCreateNestedManyWithoutAuditedStudiesInput | No |
studyProceedings | StudyProceedingsUncheckedCreateNestedOneWithoutStudyInput | No |
clients | StudyClientUncheckedCreateNestedManyWithoutStudyInput | No |
studyAssignees | StudyAssigneeUncheckedCreateNestedManyWithoutStudyInput | No |
satisfaction | SatisfactionUncheckedCreateNestedOneWithoutStudyInput | No |
Name | Type | Nullable |
---|---|---|
where | StudyWhereUniqueInput | No |
create | StudyCreateWithoutMriInput | StudyUncheckedCreateWithoutMriInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
experience | String | No |
knowledge | String | No |
ideas | String | No |
jeExperience | Int | No |
studyAssignees | StudyAssigneeCreateNestedOneWithoutMriFormInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
experience | String | No |
knowledge | String | No |
ideas | String | No |
jeExperience | Int | No |
studyAssignees | StudyAssigneeUncheckedCreateNestedOneWithoutMriFormInput | No |
Name | Type | Nullable |
---|---|---|
where | MriFormWhereUniqueInput | No |
create | MriFormCreateWithoutMriInput | MriFormUncheckedCreateWithoutMriInput | No |
Name | Type | Nullable |
---|---|---|
data | MriFormCreateManyMriInput | MriFormCreateManyMriInput[] | No |
skipDuplicates | Boolean | No |
Name | Type | Nullable |
---|---|---|
update | StudyUpdateWithoutMriInput | StudyUncheckedUpdateWithoutMriInput | No |
create | StudyCreateWithoutMriInput | StudyUncheckedCreateWithoutMriInput | No |
where | StudyWhereInput | No |
Name | Type | Nullable |
---|---|---|
where | StudyWhereInput | No |
data | StudyUpdateWithoutMriInput | StudyUncheckedUpdateWithoutMriInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
studyProceedingsId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
cdps | AdminUpdateManyWithoutStudiesNestedInput | No |
auditors | AdminUpdateManyWithoutAuditedStudiesNestedInput | No |
information | StudyInfosUpdateOneRequiredWithoutStudyNestedInput | No |
studyProceedings | StudyProceedingsUpdateOneWithoutStudyNestedInput | No |
clients | StudyClientUpdateManyWithoutStudyNestedInput | No |
studyAssignees | StudyAssigneeUpdateManyWithoutStudyNestedInput | No |
satisfaction | SatisfactionUpdateOneWithoutStudyNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
informationId | String | StringFieldUpdateOperationsInput | No |
studyProceedingsId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
cdps | AdminUncheckedUpdateManyWithoutStudiesNestedInput | No |
auditors | AdminUncheckedUpdateManyWithoutAuditedStudiesNestedInput | No |
studyProceedings | StudyProceedingsUncheckedUpdateOneWithoutStudyNestedInput | No |
clients | StudyClientUncheckedUpdateManyWithoutStudyNestedInput | No |
studyAssignees | StudyAssigneeUncheckedUpdateManyWithoutStudyNestedInput | No |
satisfaction | SatisfactionUncheckedUpdateOneWithoutStudyNestedInput | No |
Name | Type | Nullable |
---|---|---|
where | MriFormWhereUniqueInput | No |
update | MriFormUpdateWithoutMriInput | MriFormUncheckedUpdateWithoutMriInput | No |
create | MriFormCreateWithoutMriInput | MriFormUncheckedCreateWithoutMriInput | No |
Name | Type | Nullable |
---|---|---|
where | MriFormWhereUniqueInput | No |
data | MriFormUpdateWithoutMriInput | MriFormUncheckedUpdateWithoutMriInput | No |
Name | Type | Nullable |
---|---|---|
where | MriFormScalarWhereInput | No |
data | MriFormUpdateManyMutationInput | MriFormUncheckedUpdateManyWithoutMriInput | No |
Name | Type | Nullable |
---|---|---|
AND | MriFormScalarWhereInput | MriFormScalarWhereInput[] | No |
OR | MriFormScalarWhereInput[] | No |
NOT | MriFormScalarWhereInput | MriFormScalarWhereInput[] | No |
id | StringFilter | String | No |
mriId | StringFilter | String | No |
experience | StringFilter | String | No |
knowledge | StringFilter | String | No |
ideas | StringFilter | String | No |
jeExperience | IntFilter | Int | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
cni | DocumentCreateNestedOneWithoutAssigneeCniInput | No |
socialSecurity | DocumentCreateNestedOneWithoutAssigneeSocialSecurityInput | No |
studentCard | DocumentCreateNestedOneWithoutAssigneeStudentCardInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
cniId | String | No |
socialSecurityId | String | No |
studentCardId | String | No |
Name | Type | Nullable |
---|---|---|
where | AssigneeDocsWhereUniqueInput | No |
create | AssigneeDocsCreateWithoutAssigneeInput | AssigneeDocsUncheckedCreateWithoutAssigneeInput | No |
Name | Type | Nullable |
---|---|---|
data | AssigneeDocsCreateManyAssigneeInput | AssigneeDocsCreateManyAssigneeInput[] | No |
skipDuplicates | Boolean | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
age | Int | No |
promotion | Int | No |
hasScholarship | Boolean | No |
oldJet | Boolean | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
age | Int | No |
promotion | Int | No |
hasScholarship | Boolean | No |
oldJet | Boolean | No |
Name | Type | Nullable |
---|---|---|
where | AssigneeInfosWhereUniqueInput | No |
create | AssigneeInfosCreateWithoutAssigneeInput | AssigneeInfosUncheckedCreateWithoutAssigneeInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
String | Null | Yes | |
firstName | String | No |
lastName | String | No |
number | String | Null | Yes |
address | AddressCreateNestedOneWithoutPersonInput | No |
user | UserCreateNestedOneWithoutPersonInput | No |
clients | ClientCreateNestedOneWithoutPersonInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
String | Null | Yes | |
firstName | String | No |
lastName | String | No |
number | String | Null | Yes |
address | AddressUncheckedCreateNestedOneWithoutPersonInput | No |
user | UserUncheckedCreateNestedOneWithoutPersonInput | No |
clients | ClientUncheckedCreateNestedOneWithoutPersonInput | No |
Name | Type | Nullable |
---|---|---|
where | PersonWhereUniqueInput | No |
create | PersonCreateWithoutAssigneeInput | PersonUncheckedCreateWithoutAssigneeInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
selectionNotes | String | No |
taken | Boolean | No |
study | StudyCreateNestedOneWithoutStudyAssigneesInput | No |
formInterview | FormInterviewsCreateNestedOneWithoutStudyAssigneesInput | No |
mriForm | MriFormCreateNestedOneWithoutStudyAssigneesInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
studyId | String | No |
formInterviewId | String | No |
mriFormId | String | No |
selectionNotes | String | No |
taken | Boolean | No |
Name | Type | Nullable |
---|---|---|
where | StudyAssigneeWhereUniqueInput | No |
create | StudyAssigneeCreateWithoutAssigneeInput | StudyAssigneeUncheckedCreateWithoutAssigneeInput | No |
Name | Type | Nullable |
---|---|---|
data | StudyAssigneeCreateManyAssigneeInput | StudyAssigneeCreateManyAssigneeInput[] | No |
skipDuplicates | Boolean | No |
Name | Type | Nullable |
---|---|---|
where | AssigneeDocsWhereUniqueInput | No |
update | AssigneeDocsUpdateWithoutAssigneeInput | AssigneeDocsUncheckedUpdateWithoutAssigneeInput | No |
create | AssigneeDocsCreateWithoutAssigneeInput | AssigneeDocsUncheckedCreateWithoutAssigneeInput | No |
Name | Type | Nullable |
---|---|---|
where | AssigneeDocsWhereUniqueInput | No |
data | AssigneeDocsUpdateWithoutAssigneeInput | AssigneeDocsUncheckedUpdateWithoutAssigneeInput | No |
Name | Type | Nullable |
---|---|---|
where | AssigneeDocsScalarWhereInput | No |
data | AssigneeDocsUpdateManyMutationInput | AssigneeDocsUncheckedUpdateManyWithoutAssigneeInput | No |
Name | Type | Nullable |
---|---|---|
AND | AssigneeDocsScalarWhereInput | AssigneeDocsScalarWhereInput[] | No |
OR | AssigneeDocsScalarWhereInput[] | No |
NOT | AssigneeDocsScalarWhereInput | AssigneeDocsScalarWhereInput[] | No |
id | StringFilter | String | No |
assigneeId | StringFilter | String | No |
cniId | StringFilter | String | No |
socialSecurityId | StringFilter | String | No |
studentCardId | StringFilter | String | No |
Name | Type | Nullable |
---|---|---|
update | AssigneeInfosUpdateWithoutAssigneeInput | AssigneeInfosUncheckedUpdateWithoutAssigneeInput | No |
create | AssigneeInfosCreateWithoutAssigneeInput | AssigneeInfosUncheckedCreateWithoutAssigneeInput | No |
where | AssigneeInfosWhereInput | No |
Name | Type | Nullable |
---|---|---|
where | AssigneeInfosWhereInput | No |
data | AssigneeInfosUpdateWithoutAssigneeInput | AssigneeInfosUncheckedUpdateWithoutAssigneeInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
age | Int | IntFieldUpdateOperationsInput | No |
promotion | Int | IntFieldUpdateOperationsInput | No |
hasScholarship | Boolean | BoolFieldUpdateOperationsInput | No |
oldJet | Boolean | BoolFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
age | Int | IntFieldUpdateOperationsInput | No |
promotion | Int | IntFieldUpdateOperationsInput | No |
hasScholarship | Boolean | BoolFieldUpdateOperationsInput | No |
oldJet | Boolean | BoolFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
update | PersonUpdateWithoutAssigneeInput | PersonUncheckedUpdateWithoutAssigneeInput | No |
create | PersonCreateWithoutAssigneeInput | PersonUncheckedCreateWithoutAssigneeInput | No |
where | PersonWhereInput | No |
Name | Type | Nullable |
---|---|---|
where | PersonWhereInput | No |
data | PersonUpdateWithoutAssigneeInput | PersonUncheckedUpdateWithoutAssigneeInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
String | NullableStringFieldUpdateOperationsInput | Null | Yes | |
firstName | String | StringFieldUpdateOperationsInput | No |
lastName | String | StringFieldUpdateOperationsInput | No |
number | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
address | AddressUpdateOneWithoutPersonNestedInput | No |
user | UserUpdateOneWithoutPersonNestedInput | No |
clients | ClientUpdateOneWithoutPersonNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
String | NullableStringFieldUpdateOperationsInput | Null | Yes | |
firstName | String | StringFieldUpdateOperationsInput | No |
lastName | String | StringFieldUpdateOperationsInput | No |
number | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
address | AddressUncheckedUpdateOneWithoutPersonNestedInput | No |
user | UserUncheckedUpdateOneWithoutPersonNestedInput | No |
clients | ClientUncheckedUpdateOneWithoutPersonNestedInput | No |
Name | Type | Nullable |
---|---|---|
where | StudyAssigneeWhereUniqueInput | No |
update | StudyAssigneeUpdateWithoutAssigneeInput | StudyAssigneeUncheckedUpdateWithoutAssigneeInput | No |
create | StudyAssigneeCreateWithoutAssigneeInput | StudyAssigneeUncheckedCreateWithoutAssigneeInput | No |
Name | Type | Nullable |
---|---|---|
where | StudyAssigneeWhereUniqueInput | No |
data | StudyAssigneeUpdateWithoutAssigneeInput | StudyAssigneeUncheckedUpdateWithoutAssigneeInput | No |
Name | Type | Nullable |
---|---|---|
where | StudyAssigneeScalarWhereInput | No |
data | StudyAssigneeUpdateManyMutationInput | StudyAssigneeUncheckedUpdateManyWithoutAssigneeInput | No |
Name | Type | Nullable |
---|---|---|
AND | StudyAssigneeScalarWhereInput | StudyAssigneeScalarWhereInput[] | No |
OR | StudyAssigneeScalarWhereInput[] | No |
NOT | StudyAssigneeScalarWhereInput | StudyAssigneeScalarWhereInput[] | No |
id | StringFilter | String | No |
studyId | StringFilter | String | No |
assigneeId | StringFilter | String | No |
formInterviewId | StringFilter | String | No |
mriFormId | StringFilter | String | No |
selectionNotes | StringFilter | String | No |
taken | BoolFilter | Boolean | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
nbApplications | Int | No |
docs | AssigneeDocsCreateNestedManyWithoutAssigneeInput | No |
person | PersonCreateNestedOneWithoutAssigneeInput | No |
studyAssign | StudyAssigneeCreateNestedManyWithoutAssigneeInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
nbApplications | Int | No |
peopleId | String | No |
docs | AssigneeDocsUncheckedCreateNestedManyWithoutAssigneeInput | No |
studyAssign | StudyAssigneeUncheckedCreateNestedManyWithoutAssigneeInput | No |
Name | Type | Nullable |
---|---|---|
where | AssigneeWhereUniqueInput | No |
create | AssigneeCreateWithoutInformationInput | AssigneeUncheckedCreateWithoutInformationInput | No |
Name | Type | Nullable |
---|---|---|
update | AssigneeUpdateWithoutInformationInput | AssigneeUncheckedUpdateWithoutInformationInput | No |
create | AssigneeCreateWithoutInformationInput | AssigneeUncheckedCreateWithoutInformationInput | No |
where | AssigneeWhereInput | No |
Name | Type | Nullable |
---|---|---|
where | AssigneeWhereInput | No |
data | AssigneeUpdateWithoutInformationInput | AssigneeUncheckedUpdateWithoutInformationInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
nbApplications | Int | IntFieldUpdateOperationsInput | No |
docs | AssigneeDocsUpdateManyWithoutAssigneeNestedInput | No |
person | PersonUpdateOneRequiredWithoutAssigneeNestedInput | No |
studyAssign | StudyAssigneeUpdateManyWithoutAssigneeNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
nbApplications | Int | IntFieldUpdateOperationsInput | No |
peopleId | String | StringFieldUpdateOperationsInput | No |
docs | AssigneeDocsUncheckedUpdateManyWithoutAssigneeNestedInput | No |
studyAssign | StudyAssigneeUncheckedUpdateManyWithoutAssigneeNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
nbApplications | Int | No |
information | AssigneeInfosCreateNestedOneWithoutAssigneeInput | No |
person | PersonCreateNestedOneWithoutAssigneeInput | No |
studyAssign | StudyAssigneeCreateNestedManyWithoutAssigneeInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
nbApplications | Int | No |
peopleId | String | No |
information | AssigneeInfosUncheckedCreateNestedOneWithoutAssigneeInput | No |
studyAssign | StudyAssigneeUncheckedCreateNestedManyWithoutAssigneeInput | No |
Name | Type | Nullable |
---|---|---|
where | AssigneeWhereUniqueInput | No |
create | AssigneeCreateWithoutDocsInput | AssigneeUncheckedCreateWithoutDocsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
title | String | No |
googleId | String | No |
type | String | No |
studyDocsId | String | Null | Yes |
status | StatusCreateNestedOneWithoutDocumentInput | No |
assigneeSocialSecurity | AssigneeDocsCreateNestedOneWithoutSocialSecurityInput | No |
assigneeStudentCard | AssigneeDocsCreateNestedOneWithoutStudentCardInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
title | String | No |
googleId | String | No |
type | String | No |
studyDocsId | String | Null | Yes |
statusId | String | Null | Yes |
assigneeSocialSecurity | AssigneeDocsUncheckedCreateNestedOneWithoutSocialSecurityInput | No |
assigneeStudentCard | AssigneeDocsUncheckedCreateNestedOneWithoutStudentCardInput | No |
Name | Type | Nullable |
---|---|---|
where | DocumentWhereUniqueInput | No |
create | DocumentCreateWithoutAssigneeCniInput | DocumentUncheckedCreateWithoutAssigneeCniInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
title | String | No |
googleId | String | No |
type | String | No |
studyDocsId | String | Null | Yes |
status | StatusCreateNestedOneWithoutDocumentInput | No |
assigneeCni | AssigneeDocsCreateNestedOneWithoutCniInput | No |
assigneeStudentCard | AssigneeDocsCreateNestedOneWithoutStudentCardInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
title | String | No |
googleId | String | No |
type | String | No |
studyDocsId | String | Null | Yes |
statusId | String | Null | Yes |
assigneeCni | AssigneeDocsUncheckedCreateNestedOneWithoutCniInput | No |
assigneeStudentCard | AssigneeDocsUncheckedCreateNestedOneWithoutStudentCardInput | No |
Name | Type | Nullable |
---|---|---|
where | DocumentWhereUniqueInput | No |
create | DocumentCreateWithoutAssigneeSocialSecurityInput | DocumentUncheckedCreateWithoutAssigneeSocialSecurityInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
title | String | No |
googleId | String | No |
type | String | No |
studyDocsId | String | Null | Yes |
status | StatusCreateNestedOneWithoutDocumentInput | No |
assigneeCni | AssigneeDocsCreateNestedOneWithoutCniInput | No |
assigneeSocialSecurity | AssigneeDocsCreateNestedOneWithoutSocialSecurityInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
title | String | No |
googleId | String | No |
type | String | No |
studyDocsId | String | Null | Yes |
statusId | String | Null | Yes |
assigneeCni | AssigneeDocsUncheckedCreateNestedOneWithoutCniInput | No |
assigneeSocialSecurity | AssigneeDocsUncheckedCreateNestedOneWithoutSocialSecurityInput | No |
Name | Type | Nullable |
---|---|---|
where | DocumentWhereUniqueInput | No |
create | DocumentCreateWithoutAssigneeStudentCardInput | DocumentUncheckedCreateWithoutAssigneeStudentCardInput | No |
Name | Type | Nullable |
---|---|---|
update | AssigneeUpdateWithoutDocsInput | AssigneeUncheckedUpdateWithoutDocsInput | No |
create | AssigneeCreateWithoutDocsInput | AssigneeUncheckedCreateWithoutDocsInput | No |
where | AssigneeWhereInput | No |
Name | Type | Nullable |
---|---|---|
where | AssigneeWhereInput | No |
data | AssigneeUpdateWithoutDocsInput | AssigneeUncheckedUpdateWithoutDocsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
nbApplications | Int | IntFieldUpdateOperationsInput | No |
information | AssigneeInfosUpdateOneWithoutAssigneeNestedInput | No |
person | PersonUpdateOneRequiredWithoutAssigneeNestedInput | No |
studyAssign | StudyAssigneeUpdateManyWithoutAssigneeNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
nbApplications | Int | IntFieldUpdateOperationsInput | No |
peopleId | String | StringFieldUpdateOperationsInput | No |
information | AssigneeInfosUncheckedUpdateOneWithoutAssigneeNestedInput | No |
studyAssign | StudyAssigneeUncheckedUpdateManyWithoutAssigneeNestedInput | No |
Name | Type | Nullable |
---|---|---|
update | DocumentUpdateWithoutAssigneeCniInput | DocumentUncheckedUpdateWithoutAssigneeCniInput | No |
create | DocumentCreateWithoutAssigneeCniInput | DocumentUncheckedCreateWithoutAssigneeCniInput | No |
where | DocumentWhereInput | No |
Name | Type | Nullable |
---|---|---|
where | DocumentWhereInput | No |
data | DocumentUpdateWithoutAssigneeCniInput | DocumentUncheckedUpdateWithoutAssigneeCniInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
title | String | StringFieldUpdateOperationsInput | No |
googleId | String | StringFieldUpdateOperationsInput | No |
type | String | StringFieldUpdateOperationsInput | No |
studyDocsId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
status | StatusUpdateOneWithoutDocumentNestedInput | No |
assigneeSocialSecurity | AssigneeDocsUpdateOneWithoutSocialSecurityNestedInput | No |
assigneeStudentCard | AssigneeDocsUpdateOneWithoutStudentCardNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
title | String | StringFieldUpdateOperationsInput | No |
googleId | String | StringFieldUpdateOperationsInput | No |
type | String | StringFieldUpdateOperationsInput | No |
studyDocsId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
statusId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
assigneeSocialSecurity | AssigneeDocsUncheckedUpdateOneWithoutSocialSecurityNestedInput | No |
assigneeStudentCard | AssigneeDocsUncheckedUpdateOneWithoutStudentCardNestedInput | No |
Name | Type | Nullable |
---|---|---|
where | DocumentWhereInput | No |
data | DocumentUpdateWithoutAssigneeSocialSecurityInput | DocumentUncheckedUpdateWithoutAssigneeSocialSecurityInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
title | String | StringFieldUpdateOperationsInput | No |
googleId | String | StringFieldUpdateOperationsInput | No |
type | String | StringFieldUpdateOperationsInput | No |
studyDocsId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
status | StatusUpdateOneWithoutDocumentNestedInput | No |
assigneeCni | AssigneeDocsUpdateOneWithoutCniNestedInput | No |
assigneeStudentCard | AssigneeDocsUpdateOneWithoutStudentCardNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
title | String | StringFieldUpdateOperationsInput | No |
googleId | String | StringFieldUpdateOperationsInput | No |
type | String | StringFieldUpdateOperationsInput | No |
studyDocsId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
statusId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
assigneeCni | AssigneeDocsUncheckedUpdateOneWithoutCniNestedInput | No |
assigneeStudentCard | AssigneeDocsUncheckedUpdateOneWithoutStudentCardNestedInput | No |
Name | Type | Nullable |
---|---|---|
update | DocumentUpdateWithoutAssigneeStudentCardInput | DocumentUncheckedUpdateWithoutAssigneeStudentCardInput | No |
create | DocumentCreateWithoutAssigneeStudentCardInput | DocumentUncheckedCreateWithoutAssigneeStudentCardInput | No |
where | DocumentWhereInput | No |
Name | Type | Nullable |
---|---|---|
where | DocumentWhereInput | No |
data | DocumentUpdateWithoutAssigneeStudentCardInput | DocumentUncheckedUpdateWithoutAssigneeStudentCardInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
title | String | StringFieldUpdateOperationsInput | No |
googleId | String | StringFieldUpdateOperationsInput | No |
type | String | StringFieldUpdateOperationsInput | No |
studyDocsId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
status | StatusUpdateOneWithoutDocumentNestedInput | No |
assigneeCni | AssigneeDocsUpdateOneWithoutCniNestedInput | No |
assigneeSocialSecurity | AssigneeDocsUpdateOneWithoutSocialSecurityNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
title | String | StringFieldUpdateOperationsInput | No |
googleId | String | StringFieldUpdateOperationsInput | No |
type | String | StringFieldUpdateOperationsInput | No |
studyDocsId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
statusId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
assigneeCni | AssigneeDocsUncheckedUpdateOneWithoutCniNestedInput | No |
assigneeSocialSecurity | AssigneeDocsUncheckedUpdateOneWithoutSocialSecurityNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
studyProceedingsId | String | Null | Yes |
cdps | AdminCreateNestedManyWithoutStudiesInput | No |
auditors | AdminCreateNestedManyWithoutAuditedStudiesInput | No |
information | StudyInfosCreateNestedOneWithoutStudyInput | No |
studyProceedings | StudyProceedingsCreateNestedOneWithoutStudyInput | No |
clients | StudyClientCreateNestedManyWithoutStudyInput | No |
mri | MriCreateNestedOneWithoutStudyInput | No |
satisfaction | SatisfactionCreateNestedOneWithoutStudyInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
informationId | String | No |
studyProceedingsId | String | Null | Yes |
cdps | AdminUncheckedCreateNestedManyWithoutStudiesInput | No |
auditors | AdminUncheckedCreateNestedManyWithoutAuditedStudiesInput | No |
studyProceedings | StudyProceedingsUncheckedCreateNestedOneWithoutStudyInput | No |
clients | StudyClientUncheckedCreateNestedManyWithoutStudyInput | No |
mri | MriUncheckedCreateNestedOneWithoutStudyInput | No |
satisfaction | SatisfactionUncheckedCreateNestedOneWithoutStudyInput | No |
Name | Type | Nullable |
---|---|---|
where | StudyWhereUniqueInput | No |
create | StudyCreateWithoutStudyAssigneesInput | StudyUncheckedCreateWithoutStudyAssigneesInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
nbApplications | Int | No |
docs | AssigneeDocsCreateNestedManyWithoutAssigneeInput | No |
information | AssigneeInfosCreateNestedOneWithoutAssigneeInput | No |
person | PersonCreateNestedOneWithoutAssigneeInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
nbApplications | Int | No |
peopleId | String | No |
docs | AssigneeDocsUncheckedCreateNestedManyWithoutAssigneeInput | No |
information | AssigneeInfosUncheckedCreateNestedOneWithoutAssigneeInput | No |
Name | Type | Nullable |
---|---|---|
where | AssigneeWhereUniqueInput | No |
create | AssigneeCreateWithoutStudyAssignInput | AssigneeUncheckedCreateWithoutStudyAssignInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
available | Boolean | No |
approach | String | No |
courses | String | No |
starS | String | No |
starT | String | No |
starA | String | No |
starR | String | No |
motivation | String | No |
cdpRequirements | String | No |
questions | String | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
available | Boolean | No |
approach | String | No |
courses | String | No |
starS | String | No |
starT | String | No |
starA | String | No |
starR | String | No |
motivation | String | No |
cdpRequirements | String | No |
questions | String | No |
Name | Type | Nullable |
---|---|---|
where | FormInterviewsWhereUniqueInput | No |
create | FormInterviewsCreateWithoutStudyAssigneesInput | FormInterviewsUncheckedCreateWithoutStudyAssigneesInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
experience | String | No |
knowledge | String | No |
ideas | String | No |
jeExperience | Int | No |
mri | MriCreateNestedOneWithoutFormMRIsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
mriId | String | No |
experience | String | No |
knowledge | String | No |
ideas | String | No |
jeExperience | Int | No |
Name | Type | Nullable |
---|---|---|
where | MriFormWhereUniqueInput | No |
create | MriFormCreateWithoutStudyAssigneesInput | MriFormUncheckedCreateWithoutStudyAssigneesInput | No |
Name | Type | Nullable |
---|---|---|
update | StudyUpdateWithoutStudyAssigneesInput | StudyUncheckedUpdateWithoutStudyAssigneesInput | No |
create | StudyCreateWithoutStudyAssigneesInput | StudyUncheckedCreateWithoutStudyAssigneesInput | No |
where | StudyWhereInput | No |
Name | Type | Nullable |
---|---|---|
where | StudyWhereInput | No |
data | StudyUpdateWithoutStudyAssigneesInput | StudyUncheckedUpdateWithoutStudyAssigneesInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
studyProceedingsId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
cdps | AdminUpdateManyWithoutStudiesNestedInput | No |
auditors | AdminUpdateManyWithoutAuditedStudiesNestedInput | No |
information | StudyInfosUpdateOneRequiredWithoutStudyNestedInput | No |
studyProceedings | StudyProceedingsUpdateOneWithoutStudyNestedInput | No |
clients | StudyClientUpdateManyWithoutStudyNestedInput | No |
mri | MriUpdateOneWithoutStudyNestedInput | No |
satisfaction | SatisfactionUpdateOneWithoutStudyNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
informationId | String | StringFieldUpdateOperationsInput | No |
studyProceedingsId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
cdps | AdminUncheckedUpdateManyWithoutStudiesNestedInput | No |
auditors | AdminUncheckedUpdateManyWithoutAuditedStudiesNestedInput | No |
studyProceedings | StudyProceedingsUncheckedUpdateOneWithoutStudyNestedInput | No |
clients | StudyClientUncheckedUpdateManyWithoutStudyNestedInput | No |
mri | MriUncheckedUpdateOneWithoutStudyNestedInput | No |
satisfaction | SatisfactionUncheckedUpdateOneWithoutStudyNestedInput | No |
Name | Type | Nullable |
---|---|---|
update | AssigneeUpdateWithoutStudyAssignInput | AssigneeUncheckedUpdateWithoutStudyAssignInput | No |
create | AssigneeCreateWithoutStudyAssignInput | AssigneeUncheckedCreateWithoutStudyAssignInput | No |
where | AssigneeWhereInput | No |
Name | Type | Nullable |
---|---|---|
where | AssigneeWhereInput | No |
data | AssigneeUpdateWithoutStudyAssignInput | AssigneeUncheckedUpdateWithoutStudyAssignInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
nbApplications | Int | IntFieldUpdateOperationsInput | No |
docs | AssigneeDocsUpdateManyWithoutAssigneeNestedInput | No |
information | AssigneeInfosUpdateOneWithoutAssigneeNestedInput | No |
person | PersonUpdateOneRequiredWithoutAssigneeNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
nbApplications | Int | IntFieldUpdateOperationsInput | No |
peopleId | String | StringFieldUpdateOperationsInput | No |
docs | AssigneeDocsUncheckedUpdateManyWithoutAssigneeNestedInput | No |
information | AssigneeInfosUncheckedUpdateOneWithoutAssigneeNestedInput | No |
Name | Type | Nullable |
---|---|---|
where | FormInterviewsWhereInput | No |
data | FormInterviewsUpdateWithoutStudyAssigneesInput | FormInterviewsUncheckedUpdateWithoutStudyAssigneesInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
available | Boolean | BoolFieldUpdateOperationsInput | No |
approach | String | StringFieldUpdateOperationsInput | No |
courses | String | StringFieldUpdateOperationsInput | No |
starS | String | StringFieldUpdateOperationsInput | No |
starT | String | StringFieldUpdateOperationsInput | No |
starA | String | StringFieldUpdateOperationsInput | No |
starR | String | StringFieldUpdateOperationsInput | No |
motivation | String | StringFieldUpdateOperationsInput | No |
cdpRequirements | String | StringFieldUpdateOperationsInput | No |
questions | String | StringFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
available | Boolean | BoolFieldUpdateOperationsInput | No |
approach | String | StringFieldUpdateOperationsInput | No |
courses | String | StringFieldUpdateOperationsInput | No |
starS | String | StringFieldUpdateOperationsInput | No |
starT | String | StringFieldUpdateOperationsInput | No |
starA | String | StringFieldUpdateOperationsInput | No |
starR | String | StringFieldUpdateOperationsInput | No |
motivation | String | StringFieldUpdateOperationsInput | No |
cdpRequirements | String | StringFieldUpdateOperationsInput | No |
questions | String | StringFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
update | MriFormUpdateWithoutStudyAssigneesInput | MriFormUncheckedUpdateWithoutStudyAssigneesInput | No |
create | MriFormCreateWithoutStudyAssigneesInput | MriFormUncheckedCreateWithoutStudyAssigneesInput | No |
where | MriFormWhereInput | No |
Name | Type | Nullable |
---|---|---|
where | MriFormWhereInput | No |
data | MriFormUpdateWithoutStudyAssigneesInput | MriFormUncheckedUpdateWithoutStudyAssigneesInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
experience | String | StringFieldUpdateOperationsInput | No |
knowledge | String | StringFieldUpdateOperationsInput | No |
ideas | String | StringFieldUpdateOperationsInput | No |
jeExperience | Int | IntFieldUpdateOperationsInput | No |
mri | MriUpdateOneRequiredWithoutFormMRIsNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
mriId | String | StringFieldUpdateOperationsInput | No |
experience | String | StringFieldUpdateOperationsInput | No |
knowledge | String | StringFieldUpdateOperationsInput | No |
ideas | String | StringFieldUpdateOperationsInput | No |
jeExperience | Int | IntFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
wageLowerBound | Int | Null | Yes |
wageUpperBound | Int | Null | Yes |
wageLevel | Level | Null | Yes |
difficulty | Level | Null | Yes |
mainDomain | Domain | Null | Yes |
introductionText | String | Null | Yes |
descriptionText | String | Null | Yes |
timeLapsText | String | Null | Yes |
requiredSkillsText | String | Null | Yes |
status | MriStatus | No |
study | StudyCreateNestedOneWithoutMriInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
wageLowerBound | Int | Null | Yes |
wageUpperBound | Int | Null | Yes |
wageLevel | Level | Null | Yes |
difficulty | Level | Null | Yes |
mainDomain | Domain | Null | Yes |
introductionText | String | Null | Yes |
descriptionText | String | Null | Yes |
timeLapsText | String | Null | Yes |
requiredSkillsText | String | Null | Yes |
status | MriStatus | No |
studyId | String | No |
Name | Type | Nullable |
---|---|---|
where | MriWhereUniqueInput | No |
create | MriCreateWithoutFormMRIsInput | MriUncheckedCreateWithoutFormMRIsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
selectionNotes | String | No |
taken | Boolean | No |
study | StudyCreateNestedOneWithoutStudyAssigneesInput | No |
assignee | AssigneeCreateNestedOneWithoutStudyAssignInput | No |
formInterview | FormInterviewsCreateNestedOneWithoutStudyAssigneesInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
studyId | String | No |
assigneeId | String | No |
formInterviewId | String | No |
selectionNotes | String | No |
taken | Boolean | No |
Name | Type | Nullable |
---|---|---|
where | StudyAssigneeWhereUniqueInput | No |
create | StudyAssigneeCreateWithoutMriFormInput | StudyAssigneeUncheckedCreateWithoutMriFormInput | No |
Name | Type | Nullable |
---|---|---|
update | MriUpdateWithoutFormMRIsInput | MriUncheckedUpdateWithoutFormMRIsInput | No |
create | MriCreateWithoutFormMRIsInput | MriUncheckedCreateWithoutFormMRIsInput | No |
where | MriWhereInput | No |
Name | Type | Nullable |
---|---|---|
where | MriWhereInput | No |
data | MriUpdateWithoutFormMRIsInput | MriUncheckedUpdateWithoutFormMRIsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
wageLowerBound | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
wageUpperBound | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
wageLevel | Level | NullableEnumLevelFieldUpdateOperationsInput | Null | Yes |
difficulty | Level | NullableEnumLevelFieldUpdateOperationsInput | Null | Yes |
mainDomain | Domain | NullableEnumDomainFieldUpdateOperationsInput | Null | Yes |
introductionText | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
descriptionText | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
timeLapsText | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
requiredSkillsText | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
status | MriStatus | EnumMriStatusFieldUpdateOperationsInput | No |
study | StudyUpdateOneRequiredWithoutMriNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
wageLowerBound | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
wageUpperBound | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
wageLevel | Level | NullableEnumLevelFieldUpdateOperationsInput | Null | Yes |
difficulty | Level | NullableEnumLevelFieldUpdateOperationsInput | Null | Yes |
mainDomain | Domain | NullableEnumDomainFieldUpdateOperationsInput | Null | Yes |
introductionText | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
descriptionText | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
timeLapsText | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
requiredSkillsText | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
status | MriStatus | EnumMriStatusFieldUpdateOperationsInput | No |
studyId | String | StringFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
update | StudyAssigneeUpdateWithoutMriFormInput | StudyAssigneeUncheckedUpdateWithoutMriFormInput | No |
create | StudyAssigneeCreateWithoutMriFormInput | StudyAssigneeUncheckedCreateWithoutMriFormInput | No |
where | StudyAssigneeWhereInput | No |
Name | Type | Nullable |
---|---|---|
where | StudyAssigneeWhereInput | No |
data | StudyAssigneeUpdateWithoutMriFormInput | StudyAssigneeUncheckedUpdateWithoutMriFormInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
selectionNotes | String | StringFieldUpdateOperationsInput | No |
taken | Boolean | BoolFieldUpdateOperationsInput | No |
study | StudyUpdateOneRequiredWithoutStudyAssigneesNestedInput | No |
assignee | AssigneeUpdateOneRequiredWithoutStudyAssignNestedInput | No |
formInterview | FormInterviewsUpdateOneRequiredWithoutStudyAssigneesNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
studyId | String | StringFieldUpdateOperationsInput | No |
assigneeId | String | StringFieldUpdateOperationsInput | No |
formInterviewId | String | StringFieldUpdateOperationsInput | No |
selectionNotes | String | StringFieldUpdateOperationsInput | No |
taken | Boolean | BoolFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
selectionNotes | String | No |
taken | Boolean | No |
study | StudyCreateNestedOneWithoutStudyAssigneesInput | No |
assignee | AssigneeCreateNestedOneWithoutStudyAssignInput | No |
mriForm | MriFormCreateNestedOneWithoutStudyAssigneesInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
studyId | String | No |
assigneeId | String | No |
mriFormId | String | No |
selectionNotes | String | No |
taken | Boolean | No |
Name | Type | Nullable |
---|---|---|
where | StudyAssigneeWhereUniqueInput | No |
create | StudyAssigneeCreateWithoutFormInterviewInput | StudyAssigneeUncheckedCreateWithoutFormInterviewInput | No |
Name | Type | Nullable |
---|---|---|
update | StudyAssigneeUpdateWithoutFormInterviewInput | StudyAssigneeUncheckedUpdateWithoutFormInterviewInput | No |
create | StudyAssigneeCreateWithoutFormInterviewInput | StudyAssigneeUncheckedCreateWithoutFormInterviewInput | No |
where | StudyAssigneeWhereInput | No |
Name | Type | Nullable |
---|---|---|
where | StudyAssigneeWhereInput | No |
data | StudyAssigneeUpdateWithoutFormInterviewInput | StudyAssigneeUncheckedUpdateWithoutFormInterviewInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
selectionNotes | String | StringFieldUpdateOperationsInput | No |
taken | Boolean | BoolFieldUpdateOperationsInput | No |
study | StudyUpdateOneRequiredWithoutStudyAssigneesNestedInput | No |
assignee | AssigneeUpdateOneRequiredWithoutStudyAssignNestedInput | No |
mriForm | MriFormUpdateOneRequiredWithoutStudyAssigneesNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
studyId | String | StringFieldUpdateOperationsInput | No |
assigneeId | String | StringFieldUpdateOperationsInput | No |
mriFormId | String | StringFieldUpdateOperationsInput | No |
selectionNotes | String | StringFieldUpdateOperationsInput | No |
taken | Boolean | BoolFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
position | String | Null | Yes |
image | String | Null | Yes |
user | UserCreateNestedOneWithoutAdminInput | No |
auditedStudies | StudyCreateNestedManyWithoutAuditorsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
userId | String | No |
position | String | Null | Yes |
image | String | Null | Yes |
auditedStudies | StudyUncheckedCreateNestedManyWithoutAuditorsInput | No |
Name | Type | Nullable |
---|---|---|
where | AdminWhereUniqueInput | No |
create | AdminCreateWithoutStudiesInput | AdminUncheckedCreateWithoutStudiesInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
position | String | Null | Yes |
image | String | Null | Yes |
user | UserCreateNestedOneWithoutAdminInput | No |
studies | StudyCreateNestedManyWithoutCdpsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
userId | String | No |
position | String | Null | Yes |
image | String | Null | Yes |
studies | StudyUncheckedCreateNestedManyWithoutCdpsInput | No |
Name | Type | Nullable |
---|---|---|
where | AdminWhereUniqueInput | No |
create | AdminCreateWithoutAuditedStudiesInput | AdminUncheckedCreateWithoutAuditedStudiesInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
code | String | No |
googleFolder | String | Null | Yes |
title | String | Null | Yes |
applicationFee | Float | No |
cc | Boolean | No |
domains | StudyInfosCreatedomainsInput | Domain[] | No |
estimatedDuration | Int | Null | Yes |
deadlinePreStudy | DateTime | Null | Yes |
Name | Type | Nullable |
---|---|---|
id | String | No |
code | String | No |
googleFolder | String | Null | Yes |
title | String | Null | Yes |
applicationFee | Float | No |
cc | Boolean | No |
domains | StudyInfosCreatedomainsInput | Domain[] | No |
estimatedDuration | Int | Null | Yes |
deadlinePreStudy | DateTime | Null | Yes |
Name | Type | Nullable |
---|---|---|
where | StudyInfosWhereUniqueInput | No |
create | StudyInfosCreateWithoutStudyInput | StudyInfosUncheckedCreateWithoutStudyInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
studyProcessStep | StudyProgressStep | No |
phases | PhaseCreateNestedManyWithoutStudyProceedingsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
studyProcessStep | StudyProgressStep | No |
phases | PhaseUncheckedCreateNestedManyWithoutStudyProceedingsInput | No |
Name | Type | Nullable |
---|---|---|
where | StudyProceedingsWhereUniqueInput | No |
create | StudyProceedingsCreateWithoutStudyInput | StudyProceedingsUncheckedCreateWithoutStudyInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
client | ClientCreateNestedOneWithoutStudyClientsInput | No |
satisfaction | SatisfactionCreateNestedOneWithoutStudyClientInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
clientId | String | No |
satisfaction | SatisfactionUncheckedCreateNestedOneWithoutStudyClientInput | No |
Name | Type | Nullable |
---|---|---|
where | StudyClientWhereUniqueInput | No |
create | StudyClientCreateWithoutStudyInput | StudyClientUncheckedCreateWithoutStudyInput | No |
Name | Type | Nullable |
---|---|---|
data | StudyClientCreateManyStudyInput | StudyClientCreateManyStudyInput[] | No |
skipDuplicates | Boolean | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
wageLowerBound | Int | Null | Yes |
wageUpperBound | Int | Null | Yes |
wageLevel | Level | Null | Yes |
difficulty | Level | Null | Yes |
mainDomain | Domain | Null | Yes |
introductionText | String | Null | Yes |
descriptionText | String | Null | Yes |
timeLapsText | String | Null | Yes |
requiredSkillsText | String | Null | Yes |
status | MriStatus | No |
formMRIs | MriFormCreateNestedManyWithoutMriInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
wageLowerBound | Int | Null | Yes |
wageUpperBound | Int | Null | Yes |
wageLevel | Level | Null | Yes |
difficulty | Level | Null | Yes |
mainDomain | Domain | Null | Yes |
introductionText | String | Null | Yes |
descriptionText | String | Null | Yes |
timeLapsText | String | Null | Yes |
requiredSkillsText | String | Null | Yes |
status | MriStatus | No |
formMRIs | MriFormUncheckedCreateNestedManyWithoutMriInput | No |
Name | Type | Nullable |
---|---|---|
where | MriWhereUniqueInput | No |
create | MriCreateWithoutStudyInput | MriUncheckedCreateWithoutStudyInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
selectionNotes | String | No |
taken | Boolean | No |
assignee | AssigneeCreateNestedOneWithoutStudyAssignInput | No |
formInterview | FormInterviewsCreateNestedOneWithoutStudyAssigneesInput | No |
mriForm | MriFormCreateNestedOneWithoutStudyAssigneesInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
assigneeId | String | No |
formInterviewId | String | No |
mriFormId | String | No |
selectionNotes | String | No |
taken | Boolean | No |
Name | Type | Nullable |
---|---|---|
where | StudyAssigneeWhereUniqueInput | No |
create | StudyAssigneeCreateWithoutStudyInput | StudyAssigneeUncheckedCreateWithoutStudyInput | No |
Name | Type | Nullable |
---|---|---|
data | StudyAssigneeCreateManyStudyInput | StudyAssigneeCreateManyStudyInput[] | No |
skipDuplicates | Boolean | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
publish | Boolean | No |
howKnowUs | String | No |
whyUs | String | No |
satisfactionObjectives | Int | No |
easiness | Int | No |
timeElapsed | Int | No |
recommendUs | Int | No |
studyClient | StudyClientCreateNestedOneWithoutSatisfactionInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
studyClientId | String | No |
publish | Boolean | No |
howKnowUs | String | No |
whyUs | String | No |
satisfactionObjectives | Int | No |
easiness | Int | No |
timeElapsed | Int | No |
recommendUs | Int | No |
Name | Type | Nullable |
---|---|---|
where | SatisfactionWhereUniqueInput | No |
create | SatisfactionCreateWithoutStudyInput | SatisfactionUncheckedCreateWithoutStudyInput | No |
Name | Type | Nullable |
---|---|---|
where | AdminWhereUniqueInput | No |
update | AdminUpdateWithoutStudiesInput | AdminUncheckedUpdateWithoutStudiesInput | No |
create | AdminCreateWithoutStudiesInput | AdminUncheckedCreateWithoutStudiesInput | No |
Name | Type | Nullable |
---|---|---|
where | AdminWhereUniqueInput | No |
data | AdminUpdateWithoutStudiesInput | AdminUncheckedUpdateWithoutStudiesInput | No |
Name | Type | Nullable |
---|---|---|
where | AdminScalarWhereInput | No |
data | AdminUpdateManyMutationInput | AdminUncheckedUpdateManyWithoutStudiesInput | No |
Name | Type | Nullable |
---|---|---|
AND | AdminScalarWhereInput | AdminScalarWhereInput[] | No |
OR | AdminScalarWhereInput[] | No |
NOT | AdminScalarWhereInput | AdminScalarWhereInput[] | No |
id | StringFilter | String | No |
userId | StringFilter | String | No |
position | StringNullableFilter | String | Null | Yes |
image | StringNullableFilter | String | Null | Yes |
Name | Type | Nullable |
---|---|---|
where | AdminWhereUniqueInput | No |
update | AdminUpdateWithoutAuditedStudiesInput | AdminUncheckedUpdateWithoutAuditedStudiesInput | No |
create | AdminCreateWithoutAuditedStudiesInput | AdminUncheckedCreateWithoutAuditedStudiesInput | No |
Name | Type | Nullable |
---|---|---|
where | AdminWhereUniqueInput | No |
data | AdminUpdateWithoutAuditedStudiesInput | AdminUncheckedUpdateWithoutAuditedStudiesInput | No |
Name | Type | Nullable |
---|---|---|
where | AdminScalarWhereInput | No |
data | AdminUpdateManyMutationInput | AdminUncheckedUpdateManyWithoutAuditedStudiesInput | No |
Name | Type | Nullable |
---|---|---|
update | StudyInfosUpdateWithoutStudyInput | StudyInfosUncheckedUpdateWithoutStudyInput | No |
create | StudyInfosCreateWithoutStudyInput | StudyInfosUncheckedCreateWithoutStudyInput | No |
where | StudyInfosWhereInput | No |
Name | Type | Nullable |
---|---|---|
where | StudyInfosWhereInput | No |
data | StudyInfosUpdateWithoutStudyInput | StudyInfosUncheckedUpdateWithoutStudyInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
code | String | StringFieldUpdateOperationsInput | No |
googleFolder | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
title | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
applicationFee | Float | FloatFieldUpdateOperationsInput | No |
cc | Boolean | BoolFieldUpdateOperationsInput | No |
domains | StudyInfosUpdatedomainsInput | Domain[] | No |
estimatedDuration | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
deadlinePreStudy | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
code | String | StringFieldUpdateOperationsInput | No |
googleFolder | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
title | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
applicationFee | Float | FloatFieldUpdateOperationsInput | No |
cc | Boolean | BoolFieldUpdateOperationsInput | No |
domains | StudyInfosUpdatedomainsInput | Domain[] | No |
estimatedDuration | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
deadlinePreStudy | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
Name | Type | Nullable |
---|---|---|
update | StudyProceedingsUpdateWithoutStudyInput | StudyProceedingsUncheckedUpdateWithoutStudyInput | No |
create | StudyProceedingsCreateWithoutStudyInput | StudyProceedingsUncheckedCreateWithoutStudyInput | No |
where | StudyProceedingsWhereInput | No |
Name | Type | Nullable |
---|---|---|
where | StudyProceedingsWhereInput | No |
data | StudyProceedingsUpdateWithoutStudyInput | StudyProceedingsUncheckedUpdateWithoutStudyInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
studyProcessStep | StudyProgressStep | EnumStudyProgressStepFieldUpdateOperationsInput | No |
phases | PhaseUpdateManyWithoutStudyProceedingsNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
studyProcessStep | StudyProgressStep | EnumStudyProgressStepFieldUpdateOperationsInput | No |
phases | PhaseUncheckedUpdateManyWithoutStudyProceedingsNestedInput | No |
Name | Type | Nullable |
---|---|---|
where | StudyClientWhereUniqueInput | No |
update | StudyClientUpdateWithoutStudyInput | StudyClientUncheckedUpdateWithoutStudyInput | No |
create | StudyClientCreateWithoutStudyInput | StudyClientUncheckedCreateWithoutStudyInput | No |
Name | Type | Nullable |
---|---|---|
where | StudyClientWhereUniqueInput | No |
data | StudyClientUpdateWithoutStudyInput | StudyClientUncheckedUpdateWithoutStudyInput | No |
Name | Type | Nullable |
---|---|---|
where | StudyClientScalarWhereInput | No |
data | StudyClientUpdateManyMutationInput | StudyClientUncheckedUpdateManyWithoutStudyInput | No |
Name | Type | Nullable |
---|---|---|
update | MriUpdateWithoutStudyInput | MriUncheckedUpdateWithoutStudyInput | No |
create | MriCreateWithoutStudyInput | MriUncheckedCreateWithoutStudyInput | No |
where | MriWhereInput | No |
Name | Type | Nullable |
---|---|---|
where | MriWhereInput | No |
data | MriUpdateWithoutStudyInput | MriUncheckedUpdateWithoutStudyInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
wageLowerBound | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
wageUpperBound | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
wageLevel | Level | NullableEnumLevelFieldUpdateOperationsInput | Null | Yes |
difficulty | Level | NullableEnumLevelFieldUpdateOperationsInput | Null | Yes |
mainDomain | Domain | NullableEnumDomainFieldUpdateOperationsInput | Null | Yes |
introductionText | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
descriptionText | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
timeLapsText | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
requiredSkillsText | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
status | MriStatus | EnumMriStatusFieldUpdateOperationsInput | No |
formMRIs | MriFormUpdateManyWithoutMriNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
wageLowerBound | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
wageUpperBound | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
wageLevel | Level | NullableEnumLevelFieldUpdateOperationsInput | Null | Yes |
difficulty | Level | NullableEnumLevelFieldUpdateOperationsInput | Null | Yes |
mainDomain | Domain | NullableEnumDomainFieldUpdateOperationsInput | Null | Yes |
introductionText | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
descriptionText | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
timeLapsText | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
requiredSkillsText | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
status | MriStatus | EnumMriStatusFieldUpdateOperationsInput | No |
formMRIs | MriFormUncheckedUpdateManyWithoutMriNestedInput | No |
Name | Type | Nullable |
---|---|---|
where | StudyAssigneeWhereUniqueInput | No |
update | StudyAssigneeUpdateWithoutStudyInput | StudyAssigneeUncheckedUpdateWithoutStudyInput | No |
create | StudyAssigneeCreateWithoutStudyInput | StudyAssigneeUncheckedCreateWithoutStudyInput | No |
Name | Type | Nullable |
---|---|---|
where | StudyAssigneeWhereUniqueInput | No |
data | StudyAssigneeUpdateWithoutStudyInput | StudyAssigneeUncheckedUpdateWithoutStudyInput | No |
Name | Type | Nullable |
---|---|---|
where | StudyAssigneeScalarWhereInput | No |
data | StudyAssigneeUpdateManyMutationInput | StudyAssigneeUncheckedUpdateManyWithoutStudyInput | No |
Name | Type | Nullable |
---|---|---|
update | SatisfactionUpdateWithoutStudyInput | SatisfactionUncheckedUpdateWithoutStudyInput | No |
create | SatisfactionCreateWithoutStudyInput | SatisfactionUncheckedCreateWithoutStudyInput | No |
where | SatisfactionWhereInput | No |
Name | Type | Nullable |
---|---|---|
where | SatisfactionWhereInput | No |
data | SatisfactionUpdateWithoutStudyInput | SatisfactionUncheckedUpdateWithoutStudyInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
publish | Boolean | BoolFieldUpdateOperationsInput | No |
howKnowUs | String | StringFieldUpdateOperationsInput | No |
whyUs | String | StringFieldUpdateOperationsInput | No |
satisfactionObjectives | Int | IntFieldUpdateOperationsInput | No |
easiness | Int | IntFieldUpdateOperationsInput | No |
timeElapsed | Int | IntFieldUpdateOperationsInput | No |
recommendUs | Int | IntFieldUpdateOperationsInput | No |
studyClient | StudyClientUpdateOneRequiredWithoutSatisfactionNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
studyClientId | String | StringFieldUpdateOperationsInput | No |
publish | Boolean | BoolFieldUpdateOperationsInput | No |
howKnowUs | String | StringFieldUpdateOperationsInput | No |
whyUs | String | StringFieldUpdateOperationsInput | No |
satisfactionObjectives | Int | IntFieldUpdateOperationsInput | No |
easiness | Int | IntFieldUpdateOperationsInput | No |
timeElapsed | Int | IntFieldUpdateOperationsInput | No |
recommendUs | Int | IntFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
studyProceedingsId | String | Null | Yes |
cdps | AdminCreateNestedManyWithoutStudiesInput | No |
auditors | AdminCreateNestedManyWithoutAuditedStudiesInput | No |
studyProceedings | StudyProceedingsCreateNestedOneWithoutStudyInput | No |
clients | StudyClientCreateNestedManyWithoutStudyInput | No |
mri | MriCreateNestedOneWithoutStudyInput | No |
studyAssignees | StudyAssigneeCreateNestedManyWithoutStudyInput | No |
satisfaction | SatisfactionCreateNestedOneWithoutStudyInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
studyProceedingsId | String | Null | Yes |
cdps | AdminUncheckedCreateNestedManyWithoutStudiesInput | No |
auditors | AdminUncheckedCreateNestedManyWithoutAuditedStudiesInput | No |
studyProceedings | StudyProceedingsUncheckedCreateNestedOneWithoutStudyInput | No |
clients | StudyClientUncheckedCreateNestedManyWithoutStudyInput | No |
mri | MriUncheckedCreateNestedOneWithoutStudyInput | No |
studyAssignees | StudyAssigneeUncheckedCreateNestedManyWithoutStudyInput | No |
satisfaction | SatisfactionUncheckedCreateNestedOneWithoutStudyInput | No |
Name | Type | Nullable |
---|---|---|
where | StudyWhereUniqueInput | No |
create | StudyCreateWithoutInformationInput | StudyUncheckedCreateWithoutInformationInput | No |
Name | Type | Nullable |
---|---|---|
update | StudyUpdateWithoutInformationInput | StudyUncheckedUpdateWithoutInformationInput | No |
create | StudyCreateWithoutInformationInput | StudyUncheckedCreateWithoutInformationInput | No |
where | StudyWhereInput | No |
Name | Type | Nullable |
---|---|---|
where | StudyWhereInput | No |
data | StudyUpdateWithoutInformationInput | StudyUncheckedUpdateWithoutInformationInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
studyProceedingsId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
cdps | AdminUpdateManyWithoutStudiesNestedInput | No |
auditors | AdminUpdateManyWithoutAuditedStudiesNestedInput | No |
studyProceedings | StudyProceedingsUpdateOneWithoutStudyNestedInput | No |
clients | StudyClientUpdateManyWithoutStudyNestedInput | No |
mri | MriUpdateOneWithoutStudyNestedInput | No |
studyAssignees | StudyAssigneeUpdateManyWithoutStudyNestedInput | No |
satisfaction | SatisfactionUpdateOneWithoutStudyNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
studyProceedingsId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
cdps | AdminUncheckedUpdateManyWithoutStudiesNestedInput | No |
auditors | AdminUncheckedUpdateManyWithoutAuditedStudiesNestedInput | No |
studyProceedings | StudyProceedingsUncheckedUpdateOneWithoutStudyNestedInput | No |
clients | StudyClientUncheckedUpdateManyWithoutStudyNestedInput | No |
mri | MriUncheckedUpdateOneWithoutStudyNestedInput | No |
studyAssignees | StudyAssigneeUncheckedUpdateManyWithoutStudyNestedInput | No |
satisfaction | SatisfactionUncheckedUpdateOneWithoutStudyNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
jehs | Int | No |
title | String | No |
unitPrice | Float | No |
startDate | DateTime | Null | Yes |
endDate | DateTime | Null | Yes |
deliverable | DeliverableCreateNestedOneWithoutPhaseInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
jehs | Int | No |
title | String | No |
unitPrice | Float | No |
startDate | DateTime | Null | Yes |
endDate | DateTime | Null | Yes |
deliverable | DeliverableUncheckedCreateNestedOneWithoutPhaseInput | No |
Name | Type | Nullable |
---|---|---|
where | PhaseWhereUniqueInput | No |
create | PhaseCreateWithoutStudyProceedingsInput | PhaseUncheckedCreateWithoutStudyProceedingsInput | No |
Name | Type | Nullable |
---|---|---|
data | PhaseCreateManyStudyProceedingsInput | PhaseCreateManyStudyProceedingsInput[] | No |
skipDuplicates | Boolean | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
studyProceedingsId | String | Null | Yes |
cdps | AdminCreateNestedManyWithoutStudiesInput | No |
auditors | AdminCreateNestedManyWithoutAuditedStudiesInput | No |
information | StudyInfosCreateNestedOneWithoutStudyInput | No |
clients | StudyClientCreateNestedManyWithoutStudyInput | No |
mri | MriCreateNestedOneWithoutStudyInput | No |
studyAssignees | StudyAssigneeCreateNestedManyWithoutStudyInput | No |
satisfaction | SatisfactionCreateNestedOneWithoutStudyInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
informationId | String | No |
studyProceedingsId | String | Null | Yes |
cdps | AdminUncheckedCreateNestedManyWithoutStudiesInput | No |
auditors | AdminUncheckedCreateNestedManyWithoutAuditedStudiesInput | No |
clients | StudyClientUncheckedCreateNestedManyWithoutStudyInput | No |
mri | MriUncheckedCreateNestedOneWithoutStudyInput | No |
studyAssignees | StudyAssigneeUncheckedCreateNestedManyWithoutStudyInput | No |
satisfaction | SatisfactionUncheckedCreateNestedOneWithoutStudyInput | No |
Name | Type | Nullable |
---|---|---|
where | StudyWhereUniqueInput | No |
create | StudyCreateWithoutStudyProceedingsInput | StudyUncheckedCreateWithoutStudyProceedingsInput | No |
Name | Type | Nullable |
---|---|---|
where | PhaseWhereUniqueInput | No |
update | PhaseUpdateWithoutStudyProceedingsInput | PhaseUncheckedUpdateWithoutStudyProceedingsInput | No |
create | PhaseCreateWithoutStudyProceedingsInput | PhaseUncheckedCreateWithoutStudyProceedingsInput | No |
Name | Type | Nullable |
---|---|---|
where | PhaseWhereUniqueInput | No |
data | PhaseUpdateWithoutStudyProceedingsInput | PhaseUncheckedUpdateWithoutStudyProceedingsInput | No |
Name | Type | Nullable |
---|---|---|
where | PhaseScalarWhereInput | No |
data | PhaseUpdateManyMutationInput | PhaseUncheckedUpdateManyWithoutStudyProceedingsInput | No |
Name | Type | Nullable |
---|---|---|
AND | PhaseScalarWhereInput | PhaseScalarWhereInput[] | No |
OR | PhaseScalarWhereInput[] | No |
NOT | PhaseScalarWhereInput | PhaseScalarWhereInput[] | No |
id | StringFilter | String | No |
jehs | IntFilter | Int | No |
title | StringFilter | String | No |
unitPrice | FloatFilter | Float | No |
startDate | DateTimeNullableFilter | DateTime | Null | Yes |
endDate | DateTimeNullableFilter | DateTime | Null | Yes |
studyProceedingsId | StringFilter | String | No |
Name | Type | Nullable |
---|---|---|
update | StudyUpdateWithoutStudyProceedingsInput | StudyUncheckedUpdateWithoutStudyProceedingsInput | No |
create | StudyCreateWithoutStudyProceedingsInput | StudyUncheckedCreateWithoutStudyProceedingsInput | No |
where | StudyWhereInput | No |
Name | Type | Nullable |
---|---|---|
where | StudyWhereInput | No |
data | StudyUpdateWithoutStudyProceedingsInput | StudyUncheckedUpdateWithoutStudyProceedingsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
studyProceedingsId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
cdps | AdminUpdateManyWithoutStudiesNestedInput | No |
auditors | AdminUpdateManyWithoutAuditedStudiesNestedInput | No |
information | StudyInfosUpdateOneRequiredWithoutStudyNestedInput | No |
clients | StudyClientUpdateManyWithoutStudyNestedInput | No |
mri | MriUpdateOneWithoutStudyNestedInput | No |
studyAssignees | StudyAssigneeUpdateManyWithoutStudyNestedInput | No |
satisfaction | SatisfactionUpdateOneWithoutStudyNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
informationId | String | StringFieldUpdateOperationsInput | No |
studyProceedingsId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
cdps | AdminUncheckedUpdateManyWithoutStudiesNestedInput | No |
auditors | AdminUncheckedUpdateManyWithoutAuditedStudiesNestedInput | No |
clients | StudyClientUncheckedUpdateManyWithoutStudyNestedInput | No |
mri | MriUncheckedUpdateOneWithoutStudyNestedInput | No |
studyAssignees | StudyAssigneeUncheckedUpdateManyWithoutStudyNestedInput | No |
satisfaction | SatisfactionUncheckedUpdateOneWithoutStudyNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
description | String | No |
status | DeliverableStatus | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
description | String | No |
status | DeliverableStatus | No |
Name | Type | Nullable |
---|---|---|
where | DeliverableWhereUniqueInput | No |
create | DeliverableCreateWithoutPhaseInput | DeliverableUncheckedCreateWithoutPhaseInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
studyProcessStep | StudyProgressStep | No |
study | StudyCreateNestedOneWithoutStudyProceedingsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
studyId | String | No |
studyProcessStep | StudyProgressStep | No |
Name | Type | Nullable |
---|---|---|
where | StudyProceedingsWhereUniqueInput | No |
create | StudyProceedingsCreateWithoutPhasesInput | StudyProceedingsUncheckedCreateWithoutPhasesInput | No |
Name | Type | Nullable |
---|---|---|
update | DeliverableUpdateWithoutPhaseInput | DeliverableUncheckedUpdateWithoutPhaseInput | No |
create | DeliverableCreateWithoutPhaseInput | DeliverableUncheckedCreateWithoutPhaseInput | No |
where | DeliverableWhereInput | No |
Name | Type | Nullable |
---|---|---|
where | DeliverableWhereInput | No |
data | DeliverableUpdateWithoutPhaseInput | DeliverableUncheckedUpdateWithoutPhaseInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
description | String | StringFieldUpdateOperationsInput | No |
status | DeliverableStatus | EnumDeliverableStatusFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
description | String | StringFieldUpdateOperationsInput | No |
status | DeliverableStatus | EnumDeliverableStatusFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
update | StudyProceedingsUpdateWithoutPhasesInput | StudyProceedingsUncheckedUpdateWithoutPhasesInput | No |
create | StudyProceedingsCreateWithoutPhasesInput | StudyProceedingsUncheckedCreateWithoutPhasesInput | No |
where | StudyProceedingsWhereInput | No |
Name | Type | Nullable |
---|---|---|
where | StudyProceedingsWhereInput | No |
data | StudyProceedingsUpdateWithoutPhasesInput | StudyProceedingsUncheckedUpdateWithoutPhasesInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
studyProcessStep | StudyProgressStep | EnumStudyProgressStepFieldUpdateOperationsInput | No |
study | StudyUpdateOneRequiredWithoutStudyProceedingsNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
studyId | String | StringFieldUpdateOperationsInput | No |
studyProcessStep | StudyProgressStep | EnumStudyProgressStepFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
jehs | Int | No |
title | String | No |
unitPrice | Float | No |
startDate | DateTime | Null | Yes |
endDate | DateTime | Null | Yes |
studyProceedings | StudyProceedingsCreateNestedOneWithoutPhasesInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
jehs | Int | No |
title | String | No |
unitPrice | Float | No |
startDate | DateTime | Null | Yes |
endDate | DateTime | Null | Yes |
studyProceedingsId | String | No |
Name | Type | Nullable |
---|---|---|
where | PhaseWhereUniqueInput | No |
create | PhaseCreateWithoutDeliverableInput | PhaseUncheckedCreateWithoutDeliverableInput | No |
Name | Type | Nullable |
---|---|---|
update | PhaseUpdateWithoutDeliverableInput | PhaseUncheckedUpdateWithoutDeliverableInput | No |
create | PhaseCreateWithoutDeliverableInput | PhaseUncheckedCreateWithoutDeliverableInput | No |
where | PhaseWhereInput | No |
Name | Type | Nullable |
---|---|---|
where | PhaseWhereInput | No |
data | PhaseUpdateWithoutDeliverableInput | PhaseUncheckedUpdateWithoutDeliverableInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
jehs | Int | IntFieldUpdateOperationsInput | No |
title | String | StringFieldUpdateOperationsInput | No |
unitPrice | Float | FloatFieldUpdateOperationsInput | No |
startDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
endDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
studyProceedings | StudyProceedingsUpdateOneRequiredWithoutPhasesNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
jehs | Int | IntFieldUpdateOperationsInput | No |
title | String | StringFieldUpdateOperationsInput | No |
unitPrice | Float | FloatFieldUpdateOperationsInput | No |
startDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
endDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
studyProceedingsId | String | StringFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
studyProceedingsId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
auditors | AdminUpdateManyWithoutAuditedStudiesNestedInput | No |
information | StudyInfosUpdateOneRequiredWithoutStudyNestedInput | No |
studyProceedings | StudyProceedingsUpdateOneWithoutStudyNestedInput | No |
clients | StudyClientUpdateManyWithoutStudyNestedInput | No |
mri | MriUpdateOneWithoutStudyNestedInput | No |
studyAssignees | StudyAssigneeUpdateManyWithoutStudyNestedInput | No |
satisfaction | SatisfactionUpdateOneWithoutStudyNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
informationId | String | StringFieldUpdateOperationsInput | No |
studyProceedingsId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
auditors | AdminUncheckedUpdateManyWithoutAuditedStudiesNestedInput | No |
studyProceedings | StudyProceedingsUncheckedUpdateOneWithoutStudyNestedInput | No |
clients | StudyClientUncheckedUpdateManyWithoutStudyNestedInput | No |
mri | MriUncheckedUpdateOneWithoutStudyNestedInput | No |
studyAssignees | StudyAssigneeUncheckedUpdateManyWithoutStudyNestedInput | No |
satisfaction | SatisfactionUncheckedUpdateOneWithoutStudyNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
informationId | String | StringFieldUpdateOperationsInput | No |
studyProceedingsId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
studyProceedingsId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
cdps | AdminUpdateManyWithoutStudiesNestedInput | No |
information | StudyInfosUpdateOneRequiredWithoutStudyNestedInput | No |
studyProceedings | StudyProceedingsUpdateOneWithoutStudyNestedInput | No |
clients | StudyClientUpdateManyWithoutStudyNestedInput | No |
mri | MriUpdateOneWithoutStudyNestedInput | No |
studyAssignees | StudyAssigneeUpdateManyWithoutStudyNestedInput | No |
satisfaction | SatisfactionUpdateOneWithoutStudyNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
informationId | String | StringFieldUpdateOperationsInput | No |
studyProceedingsId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
cdps | AdminUncheckedUpdateManyWithoutStudiesNestedInput | No |
studyProceedings | StudyProceedingsUncheckedUpdateOneWithoutStudyNestedInput | No |
clients | StudyClientUncheckedUpdateManyWithoutStudyNestedInput | No |
mri | MriUncheckedUpdateOneWithoutStudyNestedInput | No |
studyAssignees | StudyAssigneeUncheckedUpdateManyWithoutStudyNestedInput | No |
satisfaction | SatisfactionUncheckedUpdateOneWithoutStudyNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
informationId | String | StringFieldUpdateOperationsInput | No |
studyProceedingsId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
Name | Type | Nullable |
---|---|---|
id | String | No |
personId | String | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
person | PersonUpdateOneRequiredWithoutUserNestedInput | No |
admin | AdminUpdateOneWithoutUserNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
personId | String | StringFieldUpdateOperationsInput | No |
admin | AdminUncheckedUpdateOneWithoutUserNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
personId | String | StringFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
studyId | String | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
study | StudyUpdateOneRequiredWithoutClientsNestedInput | No |
satisfaction | SatisfactionUpdateOneWithoutStudyClientNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
studyId | String | StringFieldUpdateOperationsInput | No |
satisfaction | SatisfactionUncheckedUpdateOneWithoutStudyClientNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
studyId | String | StringFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
privateIndividual | Boolean | No |
personId | String | No |
job | String | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
privateIndividual | Boolean | BoolFieldUpdateOperationsInput | No |
job | String | StringFieldUpdateOperationsInput | No |
person | PersonUpdateOneRequiredWithoutClientsNestedInput | No |
studyClients | StudyClientUpdateManyWithoutClientNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
privateIndividual | Boolean | BoolFieldUpdateOperationsInput | No |
personId | String | StringFieldUpdateOperationsInput | No |
job | String | StringFieldUpdateOperationsInput | No |
studyClients | StudyClientUncheckedUpdateManyWithoutClientNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
privateIndividual | Boolean | BoolFieldUpdateOperationsInput | No |
personId | String | StringFieldUpdateOperationsInput | No |
job | String | StringFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
name | String | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
name | String | StringFieldUpdateOperationsInput | No |
address | AddressUpdateOneWithoutCompanyNestedInput | No |
members | ClientUpdateManyWithoutCompanyNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
name | String | StringFieldUpdateOperationsInput | No |
address | AddressUncheckedUpdateOneWithoutCompanyNestedInput | No |
members | ClientUncheckedUpdateManyWithoutCompanyNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
name | String | StringFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
title | String | No |
googleId | String | No |
type | String | No |
studyDocsId | String | Null | Yes |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
title | String | StringFieldUpdateOperationsInput | No |
googleId | String | StringFieldUpdateOperationsInput | No |
type | String | StringFieldUpdateOperationsInput | No |
studyDocsId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
assigneeCni | AssigneeDocsUpdateOneWithoutCniNestedInput | No |
assigneeSocialSecurity | AssigneeDocsUpdateOneWithoutSocialSecurityNestedInput | No |
assigneeStudentCard | AssigneeDocsUpdateOneWithoutStudentCardNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
title | String | StringFieldUpdateOperationsInput | No |
googleId | String | StringFieldUpdateOperationsInput | No |
type | String | StringFieldUpdateOperationsInput | No |
studyDocsId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
assigneeCni | AssigneeDocsUncheckedUpdateOneWithoutCniNestedInput | No |
assigneeSocialSecurity | AssigneeDocsUncheckedUpdateOneWithoutSocialSecurityNestedInput | No |
assigneeStudentCard | AssigneeDocsUncheckedUpdateOneWithoutStudentCardNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
title | String | StringFieldUpdateOperationsInput | No |
googleId | String | StringFieldUpdateOperationsInput | No |
type | String | StringFieldUpdateOperationsInput | No |
studyDocsId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
Name | Type | Nullable |
---|---|---|
id | String | No |
experience | String | No |
knowledge | String | No |
ideas | String | No |
jeExperience | Int | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
experience | String | StringFieldUpdateOperationsInput | No |
knowledge | String | StringFieldUpdateOperationsInput | No |
ideas | String | StringFieldUpdateOperationsInput | No |
jeExperience | Int | IntFieldUpdateOperationsInput | No |
studyAssignees | StudyAssigneeUpdateOneWithoutMriFormNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
experience | String | StringFieldUpdateOperationsInput | No |
knowledge | String | StringFieldUpdateOperationsInput | No |
ideas | String | StringFieldUpdateOperationsInput | No |
jeExperience | Int | IntFieldUpdateOperationsInput | No |
studyAssignees | StudyAssigneeUncheckedUpdateOneWithoutMriFormNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
experience | String | StringFieldUpdateOperationsInput | No |
knowledge | String | StringFieldUpdateOperationsInput | No |
ideas | String | StringFieldUpdateOperationsInput | No |
jeExperience | Int | IntFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
cniId | String | No |
socialSecurityId | String | No |
studentCardId | String | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
studyId | String | No |
formInterviewId | String | No |
mriFormId | String | No |
selectionNotes | String | No |
taken | Boolean | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
cni | DocumentUpdateOneRequiredWithoutAssigneeCniNestedInput | No |
socialSecurity | DocumentUpdateOneRequiredWithoutAssigneeSocialSecurityNestedInput | No |
studentCard | DocumentUpdateOneRequiredWithoutAssigneeStudentCardNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
cniId | String | StringFieldUpdateOperationsInput | No |
socialSecurityId | String | StringFieldUpdateOperationsInput | No |
studentCardId | String | StringFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
cniId | String | StringFieldUpdateOperationsInput | No |
socialSecurityId | String | StringFieldUpdateOperationsInput | No |
studentCardId | String | StringFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
selectionNotes | String | StringFieldUpdateOperationsInput | No |
taken | Boolean | BoolFieldUpdateOperationsInput | No |
study | StudyUpdateOneRequiredWithoutStudyAssigneesNestedInput | No |
formInterview | FormInterviewsUpdateOneRequiredWithoutStudyAssigneesNestedInput | No |
mriForm | MriFormUpdateOneRequiredWithoutStudyAssigneesNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
studyId | String | StringFieldUpdateOperationsInput | No |
formInterviewId | String | StringFieldUpdateOperationsInput | No |
mriFormId | String | StringFieldUpdateOperationsInput | No |
selectionNotes | String | StringFieldUpdateOperationsInput | No |
taken | Boolean | BoolFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
studyId | String | StringFieldUpdateOperationsInput | No |
formInterviewId | String | StringFieldUpdateOperationsInput | No |
mriFormId | String | StringFieldUpdateOperationsInput | No |
selectionNotes | String | StringFieldUpdateOperationsInput | No |
taken | Boolean | BoolFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
clientId | String | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
assigneeId | String | No |
formInterviewId | String | No |
mriFormId | String | No |
selectionNotes | String | No |
taken | Boolean | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
position | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
image | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
user | UserUpdateOneRequiredWithoutAdminNestedInput | No |
auditedStudies | StudyUpdateManyWithoutAuditorsNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
userId | String | StringFieldUpdateOperationsInput | No |
position | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
image | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
auditedStudies | StudyUncheckedUpdateManyWithoutAuditorsNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
userId | String | StringFieldUpdateOperationsInput | No |
position | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
image | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
position | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
image | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
user | UserUpdateOneRequiredWithoutAdminNestedInput | No |
studies | StudyUpdateManyWithoutCdpsNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
userId | String | StringFieldUpdateOperationsInput | No |
position | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
image | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
studies | StudyUncheckedUpdateManyWithoutCdpsNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
userId | String | StringFieldUpdateOperationsInput | No |
position | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
image | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
client | ClientUpdateOneRequiredWithoutStudyClientsNestedInput | No |
satisfaction | SatisfactionUpdateOneWithoutStudyClientNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
clientId | String | StringFieldUpdateOperationsInput | No |
satisfaction | SatisfactionUncheckedUpdateOneWithoutStudyClientNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
clientId | String | StringFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
selectionNotes | String | StringFieldUpdateOperationsInput | No |
taken | Boolean | BoolFieldUpdateOperationsInput | No |
assignee | AssigneeUpdateOneRequiredWithoutStudyAssignNestedInput | No |
formInterview | FormInterviewsUpdateOneRequiredWithoutStudyAssigneesNestedInput | No |
mriForm | MriFormUpdateOneRequiredWithoutStudyAssigneesNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
assigneeId | String | StringFieldUpdateOperationsInput | No |
formInterviewId | String | StringFieldUpdateOperationsInput | No |
mriFormId | String | StringFieldUpdateOperationsInput | No |
selectionNotes | String | StringFieldUpdateOperationsInput | No |
taken | Boolean | BoolFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
assigneeId | String | StringFieldUpdateOperationsInput | No |
formInterviewId | String | StringFieldUpdateOperationsInput | No |
mriFormId | String | StringFieldUpdateOperationsInput | No |
selectionNotes | String | StringFieldUpdateOperationsInput | No |
taken | Boolean | BoolFieldUpdateOperationsInput | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
jehs | Int | No |
title | String | No |
unitPrice | Float | No |
startDate | DateTime | Null | Yes |
endDate | DateTime | Null | Yes |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
jehs | Int | IntFieldUpdateOperationsInput | No |
title | String | StringFieldUpdateOperationsInput | No |
unitPrice | Float | FloatFieldUpdateOperationsInput | No |
startDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
endDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
deliverable | DeliverableUpdateOneWithoutPhaseNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
jehs | Int | IntFieldUpdateOperationsInput | No |
title | String | StringFieldUpdateOperationsInput | No |
unitPrice | Float | FloatFieldUpdateOperationsInput | No |
startDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
endDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
deliverable | DeliverableUncheckedUpdateOneWithoutPhaseNestedInput | No |
Name | Type | Nullable |
---|---|---|
id | String | StringFieldUpdateOperationsInput | No |
jehs | Int | IntFieldUpdateOperationsInput | No |
title | String | StringFieldUpdateOperationsInput | No |
unitPrice | Float | FloatFieldUpdateOperationsInput | No |
startDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
endDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
String | No | |
firstName | String | Yes |
lastName | String | Yes |
number | String | No |
address | Address | No |
user | User | No |
assignee | Assignee | No |
clients | Client | No |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
personId | String | Yes |
userSettingsId | String | No |
person | Person | Yes |
settings | UserSettings | No |
admin | Admin | No |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
userId | String | Yes |
position | String | No |
image | String | No |
user | User | Yes |
studies | Study[] | No |
auditedStudies | Study[] | No |
_count | AdminCountOutputType | Yes |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
theme | String | Yes |
notificationLevel | NotificationLevel | Yes |
gui | Boolean | Yes |
User | User[] | No |
_count | UserSettingsCountOutputType | Yes |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
streetNumber | String | Yes |
streetName | String | Yes |
city | String | Yes |
zipCode | String | Yes |
country | String | Yes |
personId | String | No |
companyId | String | No |
person | Person | No |
Company | Company | No |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
privateIndividual | Boolean | Yes |
companyId | String | No |
personId | String | Yes |
job | String | Yes |
company | Company | No |
person | Person | Yes |
studyClients | StudyClient[] | No |
_count | ClientCountOutputType | Yes |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
studyId | String | Yes |
clientId | String | Yes |
study | Study | Yes |
client | Client | Yes |
satisfaction | Satisfaction | No |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
studyClientId | String | Yes |
studyId | String | Yes |
publish | Boolean | Yes |
howKnowUs | String | Yes |
whyUs | String | Yes |
satisfactionObjectives | Int | Yes |
easiness | Int | Yes |
timeElapsed | Int | Yes |
recommendUs | Int | Yes |
studyClient | StudyClient | Yes |
study | Study | Yes |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
name | String | Yes |
companyInfosId | String | Yes |
address | Address | No |
companyInfos | CompanyInfos | Yes |
members | Client[] | No |
_count | CompanyCountOutputType | Yes |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
domains | Domain[] | No |
ca | Int | No |
size | CompanySize | No |
company | Company[] | No |
_count | CompanyInfosCountOutputType | Yes |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
title | String | Yes |
googleId | String | Yes |
type | String | Yes |
studyDocsId | String | No |
statusId | String | No |
status | Status | No |
assigneeCni | AssigneeDocs | No |
assigneeSocialSecurity | AssigneeDocs | No |
assigneeStudentCard | AssigneeDocs | No |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
docsId | String | Yes |
created | DateTime | No |
wrote | DateTime | No |
audited | DateTime | No |
sent | DateTime | No |
approved | DateTime | No |
signed | DateTime | No |
end_of_validity | DateTime | No |
writing_deadline | DateTime | No |
documentId | String | Yes |
document | Document[] | No |
_count | StatusCountOutputType | Yes |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
wageLowerBound | Int | No |
wageUpperBound | Int | No |
wageLevel | Level | No |
difficulty | Level | No |
mainDomain | Domain | No |
introductionText | String | No |
descriptionText | String | No |
timeLapsText | String | No |
requiredSkillsText | String | No |
status | MriStatus | Yes |
studyId | String | Yes |
study | Study | Yes |
formMRIs | MriForm[] | No |
_count | MriCountOutputType | Yes |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
nbApplications | Int | Yes |
peopleId | String | Yes |
docs | AssigneeDocs[] | No |
information | AssigneeInfos | No |
person | Person | Yes |
studyAssign | StudyAssignee[] | No |
_count | AssigneeCountOutputType | Yes |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
assigneeId | String | Yes |
age | Int | Yes |
promotion | Int | Yes |
hasScholarship | Boolean | Yes |
oldJet | Boolean | Yes |
assignee | Assignee | Yes |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
assigneeId | String | Yes |
cniId | String | Yes |
socialSecurityId | String | Yes |
studentCardId | String | Yes |
assignee | Assignee | Yes |
cni | Document | Yes |
socialSecurity | Document | Yes |
studentCard | Document | Yes |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
studyId | String | Yes |
assigneeId | String | Yes |
formInterviewId | String | Yes |
mriFormId | String | Yes |
selectionNotes | String | Yes |
taken | Boolean | Yes |
study | Study | Yes |
assignee | Assignee | Yes |
formInterview | FormInterviews | Yes |
mriForm | MriForm | Yes |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
mriId | String | Yes |
experience | String | Yes |
knowledge | String | Yes |
ideas | String | Yes |
jeExperience | Int | Yes |
mri | Mri | Yes |
studyAssignees | StudyAssignee | No |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
available | Boolean | Yes |
approach | String | Yes |
courses | String | Yes |
starS | String | Yes |
starT | String | Yes |
starA | String | Yes |
starR | String | Yes |
motivation | String | Yes |
cdpRequirements | String | Yes |
questions | String | Yes |
studyAssignees | StudyAssignee | No |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
informationId | String | Yes |
studyProceedingsId | String | No |
cdps | Admin[] | No |
auditors | Admin[] | No |
information | StudyInfos | Yes |
studyProceedings | StudyProceedings | No |
clients | StudyClient[] | No |
mri | Mri | No |
studyAssignees | StudyAssignee[] | No |
satisfaction | Satisfaction | No |
_count | StudyCountOutputType | Yes |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
code | String | Yes |
googleFolder | String | No |
title | String | No |
applicationFee | Float | Yes |
cc | Boolean | Yes |
domains | Domain[] | No |
estimatedDuration | Int | No |
deadlinePreStudy | DateTime | No |
study | Study | No |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
studyId | String | Yes |
studyProcessStep | StudyProgressStep | Yes |
phases | Phase[] | No |
study | Study | Yes |
_count | StudyProceedingsCountOutputType | Yes |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
jehs | Int | Yes |
title | String | Yes |
unitPrice | Float | Yes |
startDate | DateTime | No |
endDate | DateTime | No |
studyProceedingsId | String | Yes |
deliverable | Deliverable | No |
studyProceedings | StudyProceedings | Yes |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
description | String | Yes |
status | DeliverableStatus | Yes |
phaseId | String | Yes |
phase | Phase | Yes |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
String | No | |
firstName | String | Yes |
lastName | String | Yes |
number | String | No |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
String | No | |
firstName | String | Yes |
lastName | String | Yes |
number | String | No |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
personId | String | Yes |
userSettingsId | String | No |
person | Person | Yes |
settings | UserSettings | No |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
personId | String | Yes |
userSettingsId | String | No |
person | Person | Yes |
settings | UserSettings | No |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
userId | String | Yes |
position | String | No |
image | String | No |
user | User | Yes |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
userId | String | Yes |
position | String | No |
image | String | No |
user | User | Yes |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
theme | String | Yes |
notificationLevel | NotificationLevel | Yes |
gui | Boolean | Yes |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
theme | String | Yes |
notificationLevel | NotificationLevel | Yes |
gui | Boolean | Yes |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
streetNumber | String | Yes |
streetName | String | Yes |
city | String | Yes |
zipCode | String | Yes |
country | String | Yes |
personId | String | No |
companyId | String | No |
person | Person | No |
Company | Company | No |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
streetNumber | String | Yes |
streetName | String | Yes |
city | String | Yes |
zipCode | String | Yes |
country | String | Yes |
personId | String | No |
companyId | String | No |
person | Person | No |
Company | Company | No |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
privateIndividual | Boolean | Yes |
companyId | String | No |
personId | String | Yes |
job | String | Yes |
company | Company | No |
person | Person | Yes |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
privateIndividual | Boolean | Yes |
companyId | String | No |
personId | String | Yes |
job | String | Yes |
company | Company | No |
person | Person | Yes |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
studyId | String | Yes |
clientId | String | Yes |
study | Study | Yes |
client | Client | Yes |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
studyId | String | Yes |
clientId | String | Yes |
study | Study | Yes |
client | Client | Yes |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
studyClientId | String | Yes |
studyId | String | Yes |
publish | Boolean | Yes |
howKnowUs | String | Yes |
whyUs | String | Yes |
satisfactionObjectives | Int | Yes |
easiness | Int | Yes |
timeElapsed | Int | Yes |
recommendUs | Int | Yes |
studyClient | StudyClient | Yes |
study | Study | Yes |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
studyClientId | String | Yes |
studyId | String | Yes |
publish | Boolean | Yes |
howKnowUs | String | Yes |
whyUs | String | Yes |
satisfactionObjectives | Int | Yes |
easiness | Int | Yes |
timeElapsed | Int | Yes |
recommendUs | Int | Yes |
studyClient | StudyClient | Yes |
study | Study | Yes |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
name | String | Yes |
companyInfosId | String | Yes |
companyInfos | CompanyInfos | Yes |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
name | String | Yes |
companyInfosId | String | Yes |
companyInfos | CompanyInfos | Yes |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
domains | Domain[] | No |
ca | Int | No |
size | CompanySize | No |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
domains | Domain[] | No |
ca | Int | No |
size | CompanySize | No |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
title | String | Yes |
googleId | String | Yes |
type | String | Yes |
studyDocsId | String | No |
statusId | String | No |
status | Status | No |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
title | String | Yes |
googleId | String | Yes |
type | String | Yes |
studyDocsId | String | No |
statusId | String | No |
status | Status | No |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
docsId | String | Yes |
created | DateTime | No |
wrote | DateTime | No |
audited | DateTime | No |
sent | DateTime | No |
approved | DateTime | No |
signed | DateTime | No |
end_of_validity | DateTime | No |
writing_deadline | DateTime | No |
documentId | String | Yes |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
docsId | String | Yes |
created | DateTime | No |
wrote | DateTime | No |
audited | DateTime | No |
sent | DateTime | No |
approved | DateTime | No |
signed | DateTime | No |
end_of_validity | DateTime | No |
writing_deadline | DateTime | No |
documentId | String | Yes |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
wageLowerBound | Int | No |
wageUpperBound | Int | No |
wageLevel | Level | No |
difficulty | Level | No |
mainDomain | Domain | No |
introductionText | String | No |
descriptionText | String | No |
timeLapsText | String | No |
requiredSkillsText | String | No |
status | MriStatus | Yes |
studyId | String | Yes |
study | Study | Yes |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
wageLowerBound | Int | No |
wageUpperBound | Int | No |
wageLevel | Level | No |
difficulty | Level | No |
mainDomain | Domain | No |
introductionText | String | No |
descriptionText | String | No |
timeLapsText | String | No |
requiredSkillsText | String | No |
status | MriStatus | Yes |
studyId | String | Yes |
study | Study | Yes |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
nbApplications | Int | Yes |
peopleId | String | Yes |
person | Person | Yes |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
nbApplications | Int | Yes |
peopleId | String | Yes |
person | Person | Yes |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
assigneeId | String | Yes |
age | Int | Yes |
promotion | Int | Yes |
hasScholarship | Boolean | Yes |
oldJet | Boolean | Yes |
assignee | Assignee | Yes |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
assigneeId | String | Yes |
age | Int | Yes |
promotion | Int | Yes |
hasScholarship | Boolean | Yes |
oldJet | Boolean | Yes |
assignee | Assignee | Yes |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
assigneeId | String | Yes |
cniId | String | Yes |
socialSecurityId | String | Yes |
studentCardId | String | Yes |
assignee | Assignee | Yes |
cni | Document | Yes |
socialSecurity | Document | Yes |
studentCard | Document | Yes |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
assigneeId | String | Yes |
cniId | String | Yes |
socialSecurityId | String | Yes |
studentCardId | String | Yes |
assignee | Assignee | Yes |
cni | Document | Yes |
socialSecurity | Document | Yes |
studentCard | Document | Yes |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
studyId | String | Yes |
assigneeId | String | Yes |
formInterviewId | String | Yes |
mriFormId | String | Yes |
selectionNotes | String | Yes |
taken | Boolean | Yes |
study | Study | Yes |
assignee | Assignee | Yes |
formInterview | FormInterviews | Yes |
mriForm | MriForm | Yes |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
studyId | String | Yes |
assigneeId | String | Yes |
formInterviewId | String | Yes |
mriFormId | String | Yes |
selectionNotes | String | Yes |
taken | Boolean | Yes |
study | Study | Yes |
assignee | Assignee | Yes |
formInterview | FormInterviews | Yes |
mriForm | MriForm | Yes |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
mriId | String | Yes |
experience | String | Yes |
knowledge | String | Yes |
ideas | String | Yes |
jeExperience | Int | Yes |
mri | Mri | Yes |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
mriId | String | Yes |
experience | String | Yes |
knowledge | String | Yes |
ideas | String | Yes |
jeExperience | Int | Yes |
mri | Mri | Yes |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
available | Boolean | Yes |
approach | String | Yes |
courses | String | Yes |
starS | String | Yes |
starT | String | Yes |
starA | String | Yes |
starR | String | Yes |
motivation | String | Yes |
cdpRequirements | String | Yes |
questions | String | Yes |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
available | Boolean | Yes |
approach | String | Yes |
courses | String | Yes |
starS | String | Yes |
starT | String | Yes |
starA | String | Yes |
starR | String | Yes |
motivation | String | Yes |
cdpRequirements | String | Yes |
questions | String | Yes |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
informationId | String | Yes |
studyProceedingsId | String | No |
information | StudyInfos | Yes |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
informationId | String | Yes |
studyProceedingsId | String | No |
information | StudyInfos | Yes |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
code | String | Yes |
googleFolder | String | No |
title | String | No |
applicationFee | Float | Yes |
cc | Boolean | Yes |
domains | Domain[] | No |
estimatedDuration | Int | No |
deadlinePreStudy | DateTime | No |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
code | String | Yes |
googleFolder | String | No |
title | String | No |
applicationFee | Float | Yes |
cc | Boolean | Yes |
domains | Domain[] | No |
estimatedDuration | Int | No |
deadlinePreStudy | DateTime | No |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
studyId | String | Yes |
studyProcessStep | StudyProgressStep | Yes |
study | Study | Yes |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
studyId | String | Yes |
studyProcessStep | StudyProgressStep | Yes |
study | Study | Yes |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
jehs | Int | Yes |
title | String | Yes |
unitPrice | Float | Yes |
startDate | DateTime | No |
endDate | DateTime | No |
studyProceedingsId | String | Yes |
studyProceedings | StudyProceedings | Yes |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
jehs | Int | Yes |
title | String | Yes |
unitPrice | Float | Yes |
startDate | DateTime | No |
endDate | DateTime | No |
studyProceedingsId | String | Yes |
studyProceedings | StudyProceedings | Yes |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
description | String | Yes |
status | DeliverableStatus | Yes |
phaseId | String | Yes |
phase | Phase | Yes |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
description | String | Yes |
status | DeliverableStatus | Yes |
phaseId | String | Yes |
phase | Phase | Yes |
Name | Type | Nullable |
---|---|---|
_count | PersonCountAggregateOutputType | No |
_min | PersonMinAggregateOutputType | No |
_max | PersonMaxAggregateOutputType | No |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
String | No | |
firstName | String | Yes |
lastName | String | Yes |
number | String | No |
_count | PersonCountAggregateOutputType | No |
_min | PersonMinAggregateOutputType | No |
_max | PersonMaxAggregateOutputType | No |
Name | Type | Nullable |
---|---|---|
_count | UserCountAggregateOutputType | No |
_min | UserMinAggregateOutputType | No |
_max | UserMaxAggregateOutputType | No |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
personId | String | Yes |
userSettingsId | String | No |
_count | UserCountAggregateOutputType | No |
_min | UserMinAggregateOutputType | No |
_max | UserMaxAggregateOutputType | No |
Name | Type | Nullable |
---|---|---|
_count | AdminCountAggregateOutputType | No |
_min | AdminMinAggregateOutputType | No |
_max | AdminMaxAggregateOutputType | No |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
userId | String | Yes |
position | String | No |
image | String | No |
_count | AdminCountAggregateOutputType | No |
_min | AdminMinAggregateOutputType | No |
_max | AdminMaxAggregateOutputType | No |
Name | Type | Nullable |
---|---|---|
_count | UserSettingsCountAggregateOutputType | No |
_min | UserSettingsMinAggregateOutputType | No |
_max | UserSettingsMaxAggregateOutputType | No |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
theme | String | Yes |
notificationLevel | NotificationLevel | Yes |
gui | Boolean | Yes |
_count | UserSettingsCountAggregateOutputType | No |
_min | UserSettingsMinAggregateOutputType | No |
_max | UserSettingsMaxAggregateOutputType | No |
Name | Type | Nullable |
---|---|---|
_count | AddressCountAggregateOutputType | No |
_min | AddressMinAggregateOutputType | No |
_max | AddressMaxAggregateOutputType | No |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
streetNumber | String | Yes |
streetName | String | Yes |
city | String | Yes |
zipCode | String | Yes |
country | String | Yes |
personId | String | No |
companyId | String | No |
_count | AddressCountAggregateOutputType | No |
_min | AddressMinAggregateOutputType | No |
_max | AddressMaxAggregateOutputType | No |
Name | Type | Nullable |
---|---|---|
_count | ClientCountAggregateOutputType | No |
_min | ClientMinAggregateOutputType | No |
_max | ClientMaxAggregateOutputType | No |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
privateIndividual | Boolean | Yes |
companyId | String | No |
personId | String | Yes |
job | String | Yes |
_count | ClientCountAggregateOutputType | No |
_min | ClientMinAggregateOutputType | No |
_max | ClientMaxAggregateOutputType | No |
Name | Type | Nullable |
---|---|---|
_count | StudyClientCountAggregateOutputType | No |
_min | StudyClientMinAggregateOutputType | No |
_max | StudyClientMaxAggregateOutputType | No |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
studyId | String | Yes |
clientId | String | Yes |
_count | StudyClientCountAggregateOutputType | No |
_min | StudyClientMinAggregateOutputType | No |
_max | StudyClientMaxAggregateOutputType | No |
Name | Type | Nullable |
---|---|---|
_count | SatisfactionCountAggregateOutputType | No |
_avg | SatisfactionAvgAggregateOutputType | No |
_sum | SatisfactionSumAggregateOutputType | No |
_min | SatisfactionMinAggregateOutputType | No |
_max | SatisfactionMaxAggregateOutputType | No |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
studyClientId | String | Yes |
studyId | String | Yes |
publish | Boolean | Yes |
howKnowUs | String | Yes |
whyUs | String | Yes |
satisfactionObjectives | Int | Yes |
easiness | Int | Yes |
timeElapsed | Int | Yes |
recommendUs | Int | Yes |
_count | SatisfactionCountAggregateOutputType | No |
_avg | SatisfactionAvgAggregateOutputType | No |
_sum | SatisfactionSumAggregateOutputType | No |
_min | SatisfactionMinAggregateOutputType | No |
_max | SatisfactionMaxAggregateOutputType | No |
Name | Type | Nullable |
---|---|---|
_count | CompanyCountAggregateOutputType | No |
_min | CompanyMinAggregateOutputType | No |
_max | CompanyMaxAggregateOutputType | No |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
name | String | Yes |
companyInfosId | String | Yes |
_count | CompanyCountAggregateOutputType | No |
_min | CompanyMinAggregateOutputType | No |
_max | CompanyMaxAggregateOutputType | No |
Name | Type | Nullable |
---|---|---|
_count | CompanyInfosCountAggregateOutputType | No |
_avg | CompanyInfosAvgAggregateOutputType | No |
_sum | CompanyInfosSumAggregateOutputType | No |
_min | CompanyInfosMinAggregateOutputType | No |
_max | CompanyInfosMaxAggregateOutputType | No |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
domains | Domain[] | No |
ca | Int | No |
size | CompanySize | No |
_count | CompanyInfosCountAggregateOutputType | No |
_avg | CompanyInfosAvgAggregateOutputType | No |
_sum | CompanyInfosSumAggregateOutputType | No |
_min | CompanyInfosMinAggregateOutputType | No |
_max | CompanyInfosMaxAggregateOutputType | No |
Name | Type | Nullable |
---|---|---|
_count | DocumentCountAggregateOutputType | No |
_min | DocumentMinAggregateOutputType | No |
_max | DocumentMaxAggregateOutputType | No |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
title | String | Yes |
googleId | String | Yes |
type | String | Yes |
studyDocsId | String | No |
statusId | String | No |
_count | DocumentCountAggregateOutputType | No |
_min | DocumentMinAggregateOutputType | No |
_max | DocumentMaxAggregateOutputType | No |
Name | Type | Nullable |
---|---|---|
_count | StatusCountAggregateOutputType | No |
_min | StatusMinAggregateOutputType | No |
_max | StatusMaxAggregateOutputType | No |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
docsId | String | Yes |
created | DateTime | No |
wrote | DateTime | No |
audited | DateTime | No |
sent | DateTime | No |
approved | DateTime | No |
signed | DateTime | No |
end_of_validity | DateTime | No |
writing_deadline | DateTime | No |
documentId | String | Yes |
_count | StatusCountAggregateOutputType | No |
_min | StatusMinAggregateOutputType | No |
_max | StatusMaxAggregateOutputType | No |
Name | Type | Nullable |
---|---|---|
_count | MriCountAggregateOutputType | No |
_avg | MriAvgAggregateOutputType | No |
_sum | MriSumAggregateOutputType | No |
_min | MriMinAggregateOutputType | No |
_max | MriMaxAggregateOutputType | No |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
wageLowerBound | Int | No |
wageUpperBound | Int | No |
wageLevel | Level | No |
difficulty | Level | No |
mainDomain | Domain | No |
introductionText | String | No |
descriptionText | String | No |
timeLapsText | String | No |
requiredSkillsText | String | No |
status | MriStatus | Yes |
studyId | String | Yes |
_count | MriCountAggregateOutputType | No |
_avg | MriAvgAggregateOutputType | No |
_sum | MriSumAggregateOutputType | No |
_min | MriMinAggregateOutputType | No |
_max | MriMaxAggregateOutputType | No |
Name | Type | Nullable |
---|---|---|
_count | AssigneeCountAggregateOutputType | No |
_avg | AssigneeAvgAggregateOutputType | No |
_sum | AssigneeSumAggregateOutputType | No |
_min | AssigneeMinAggregateOutputType | No |
_max | AssigneeMaxAggregateOutputType | No |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
nbApplications | Int | Yes |
peopleId | String | Yes |
_count | AssigneeCountAggregateOutputType | No |
_avg | AssigneeAvgAggregateOutputType | No |
_sum | AssigneeSumAggregateOutputType | No |
_min | AssigneeMinAggregateOutputType | No |
_max | AssigneeMaxAggregateOutputType | No |
Name | Type | Nullable |
---|---|---|
_count | AssigneeInfosCountAggregateOutputType | No |
_avg | AssigneeInfosAvgAggregateOutputType | No |
_sum | AssigneeInfosSumAggregateOutputType | No |
_min | AssigneeInfosMinAggregateOutputType | No |
_max | AssigneeInfosMaxAggregateOutputType | No |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
assigneeId | String | Yes |
age | Int | Yes |
promotion | Int | Yes |
hasScholarship | Boolean | Yes |
oldJet | Boolean | Yes |
_count | AssigneeInfosCountAggregateOutputType | No |
_avg | AssigneeInfosAvgAggregateOutputType | No |
_sum | AssigneeInfosSumAggregateOutputType | No |
_min | AssigneeInfosMinAggregateOutputType | No |
_max | AssigneeInfosMaxAggregateOutputType | No |
Name | Type | Nullable |
---|---|---|
_count | AssigneeDocsCountAggregateOutputType | No |
_min | AssigneeDocsMinAggregateOutputType | No |
_max | AssigneeDocsMaxAggregateOutputType | No |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
assigneeId | String | Yes |
cniId | String | Yes |
socialSecurityId | String | Yes |
studentCardId | String | Yes |
_count | AssigneeDocsCountAggregateOutputType | No |
_min | AssigneeDocsMinAggregateOutputType | No |
_max | AssigneeDocsMaxAggregateOutputType | No |
Name | Type | Nullable |
---|---|---|
_count | StudyAssigneeCountAggregateOutputType | No |
_min | StudyAssigneeMinAggregateOutputType | No |
_max | StudyAssigneeMaxAggregateOutputType | No |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
studyId | String | Yes |
assigneeId | String | Yes |
formInterviewId | String | Yes |
mriFormId | String | Yes |
selectionNotes | String | Yes |
taken | Boolean | Yes |
_count | StudyAssigneeCountAggregateOutputType | No |
_min | StudyAssigneeMinAggregateOutputType | No |
_max | StudyAssigneeMaxAggregateOutputType | No |
Name | Type | Nullable |
---|---|---|
_count | MriFormCountAggregateOutputType | No |
_avg | MriFormAvgAggregateOutputType | No |
_sum | MriFormSumAggregateOutputType | No |
_min | MriFormMinAggregateOutputType | No |
_max | MriFormMaxAggregateOutputType | No |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
mriId | String | Yes |
experience | String | Yes |
knowledge | String | Yes |
ideas | String | Yes |
jeExperience | Int | Yes |
_count | MriFormCountAggregateOutputType | No |
_avg | MriFormAvgAggregateOutputType | No |
_sum | MriFormSumAggregateOutputType | No |
_min | MriFormMinAggregateOutputType | No |
_max | MriFormMaxAggregateOutputType | No |
Name | Type | Nullable |
---|---|---|
_count | FormInterviewsCountAggregateOutputType | No |
_min | FormInterviewsMinAggregateOutputType | No |
_max | FormInterviewsMaxAggregateOutputType | No |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
available | Boolean | Yes |
approach | String | Yes |
courses | String | Yes |
starS | String | Yes |
starT | String | Yes |
starA | String | Yes |
starR | String | Yes |
motivation | String | Yes |
cdpRequirements | String | Yes |
questions | String | Yes |
_count | FormInterviewsCountAggregateOutputType | No |
_min | FormInterviewsMinAggregateOutputType | No |
_max | FormInterviewsMaxAggregateOutputType | No |
Name | Type | Nullable |
---|---|---|
_count | StudyCountAggregateOutputType | No |
_min | StudyMinAggregateOutputType | No |
_max | StudyMaxAggregateOutputType | No |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
informationId | String | Yes |
studyProceedingsId | String | No |
_count | StudyCountAggregateOutputType | No |
_min | StudyMinAggregateOutputType | No |
_max | StudyMaxAggregateOutputType | No |
Name | Type | Nullable |
---|---|---|
_count | StudyInfosCountAggregateOutputType | No |
_avg | StudyInfosAvgAggregateOutputType | No |
_sum | StudyInfosSumAggregateOutputType | No |
_min | StudyInfosMinAggregateOutputType | No |
_max | StudyInfosMaxAggregateOutputType | No |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
code | String | Yes |
googleFolder | String | No |
title | String | No |
applicationFee | Float | Yes |
cc | Boolean | Yes |
domains | Domain[] | No |
estimatedDuration | Int | No |
deadlinePreStudy | DateTime | No |
_count | StudyInfosCountAggregateOutputType | No |
_avg | StudyInfosAvgAggregateOutputType | No |
_sum | StudyInfosSumAggregateOutputType | No |
_min | StudyInfosMinAggregateOutputType | No |
_max | StudyInfosMaxAggregateOutputType | No |
Name | Type | Nullable |
---|---|---|
_count | StudyProceedingsCountAggregateOutputType | No |
_min | StudyProceedingsMinAggregateOutputType | No |
_max | StudyProceedingsMaxAggregateOutputType | No |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
studyId | String | Yes |
studyProcessStep | StudyProgressStep | Yes |
_count | StudyProceedingsCountAggregateOutputType | No |
_min | StudyProceedingsMinAggregateOutputType | No |
_max | StudyProceedingsMaxAggregateOutputType | No |
Name | Type | Nullable |
---|---|---|
_count | PhaseCountAggregateOutputType | No |
_avg | PhaseAvgAggregateOutputType | No |
_sum | PhaseSumAggregateOutputType | No |
_min | PhaseMinAggregateOutputType | No |
_max | PhaseMaxAggregateOutputType | No |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
jehs | Int | Yes |
title | String | Yes |
unitPrice | Float | Yes |
startDate | DateTime | No |
endDate | DateTime | No |
studyProceedingsId | String | Yes |
_count | PhaseCountAggregateOutputType | No |
_avg | PhaseAvgAggregateOutputType | No |
_sum | PhaseSumAggregateOutputType | No |
_min | PhaseMinAggregateOutputType | No |
_max | PhaseMaxAggregateOutputType | No |
Name | Type | Nullable |
---|---|---|
_count | DeliverableCountAggregateOutputType | No |
_min | DeliverableMinAggregateOutputType | No |
_max | DeliverableMaxAggregateOutputType | No |
Name | Type | Nullable |
---|---|---|
id | String | Yes |
description | String | Yes |
status | DeliverableStatus | Yes |
phaseId | String | Yes |
_count | DeliverableCountAggregateOutputType | No |
_min | DeliverableMinAggregateOutputType | No |
_max | DeliverableMaxAggregateOutputType | No |
Name | Type | Nullable |
---|---|---|
count | Int | Yes |
Name | Type | Nullable |
---|---|---|
id | Int | Yes |
Int | Yes | |
firstName | Int | Yes |
lastName | Int | Yes |
number | Int | Yes |
_all | Int | Yes |
Name | Type | Nullable |
---|---|---|
id | String | No |
String | No | |
firstName | String | No |
lastName | String | No |
number | String | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
String | No | |
firstName | String | No |
lastName | String | No |
number | String | No |
Name | Type | Nullable |
---|---|---|
id | Int | Yes |
personId | Int | Yes |
userSettingsId | Int | Yes |
_all | Int | Yes |
Name | Type | Nullable |
---|---|---|
id | String | No |
personId | String | No |
userSettingsId | String | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
personId | String | No |
userSettingsId | String | No |
Name | Type | Nullable |
---|---|---|
studies | Int | Yes |
auditedStudies | Int | Yes |
Name | Type | Nullable |
---|---|---|
id | Int | Yes |
userId | Int | Yes |
position | Int | Yes |
image | Int | Yes |
_all | Int | Yes |
Name | Type | Nullable |
---|---|---|
id | String | No |
userId | String | No |
position | String | No |
image | String | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
userId | String | No |
position | String | No |
image | String | No |
Name | Type | Nullable |
---|---|---|
User | Int | Yes |
Name | Type | Nullable |
---|---|---|
id | Int | Yes |
theme | Int | Yes |
notificationLevel | Int | Yes |
gui | Int | Yes |
_all | Int | Yes |
Name | Type | Nullable |
---|---|---|
id | String | No |
theme | String | No |
notificationLevel | NotificationLevel | No |
gui | Boolean | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
theme | String | No |
notificationLevel | NotificationLevel | No |
gui | Boolean | No |
Name | Type | Nullable |
---|---|---|
id | Int | Yes |
streetNumber | Int | Yes |
streetName | Int | Yes |
city | Int | Yes |
zipCode | Int | Yes |
country | Int | Yes |
personId | Int | Yes |
companyId | Int | Yes |
_all | Int | Yes |
Name | Type | Nullable |
---|---|---|
id | String | No |
streetNumber | String | No |
streetName | String | No |
city | String | No |
zipCode | String | No |
country | String | No |
personId | String | No |
companyId | String | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
streetNumber | String | No |
streetName | String | No |
city | String | No |
zipCode | String | No |
country | String | No |
personId | String | No |
companyId | String | No |
Name | Type | Nullable |
---|---|---|
studyClients | Int | Yes |
Name | Type | Nullable |
---|---|---|
id | Int | Yes |
privateIndividual | Int | Yes |
companyId | Int | Yes |
personId | Int | Yes |
job | Int | Yes |
_all | Int | Yes |
Name | Type | Nullable |
---|---|---|
id | String | No |
privateIndividual | Boolean | No |
companyId | String | No |
personId | String | No |
job | String | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
privateIndividual | Boolean | No |
companyId | String | No |
personId | String | No |
job | String | No |
Name | Type | Nullable |
---|---|---|
id | Int | Yes |
studyId | Int | Yes |
clientId | Int | Yes |
_all | Int | Yes |
Name | Type | Nullable |
---|---|---|
id | String | No |
studyId | String | No |
clientId | String | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
studyId | String | No |
clientId | String | No |
Name | Type | Nullable |
---|---|---|
id | Int | Yes |
studyClientId | Int | Yes |
studyId | Int | Yes |
publish | Int | Yes |
howKnowUs | Int | Yes |
whyUs | Int | Yes |
satisfactionObjectives | Int | Yes |
easiness | Int | Yes |
timeElapsed | Int | Yes |
recommendUs | Int | Yes |
_all | Int | Yes |
Name | Type | Nullable |
---|---|---|
satisfactionObjectives | Float | No |
easiness | Float | No |
timeElapsed | Float | No |
recommendUs | Float | No |
Name | Type | Nullable |
---|---|---|
satisfactionObjectives | Int | No |
easiness | Int | No |
timeElapsed | Int | No |
recommendUs | Int | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
studyClientId | String | No |
studyId | String | No |
publish | Boolean | No |
howKnowUs | String | No |
whyUs | String | No |
satisfactionObjectives | Int | No |
easiness | Int | No |
timeElapsed | Int | No |
recommendUs | Int | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
studyClientId | String | No |
studyId | String | No |
publish | Boolean | No |
howKnowUs | String | No |
whyUs | String | No |
satisfactionObjectives | Int | No |
easiness | Int | No |
timeElapsed | Int | No |
recommendUs | Int | No |
Name | Type | Nullable |
---|---|---|
members | Int | Yes |
Name | Type | Nullable |
---|---|---|
id | Int | Yes |
name | Int | Yes |
companyInfosId | Int | Yes |
_all | Int | Yes |
Name | Type | Nullable |
---|---|---|
id | String | No |
name | String | No |
companyInfosId | String | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
name | String | No |
companyInfosId | String | No |
Name | Type | Nullable |
---|---|---|
company | Int | Yes |
Name | Type | Nullable |
---|---|---|
id | Int | Yes |
domains | Int | Yes |
ca | Int | Yes |
size | Int | Yes |
_all | Int | Yes |
Name | Type | Nullable |
---|---|---|
ca | Float | No |
Name | Type | Nullable |
---|---|---|
ca | Int | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
ca | Int | No |
size | CompanySize | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
ca | Int | No |
size | CompanySize | No |
Name | Type | Nullable |
---|---|---|
id | Int | Yes |
title | Int | Yes |
googleId | Int | Yes |
type | Int | Yes |
studyDocsId | Int | Yes |
statusId | Int | Yes |
_all | Int | Yes |
Name | Type | Nullable |
---|---|---|
id | String | No |
title | String | No |
googleId | String | No |
type | String | No |
studyDocsId | String | No |
statusId | String | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
title | String | No |
googleId | String | No |
type | String | No |
studyDocsId | String | No |
statusId | String | No |
Name | Type | Nullable |
---|---|---|
document | Int | Yes |
Name | Type | Nullable |
---|---|---|
id | Int | Yes |
docsId | Int | Yes |
created | Int | Yes |
wrote | Int | Yes |
audited | Int | Yes |
sent | Int | Yes |
approved | Int | Yes |
signed | Int | Yes |
end_of_validity | Int | Yes |
writing_deadline | Int | Yes |
documentId | Int | Yes |
_all | Int | Yes |
Name | Type | Nullable |
---|---|---|
id | String | No |
docsId | String | No |
created | DateTime | No |
wrote | DateTime | No |
audited | DateTime | No |
sent | DateTime | No |
approved | DateTime | No |
signed | DateTime | No |
end_of_validity | DateTime | No |
writing_deadline | DateTime | No |
documentId | String | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
docsId | String | No |
created | DateTime | No |
wrote | DateTime | No |
audited | DateTime | No |
sent | DateTime | No |
approved | DateTime | No |
signed | DateTime | No |
end_of_validity | DateTime | No |
writing_deadline | DateTime | No |
documentId | String | No |
Name | Type | Nullable |
---|---|---|
formMRIs | Int | Yes |
Name | Type | Nullable |
---|---|---|
id | Int | Yes |
wageLowerBound | Int | Yes |
wageUpperBound | Int | Yes |
wageLevel | Int | Yes |
difficulty | Int | Yes |
mainDomain | Int | Yes |
introductionText | Int | Yes |
descriptionText | Int | Yes |
timeLapsText | Int | Yes |
requiredSkillsText | Int | Yes |
status | Int | Yes |
studyId | Int | Yes |
_all | Int | Yes |
Name | Type | Nullable |
---|---|---|
wageLowerBound | Float | No |
wageUpperBound | Float | No |
Name | Type | Nullable |
---|---|---|
wageLowerBound | Int | No |
wageUpperBound | Int | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
wageLowerBound | Int | No |
wageUpperBound | Int | No |
wageLevel | Level | No |
difficulty | Level | No |
mainDomain | Domain | No |
introductionText | String | No |
descriptionText | String | No |
timeLapsText | String | No |
requiredSkillsText | String | No |
status | MriStatus | No |
studyId | String | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
wageLowerBound | Int | No |
wageUpperBound | Int | No |
wageLevel | Level | No |
difficulty | Level | No |
mainDomain | Domain | No |
introductionText | String | No |
descriptionText | String | No |
timeLapsText | String | No |
requiredSkillsText | String | No |
status | MriStatus | No |
studyId | String | No |
Name | Type | Nullable |
---|---|---|
docs | Int | Yes |
studyAssign | Int | Yes |
Name | Type | Nullable |
---|---|---|
id | Int | Yes |
nbApplications | Int | Yes |
peopleId | Int | Yes |
_all | Int | Yes |
Name | Type | Nullable |
---|---|---|
nbApplications | Float | No |
Name | Type | Nullable |
---|---|---|
nbApplications | Int | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
nbApplications | Int | No |
peopleId | String | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
nbApplications | Int | No |
peopleId | String | No |
Name | Type | Nullable |
---|---|---|
id | Int | Yes |
assigneeId | Int | Yes |
age | Int | Yes |
promotion | Int | Yes |
hasScholarship | Int | Yes |
oldJet | Int | Yes |
_all | Int | Yes |
Name | Type | Nullable |
---|---|---|
age | Float | No |
promotion | Float | No |
Name | Type | Nullable |
---|---|---|
age | Int | No |
promotion | Int | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
assigneeId | String | No |
age | Int | No |
promotion | Int | No |
hasScholarship | Boolean | No |
oldJet | Boolean | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
assigneeId | String | No |
age | Int | No |
promotion | Int | No |
hasScholarship | Boolean | No |
oldJet | Boolean | No |
Name | Type | Nullable |
---|---|---|
id | Int | Yes |
assigneeId | Int | Yes |
cniId | Int | Yes |
socialSecurityId | Int | Yes |
studentCardId | Int | Yes |
_all | Int | Yes |
Name | Type | Nullable |
---|---|---|
id | String | No |
assigneeId | String | No |
cniId | String | No |
socialSecurityId | String | No |
studentCardId | String | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
assigneeId | String | No |
cniId | String | No |
socialSecurityId | String | No |
studentCardId | String | No |
Name | Type | Nullable |
---|---|---|
id | Int | Yes |
studyId | Int | Yes |
assigneeId | Int | Yes |
formInterviewId | Int | Yes |
mriFormId | Int | Yes |
selectionNotes | Int | Yes |
taken | Int | Yes |
_all | Int | Yes |
Name | Type | Nullable |
---|---|---|
id | String | No |
studyId | String | No |
assigneeId | String | No |
formInterviewId | String | No |
mriFormId | String | No |
selectionNotes | String | No |
taken | Boolean | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
studyId | String | No |
assigneeId | String | No |
formInterviewId | String | No |
mriFormId | String | No |
selectionNotes | String | No |
taken | Boolean | No |
Name | Type | Nullable |
---|---|---|
id | Int | Yes |
mriId | Int | Yes |
experience | Int | Yes |
knowledge | Int | Yes |
ideas | Int | Yes |
jeExperience | Int | Yes |
_all | Int | Yes |
Name | Type | Nullable |
---|---|---|
jeExperience | Float | No |
Name | Type | Nullable |
---|---|---|
jeExperience | Int | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
mriId | String | No |
experience | String | No |
knowledge | String | No |
ideas | String | No |
jeExperience | Int | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
mriId | String | No |
experience | String | No |
knowledge | String | No |
ideas | String | No |
jeExperience | Int | No |
Name | Type | Nullable |
---|---|---|
id | Int | Yes |
available | Int | Yes |
approach | Int | Yes |
courses | Int | Yes |
starS | Int | Yes |
starT | Int | Yes |
starA | Int | Yes |
starR | Int | Yes |
motivation | Int | Yes |
cdpRequirements | Int | Yes |
questions | Int | Yes |
_all | Int | Yes |
Name | Type | Nullable |
---|---|---|
id | String | No |
available | Boolean | No |
approach | String | No |
courses | String | No |
starS | String | No |
starT | String | No |
starA | String | No |
starR | String | No |
motivation | String | No |
cdpRequirements | String | No |
questions | String | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
available | Boolean | No |
approach | String | No |
courses | String | No |
starS | String | No |
starT | String | No |
starA | String | No |
starR | String | No |
motivation | String | No |
cdpRequirements | String | No |
questions | String | No |
Name | Type | Nullable |
---|---|---|
cdps | Int | Yes |
auditors | Int | Yes |
clients | Int | Yes |
studyAssignees | Int | Yes |
Name | Type | Nullable |
---|---|---|
id | Int | Yes |
informationId | Int | Yes |
studyProceedingsId | Int | Yes |
_all | Int | Yes |
Name | Type | Nullable |
---|---|---|
id | String | No |
informationId | String | No |
studyProceedingsId | String | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
informationId | String | No |
studyProceedingsId | String | No |
Name | Type | Nullable |
---|---|---|
id | Int | Yes |
code | Int | Yes |
googleFolder | Int | Yes |
title | Int | Yes |
applicationFee | Int | Yes |
cc | Int | Yes |
domains | Int | Yes |
estimatedDuration | Int | Yes |
deadlinePreStudy | Int | Yes |
_all | Int | Yes |
Name | Type | Nullable |
---|---|---|
applicationFee | Float | No |
estimatedDuration | Float | No |
Name | Type | Nullable |
---|---|---|
applicationFee | Float | No |
estimatedDuration | Int | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
code | String | No |
googleFolder | String | No |
title | String | No |
applicationFee | Float | No |
cc | Boolean | No |
estimatedDuration | Int | No |
deadlinePreStudy | DateTime | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
code | String | No |
googleFolder | String | No |
title | String | No |
applicationFee | Float | No |
cc | Boolean | No |
estimatedDuration | Int | No |
deadlinePreStudy | DateTime | No |
Name | Type | Nullable |
---|---|---|
phases | Int | Yes |
Name | Type | Nullable |
---|---|---|
id | Int | Yes |
studyId | Int | Yes |
studyProcessStep | Int | Yes |
_all | Int | Yes |
Name | Type | Nullable |
---|---|---|
id | String | No |
studyId | String | No |
studyProcessStep | StudyProgressStep | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
studyId | String | No |
studyProcessStep | StudyProgressStep | No |
Name | Type | Nullable |
---|---|---|
id | Int | Yes |
jehs | Int | Yes |
title | Int | Yes |
unitPrice | Int | Yes |
startDate | Int | Yes |
endDate | Int | Yes |
studyProceedingsId | Int | Yes |
_all | Int | Yes |
Name | Type | Nullable |
---|---|---|
jehs | Float | No |
unitPrice | Float | No |
Name | Type | Nullable |
---|---|---|
jehs | Int | No |
unitPrice | Float | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
jehs | Int | No |
title | String | No |
unitPrice | Float | No |
startDate | DateTime | No |
endDate | DateTime | No |
studyProceedingsId | String | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
jehs | Int | No |
title | String | No |
unitPrice | Float | No |
startDate | DateTime | No |
endDate | DateTime | No |
studyProceedingsId | String | No |
Name | Type | Nullable |
---|---|---|
id | Int | Yes |
description | Int | Yes |
status | Int | Yes |
phaseId | Int | Yes |
_all | Int | Yes |
Name | Type | Nullable |
---|---|---|
id | String | No |
description | String | No |
status | DeliverableStatus | No |
phaseId | String | No |
Name | Type | Nullable |
---|---|---|
id | String | No |
description | String | No |
status | DeliverableStatus | No |
phaseId | String | No |