Models
Types

Models

Person

Description: Model representing any person in the database.
This can represent users, that can access the ERP, and external people that will never have access to the ERP.
Name Value
@@unique
  • firstName
  • lastName
@@index
  • firstName
  • lastName

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid(1))
Yes -
email String?
  • -
No -
firstName String
  • -
Yes -
lastName String
  • -
Yes -
number String?
  • -
No Telephone number
address Address?
  • -
No -
user User?
  • -
No -
assignee Assignee?
  • -
No -
clients Client?
  • -
No -

Operations

findUnique

Find zero or one Person

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

Input

Name Type Required
where PersonWhereUniqueInput Yes

Output

Type: Person
Required: No
List: No

findFirst

Find first Person

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

Input

Name Type Required
where PersonWhereInput No
orderBy PersonOrderByWithRelationInput[] | PersonOrderByWithRelationInput No
cursor PersonWhereUniqueInput No
take Int No
skip Int No
distinct PersonScalarFieldEnum | PersonScalarFieldEnum[] No

Output

Type: Person
Required: No
List: No

findMany

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

Input

Name Type Required
where PersonWhereInput No
orderBy PersonOrderByWithRelationInput[] | PersonOrderByWithRelationInput No
cursor PersonWhereUniqueInput No
take Int No
skip Int No
distinct PersonScalarFieldEnum | PersonScalarFieldEnum[] No

Output

Type: Person
Required: Yes
List: Yes

create

Create one Person

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

Input

Name Type Required
data PersonCreateInput | PersonUncheckedCreateInput Yes

Output

Type: Person
Required: Yes
List: No

delete

Delete one Person

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

Input

Name Type Required
where PersonWhereUniqueInput Yes

Output

Type: Person
Required: No
List: No

update

Update one Person

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

Input

Name Type Required
data PersonUpdateInput | PersonUncheckedUpdateInput Yes
where PersonWhereUniqueInput Yes

Output

Type: Person
Required: No
List: No

deleteMany

Delete zero or more Person

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

Input

Name Type Required
where PersonWhereInput No
limit Int No

Output

Required: Yes
List: No

updateMany

Update zero or one Person

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

Input

Name Type Required
data PersonUpdateManyMutationInput | PersonUncheckedUpdateManyInput Yes
where PersonWhereInput No
limit Int No

Output

Required: Yes
List: No

upsert

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

Input

Name Type Required
where PersonWhereUniqueInput Yes
create PersonCreateInput | PersonUncheckedCreateInput Yes
update PersonUpdateInput | PersonUncheckedUpdateInput Yes

Output

Type: Person
Required: Yes
List: No

User

Description: A user is a person that can access the ERP tool by signing in.
For the moment, the only people that can be users are admins. In the future, assignees too will have an account and will be able to log in (to see the different studies they applied to, save their CV on the platform, etc.)

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid(1))
Yes -
person Person
  • -
Yes -
personId String
  • @unique
Yes -
settings UserSettings?
  • -
No -
admin Admin?
  • -
No -
userSettingsId String?
  • -
No -

Operations

findUnique

Find zero or one User

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

Input

Name Type Required
where UserWhereUniqueInput Yes

Output

Type: User
Required: No
List: No

findFirst

Find first User

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

Input

Name Type Required
where UserWhereInput No
orderBy UserOrderByWithRelationInput[] | UserOrderByWithRelationInput No
cursor UserWhereUniqueInput No
take Int No
skip Int No
distinct UserScalarFieldEnum | UserScalarFieldEnum[] No

Output

Type: User
Required: No
List: No

findMany

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

Input

Name Type Required
where UserWhereInput No
orderBy UserOrderByWithRelationInput[] | UserOrderByWithRelationInput No
cursor UserWhereUniqueInput No
take Int No
skip Int No
distinct UserScalarFieldEnum | UserScalarFieldEnum[] No

Output

Type: User
Required: Yes
List: Yes

create

Create one User

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

Input

Name Type Required
data UserCreateInput | UserUncheckedCreateInput Yes

Output

Type: User
Required: Yes
List: No

delete

Delete one User

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

Input

Name Type Required
where UserWhereUniqueInput Yes

Output

Type: User
Required: No
List: No

update

Update one User

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

Input

Name Type Required
data UserUpdateInput | UserUncheckedUpdateInput Yes
where UserWhereUniqueInput Yes

Output

Type: User
Required: No
List: No

deleteMany

Delete zero or more User

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

Input

Name Type Required
where UserWhereInput No
limit Int No

Output

Required: Yes
List: No

updateMany

Update zero or one User

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

Input

Name Type Required
data UserUpdateManyMutationInput | UserUncheckedUpdateManyInput Yes
where UserWhereInput No
limit Int No

Output

Required: Yes
List: No

upsert

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

Input

Name Type Required
where UserWhereUniqueInput Yes
create UserCreateInput | UserUncheckedCreateInput Yes
update UserUpdateInput | UserUncheckedUpdateInput Yes

Output

Type: User
Required: Yes
List: No

Admin

Description: An admin represents an administrator of Telecom Etude, i.e. a person that is in mandate.

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid(1))
Yes -
user User
  • -
Yes -
userId String
  • @unique
Yes -
position String?
  • -
No Title of the position within the JE (e.g. président, respo info, etc.)
image String?
  • -
No -
studies Study[]
  • -
Yes -
auditedStudies Study[]
  • -
Yes -

Operations

findUnique

Find zero or one Admin

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

Input

Name Type Required
where AdminWhereUniqueInput Yes

Output

Type: Admin
Required: No
List: No

findFirst

Find first Admin

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

Input

Name Type Required
where AdminWhereInput No
orderBy AdminOrderByWithRelationInput[] | AdminOrderByWithRelationInput No
cursor AdminWhereUniqueInput No
take Int No
skip Int No
distinct AdminScalarFieldEnum | AdminScalarFieldEnum[] No

Output

Type: Admin
Required: No
List: No

findMany

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

Input

Name Type Required
where AdminWhereInput No
orderBy AdminOrderByWithRelationInput[] | AdminOrderByWithRelationInput No
cursor AdminWhereUniqueInput No
take Int No
skip Int No
distinct AdminScalarFieldEnum | AdminScalarFieldEnum[] No

Output

Type: Admin
Required: Yes
List: Yes

create

Create one Admin

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

Input

Name Type Required
data AdminCreateInput | AdminUncheckedCreateInput Yes

Output

Type: Admin
Required: Yes
List: No

delete

Delete one Admin

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

Input

Name Type Required
where AdminWhereUniqueInput Yes

Output

Type: Admin
Required: No
List: No

update

Update one Admin

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

Input

Name Type Required
data AdminUpdateInput | AdminUncheckedUpdateInput Yes
where AdminWhereUniqueInput Yes

Output

Type: Admin
Required: No
List: No

deleteMany

Delete zero or more Admin

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

Input

Name Type Required
where AdminWhereInput No
limit Int No

Output

Required: Yes
List: No

updateMany

Update zero or one Admin

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

Input

Name Type Required
data AdminUpdateManyMutationInput | AdminUncheckedUpdateManyInput Yes
where AdminWhereInput No
limit Int No

Output

Required: Yes
List: No

upsert

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

Input

Name Type Required
where AdminWhereUniqueInput Yes
create AdminCreateInput | AdminUncheckedCreateInput Yes
update AdminUpdateInput | AdminUncheckedUpdateInput Yes

Output

Type: Admin
Required: Yes
List: No

UserSettings

Description: Settings are used to customise the ERP (colours, notifications, keybindings, behaviours, etc.)

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid(1))
Yes -
theme String
  • -
Yes -
notificationLevel NotificationLevel
  • -
Yes -
gui Boolean
  • -
Yes -
User User[]
  • -
Yes -

Operations

findUnique

Find zero or one UserSettings

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

Input

Name Type Required
where UserSettingsWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first UserSettings

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

Input

Name Type Required
where UserSettingsWhereInput No
orderBy UserSettingsOrderByWithRelationInput[] | UserSettingsOrderByWithRelationInput No
cursor UserSettingsWhereUniqueInput No
take Int No
skip Int No
distinct UserSettingsScalarFieldEnum | UserSettingsScalarFieldEnum[] No

Output

Required: No
List: No

findMany

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

Input

Name Type Required
where UserSettingsWhereInput No
orderBy UserSettingsOrderByWithRelationInput[] | UserSettingsOrderByWithRelationInput No
cursor UserSettingsWhereUniqueInput No
take Int No
skip Int No
distinct UserSettingsScalarFieldEnum | UserSettingsScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one UserSettings

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

Input

Name Type Required
data UserSettingsCreateInput | UserSettingsUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one UserSettings

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

Input

Name Type Required
where UserSettingsWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one UserSettings

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

Input

Name Type Required
data UserSettingsUpdateInput | UserSettingsUncheckedUpdateInput Yes
where UserSettingsWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more UserSettings

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

Input

Name Type Required
where UserSettingsWhereInput No
limit Int No

Output

Required: Yes
List: No

updateMany

Update zero or one UserSettings

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

Input

Name Type Required
data UserSettingsUpdateManyMutationInput | UserSettingsUncheckedUpdateManyInput Yes
where UserSettingsWhereInput No
limit Int No

Output

Required: Yes
List: No

upsert

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

Input

Name Type Required
where UserSettingsWhereUniqueInput Yes
create UserSettingsCreateInput | UserSettingsUncheckedCreateInput Yes
update UserSettingsUpdateInput | UserSettingsUncheckedUpdateInput Yes

Output

Required: Yes
List: No

Address

Description: Stores the address of a person/company

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid(1))
Yes -
streetNumber String
  • -
Yes -
streetName String
  • -
Yes -
city String
  • -
Yes -
zipCode String
  • -
Yes -
country String
  • -
Yes -
person Person?
  • -
No -
Company Company?
  • -
No -
personId String?
  • @unique
No -
companyId String?
  • @unique
No -

Operations

findUnique

Find zero or one Address

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

Input

Name Type Required
where AddressWhereUniqueInput Yes

Output

Type: Address
Required: No
List: No

findFirst

Find first Address

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

Input

Name Type Required
where AddressWhereInput No
orderBy AddressOrderByWithRelationInput[] | AddressOrderByWithRelationInput No
cursor AddressWhereUniqueInput No
take Int No
skip Int No
distinct AddressScalarFieldEnum | AddressScalarFieldEnum[] No

Output

Type: Address
Required: No
List: No

findMany

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

Input

Name Type Required
where AddressWhereInput No
orderBy AddressOrderByWithRelationInput[] | AddressOrderByWithRelationInput No
cursor AddressWhereUniqueInput No
take Int No
skip Int No
distinct AddressScalarFieldEnum | AddressScalarFieldEnum[] No

Output

Type: Address
Required: Yes
List: Yes

create

Create one Address

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

Input

Name Type Required
data AddressCreateInput | AddressUncheckedCreateInput Yes

Output

Type: Address
Required: Yes
List: No

delete

Delete one Address

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

Input

Name Type Required
where AddressWhereUniqueInput Yes

Output

Type: Address
Required: No
List: No

update

Update one Address

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

Input

Name Type Required
data AddressUpdateInput | AddressUncheckedUpdateInput Yes
where AddressWhereUniqueInput Yes

Output

Type: Address
Required: No
List: No

deleteMany

Delete zero or more Address

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

Input

Name Type Required
where AddressWhereInput No
limit Int No

Output

Required: Yes
List: No

updateMany

Update zero or one Address

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

Input

Name Type Required
data AddressUpdateManyMutationInput | AddressUncheckedUpdateManyInput Yes
where AddressWhereInput No
limit Int No

Output

Required: Yes
List: No

upsert

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

Input

Name Type Required
where AddressWhereUniqueInput Yes
create AddressCreateInput | AddressUncheckedCreateInput Yes
update AddressUpdateInput | AddressUncheckedUpdateInput Yes

Output

Type: Address
Required: Yes
List: No

Client

Description: Represents a person from the client company, not the company.
This table includes private individuals.

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid(1))
Yes -
privateIndividual Boolean
  • @default(false)
Yes -
company Company?
  • -
No -
companyId String?
  • -
No -
person Person
  • -
Yes -
personId String
  • @unique
Yes -
job String
  • -
Yes -
studyClients StudyClient[]
  • -
Yes -

Operations

findUnique

Find zero or one Client

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

Input

Name Type Required
where ClientWhereUniqueInput Yes

Output

Type: Client
Required: No
List: No

findFirst

Find first Client

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

Input

Name Type Required
where ClientWhereInput No
orderBy ClientOrderByWithRelationInput[] | ClientOrderByWithRelationInput No
cursor ClientWhereUniqueInput No
take Int No
skip Int No
distinct ClientScalarFieldEnum | ClientScalarFieldEnum[] No

Output

Type: Client
Required: No
List: No

findMany

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

Input

Name Type Required
where ClientWhereInput No
orderBy ClientOrderByWithRelationInput[] | ClientOrderByWithRelationInput No
cursor ClientWhereUniqueInput No
take Int No
skip Int No
distinct ClientScalarFieldEnum | ClientScalarFieldEnum[] No

Output

Type: Client
Required: Yes
List: Yes

create

Create one Client

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

Input

Name Type Required
data ClientCreateInput | ClientUncheckedCreateInput Yes

Output

Type: Client
Required: Yes
List: No

delete

Delete one Client

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

Input

Name Type Required
where ClientWhereUniqueInput Yes

Output

Type: Client
Required: No
List: No

update

Update one Client

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

Input

Name Type Required
data ClientUpdateInput | ClientUncheckedUpdateInput Yes
where ClientWhereUniqueInput Yes

Output

Type: Client
Required: No
List: No

deleteMany

Delete zero or more Client

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

Input

Name Type Required
where ClientWhereInput No
limit Int No

Output

Required: Yes
List: No

updateMany

Update zero or one Client

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

Input

Name Type Required
data ClientUpdateManyMutationInput | ClientUncheckedUpdateManyInput Yes
where ClientWhereInput No
limit Int No

Output

Required: Yes
List: No

upsert

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

Input

Name Type Required
where ClientWhereUniqueInput Yes
create ClientCreateInput | ClientUncheckedCreateInput Yes
update ClientUpdateInput | ClientUncheckedUpdateInput Yes

Output

Type: Client
Required: Yes
List: No

StudyClient

Description: An interface to link a client to a study.
This also contains the information of a client that depends on clients (e.g. QS).
A study is linked to a client and not to a company as we can do multiple studies with a same company but with different members of the comany.

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid(1))
Yes -
study Study
  • -
Yes -
studyId String
  • -
Yes -
client Client
  • -
Yes -
clientId String
  • -
Yes -
satisfaction Satisfaction?
  • -
No -

Operations

findUnique

Find zero or one StudyClient

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

Input

Name Type Required
where StudyClientWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first StudyClient

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

Input

Name Type Required
where StudyClientWhereInput No
orderBy StudyClientOrderByWithRelationInput[] | StudyClientOrderByWithRelationInput No
cursor StudyClientWhereUniqueInput No
take Int No
skip Int No
distinct StudyClientScalarFieldEnum | StudyClientScalarFieldEnum[] No

Output

Required: No
List: No

findMany

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

Input

Name Type Required
where StudyClientWhereInput No
orderBy StudyClientOrderByWithRelationInput[] | StudyClientOrderByWithRelationInput No
cursor StudyClientWhereUniqueInput No
take Int No
skip Int No
distinct StudyClientScalarFieldEnum | StudyClientScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one StudyClient

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

Input

Name Type Required
data StudyClientCreateInput | StudyClientUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one StudyClient

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

Input

Name Type Required
where StudyClientWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one StudyClient

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

Input

Name Type Required
data StudyClientUpdateInput | StudyClientUncheckedUpdateInput Yes
where StudyClientWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more StudyClient

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

Input

Name Type Required
where StudyClientWhereInput No
limit Int No

Output

Required: Yes
List: No

updateMany

Update zero or one StudyClient

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

Input

Name Type Required
data StudyClientUpdateManyMutationInput | StudyClientUncheckedUpdateManyInput Yes
where StudyClientWhereInput No
limit Int No

Output

Required: Yes
List: No

upsert

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

Input

Name Type Required
where StudyClientWhereUniqueInput Yes
create StudyClientCreateInput | StudyClientUncheckedCreateInput Yes
update StudyClientUpdateInput | StudyClientUncheckedUpdateInput Yes

Output

Required: Yes
List: No

Satisfaction

Description: QS

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid(1))
Yes -
studyClient StudyClient
  • -
Yes -
studyClientId String
  • @unique
Yes -
study Study
  • -
Yes -
studyId String
  • @unique
Yes -
publish Boolean
  • -
Yes -
howKnowUs String
  • -
Yes -
whyUs String
  • -
Yes -
satisfactionObjectives Int
  • -
Yes -
easiness Int
  • -
Yes -
timeElapsed Int
  • -
Yes -
recommendUs Int
  • -
Yes -

Operations

findUnique

Find zero or one Satisfaction

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

Input

Name Type Required
where SatisfactionWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first Satisfaction

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

Input

Name Type Required
where SatisfactionWhereInput No
orderBy SatisfactionOrderByWithRelationInput[] | SatisfactionOrderByWithRelationInput No
cursor SatisfactionWhereUniqueInput No
take Int No
skip Int No
distinct SatisfactionScalarFieldEnum | SatisfactionScalarFieldEnum[] No

Output

Required: No
List: No

findMany

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

Input

Name Type Required
where SatisfactionWhereInput No
orderBy SatisfactionOrderByWithRelationInput[] | SatisfactionOrderByWithRelationInput No
cursor SatisfactionWhereUniqueInput No
take Int No
skip Int No
distinct SatisfactionScalarFieldEnum | SatisfactionScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one Satisfaction

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

Input

Name Type Required
data SatisfactionCreateInput | SatisfactionUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one Satisfaction

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

Input

Name Type Required
where SatisfactionWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one Satisfaction

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

Input

Name Type Required
data SatisfactionUpdateInput | SatisfactionUncheckedUpdateInput Yes
where SatisfactionWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more Satisfaction

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

Input

Name Type Required
where SatisfactionWhereInput No
limit Int No

Output

Required: Yes
List: No

updateMany

Update zero or one Satisfaction

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

Input

Name Type Required
data SatisfactionUpdateManyMutationInput | SatisfactionUncheckedUpdateManyInput Yes
where SatisfactionWhereInput No
limit Int No

Output

Required: Yes
List: No

upsert

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

Input

Name Type Required
where SatisfactionWhereUniqueInput Yes
create SatisfactionCreateInput | SatisfactionUncheckedCreateInput Yes
update SatisfactionUpdateInput | SatisfactionUncheckedUpdateInput Yes

Output

Required: Yes
List: No

Company

Description: Represents the company that the client represents.

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid(1))
Yes -
name String
  • @unique
Yes -
address Address?
  • -
No -
companyInfos CompanyInfos
  • -
Yes -
members Client[]
  • -
Yes Members of the company we are likely to encounter.
companyInfosId String
  • -
Yes -

Operations

findUnique

Find zero or one Company

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

Input

Name Type Required
where CompanyWhereUniqueInput Yes

Output

Type: Company
Required: No
List: No

findFirst

Find first Company

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

Input

Name Type Required
where CompanyWhereInput No
orderBy CompanyOrderByWithRelationInput[] | CompanyOrderByWithRelationInput No
cursor CompanyWhereUniqueInput No
take Int No
skip Int No
distinct CompanyScalarFieldEnum | CompanyScalarFieldEnum[] No

Output

Type: Company
Required: No
List: No

findMany

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

Input

Name Type Required
where CompanyWhereInput No
orderBy CompanyOrderByWithRelationInput[] | CompanyOrderByWithRelationInput No
cursor CompanyWhereUniqueInput No
take Int No
skip Int No
distinct CompanyScalarFieldEnum | CompanyScalarFieldEnum[] No

Output

Type: Company
Required: Yes
List: Yes

create

Create one Company

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

Input

Name Type Required
data CompanyCreateInput | CompanyUncheckedCreateInput Yes

Output

Type: Company
Required: Yes
List: No

delete

Delete one Company

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

Input

Name Type Required
where CompanyWhereUniqueInput Yes

Output

Type: Company
Required: No
List: No

update

Update one Company

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

Input

Name Type Required
data CompanyUpdateInput | CompanyUncheckedUpdateInput Yes
where CompanyWhereUniqueInput Yes

Output

Type: Company
Required: No
List: No

deleteMany

Delete zero or more Company

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

Input

Name Type Required
where CompanyWhereInput No
limit Int No

Output

Required: Yes
List: No

updateMany

Update zero or one Company

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

Input

Name Type Required
data CompanyUpdateManyMutationInput | CompanyUncheckedUpdateManyInput Yes
where CompanyWhereInput No
limit Int No

Output

Required: Yes
List: No

upsert

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

Input

Name Type Required
where CompanyWhereUniqueInput Yes
create CompanyCreateInput | CompanyUncheckedCreateInput Yes
update CompanyUpdateInput | CompanyUncheckedUpdateInput Yes

Output

Type: Company
Required: Yes
List: No

CompanyInfos

Description: Additional information concerning a company.

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid(1))
Yes -
domains Domain[]
  • -
Yes -
ca Int?
  • -
No -
size CompanySize?
  • -
No -
company Company[]
  • -
Yes -

Operations

findUnique

Find zero or one CompanyInfos

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

Input

Name Type Required
where CompanyInfosWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first CompanyInfos

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

Input

Name Type Required
where CompanyInfosWhereInput No
orderBy CompanyInfosOrderByWithRelationInput[] | CompanyInfosOrderByWithRelationInput No
cursor CompanyInfosWhereUniqueInput No
take Int No
skip Int No
distinct CompanyInfosScalarFieldEnum | CompanyInfosScalarFieldEnum[] No

Output

Required: No
List: No

findMany

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

Input

Name Type Required
where CompanyInfosWhereInput No
orderBy CompanyInfosOrderByWithRelationInput[] | CompanyInfosOrderByWithRelationInput No
cursor CompanyInfosWhereUniqueInput No
take Int No
skip Int No
distinct CompanyInfosScalarFieldEnum | CompanyInfosScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one CompanyInfos

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

Input

Name Type Required
data CompanyInfosCreateInput | CompanyInfosUncheckedCreateInput No

Output

Required: Yes
List: No

delete

Delete one CompanyInfos

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

Input

Name Type Required
where CompanyInfosWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one CompanyInfos

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

Input

Name Type Required
data CompanyInfosUpdateInput | CompanyInfosUncheckedUpdateInput Yes
where CompanyInfosWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more CompanyInfos

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

Input

Name Type Required
where CompanyInfosWhereInput No
limit Int No

Output

Required: Yes
List: No

updateMany

Update zero or one CompanyInfos

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

Input

Name Type Required
data CompanyInfosUpdateManyMutationInput | CompanyInfosUncheckedUpdateManyInput Yes
where CompanyInfosWhereInput No
limit Int No

Output

Required: Yes
List: No

upsert

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

Input

Name Type Required
where CompanyInfosWhereUniqueInput Yes
create CompanyInfosCreateInput | CompanyInfosUncheckedCreateInput Yes
update CompanyInfosUpdateInput | CompanyInfosUncheckedUpdateInput Yes

Output

Required: Yes
List: No

Document

Description: Represents a Google Drive document.
To have more information about Google Drive documents, refer to google_drive.md

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid(1))
Yes Don't use this id to reference the document. Use googleId.
title String
  • -
Yes -
googleId String
  • @unique
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 -

Operations

findUnique

Find zero or one Document

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

Input

Name Type Required
where DocumentWhereUniqueInput Yes

Output

Type: Document
Required: No
List: No

findFirst

Find first Document

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

Input

Name Type Required
where DocumentWhereInput No
orderBy DocumentOrderByWithRelationInput[] | DocumentOrderByWithRelationInput No
cursor DocumentWhereUniqueInput No
take Int No
skip Int No
distinct DocumentScalarFieldEnum | DocumentScalarFieldEnum[] No

Output

Type: Document
Required: No
List: No

findMany

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

Input

Name Type Required
where DocumentWhereInput No
orderBy DocumentOrderByWithRelationInput[] | DocumentOrderByWithRelationInput No
cursor DocumentWhereUniqueInput No
take Int No
skip Int No
distinct DocumentScalarFieldEnum | DocumentScalarFieldEnum[] No

Output

Type: Document
Required: Yes
List: Yes

create

Create one Document

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

Input

Name Type Required
data DocumentCreateInput | DocumentUncheckedCreateInput Yes

Output

Type: Document
Required: Yes
List: No

delete

Delete one Document

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

Input

Name Type Required
where DocumentWhereUniqueInput Yes

Output

Type: Document
Required: No
List: No

update

Update one Document

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

Input

Name Type Required
data DocumentUpdateInput | DocumentUncheckedUpdateInput Yes
where DocumentWhereUniqueInput Yes

Output

Type: Document
Required: No
List: No

deleteMany

Delete zero or more Document

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

Input

Name Type Required
where DocumentWhereInput No
limit Int No

Output

Required: Yes
List: No

updateMany

Update zero or one Document

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

Input

Name Type Required
data DocumentUpdateManyMutationInput | DocumentUncheckedUpdateManyInput Yes
where DocumentWhereInput No
limit Int No

Output

Required: Yes
List: No

upsert

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

Input

Name Type Required
where DocumentWhereUniqueInput Yes
create DocumentCreateInput | DocumentUncheckedCreateInput Yes
update DocumentUpdateInput | DocumentUncheckedUpdateInput Yes

Output

Type: Document
Required: Yes
List: No

Status

Description: Status of a study document.
This follows at what date the documents were wrote, audited, signed, and approved by the clients.

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid(1))
Yes -
docsId String
  • @unique
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
  • @unique
Yes -

Operations

findUnique

Find zero or one Status

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

Input

Name Type Required
where StatusWhereUniqueInput Yes

Output

Type: Status
Required: No
List: No

findFirst

Find first Status

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

Input

Name Type Required
where StatusWhereInput No
orderBy StatusOrderByWithRelationInput[] | StatusOrderByWithRelationInput No
cursor StatusWhereUniqueInput No
take Int No
skip Int No
distinct StatusScalarFieldEnum | StatusScalarFieldEnum[] No

Output

Type: Status
Required: No
List: No

findMany

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

Input

Name Type Required
where StatusWhereInput No
orderBy StatusOrderByWithRelationInput[] | StatusOrderByWithRelationInput No
cursor StatusWhereUniqueInput No
take Int No
skip Int No
distinct StatusScalarFieldEnum | StatusScalarFieldEnum[] No

Output

Type: Status
Required: Yes
List: Yes

create

Create one Status

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

Input

Name Type Required
data StatusCreateInput | StatusUncheckedCreateInput Yes

Output

Type: Status
Required: Yes
List: No

delete

Delete one Status

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

Input

Name Type Required
where StatusWhereUniqueInput Yes

Output

Type: Status
Required: No
List: No

update

Update one Status

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

Input

Name Type Required
data StatusUpdateInput | StatusUncheckedUpdateInput Yes
where StatusWhereUniqueInput Yes

Output

Type: Status
Required: No
List: No

deleteMany

Delete zero or more Status

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

Input

Name Type Required
where StatusWhereInput No
limit Int No

Output

Required: Yes
List: No

updateMany

Update zero or one Status

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

Input

Name Type Required
data StatusUpdateManyMutationInput | StatusUncheckedUpdateManyInput Yes
where StatusWhereInput No
limit Int No

Output

Required: Yes
List: No

upsert

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

Input

Name Type Required
where StatusWhereUniqueInput Yes
create StatusCreateInput | StatusUncheckedCreateInput Yes
update StatusUpdateInput | StatusUncheckedUpdateInput Yes

Output

Type: Status
Required: Yes
List: No

Mri

Description: Information that figure on the MRI

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid(1))
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
  • @default(InProgress)
Yes Status of the MRI: written? validated? sent? expired?
study Study
  • -
Yes -
studyId String
  • @unique
Yes -
formMRIs MriForm[]
  • -
Yes -

Operations

findUnique

Find zero or one Mri

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

Input

Name Type Required
where MriWhereUniqueInput Yes

Output

Type: Mri
Required: No
List: No

findFirst

Find first Mri

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

Input

Name Type Required
where MriWhereInput No
orderBy MriOrderByWithRelationInput[] | MriOrderByWithRelationInput No
cursor MriWhereUniqueInput No
take Int No
skip Int No
distinct MriScalarFieldEnum | MriScalarFieldEnum[] No

Output

Type: Mri
Required: No
List: No

findMany

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

Input

Name Type Required
where MriWhereInput No
orderBy MriOrderByWithRelationInput[] | MriOrderByWithRelationInput No
cursor MriWhereUniqueInput No
take Int No
skip Int No
distinct MriScalarFieldEnum | MriScalarFieldEnum[] No

Output

Type: Mri
Required: Yes
List: Yes

create

Create one Mri

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

Input

Name Type Required
data MriCreateInput | MriUncheckedCreateInput Yes

Output

Type: Mri
Required: Yes
List: No

delete

Delete one Mri

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

Input

Name Type Required
where MriWhereUniqueInput Yes

Output

Type: Mri
Required: No
List: No

update

Update one Mri

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

Input

Name Type Required
data MriUpdateInput | MriUncheckedUpdateInput Yes
where MriWhereUniqueInput Yes

Output

Type: Mri
Required: No
List: No

deleteMany

Delete zero or more Mri

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

Input

Name Type Required
where MriWhereInput No
limit Int No

Output

Required: Yes
List: No

updateMany

Update zero or one Mri

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

Input

Name Type Required
data MriUpdateManyMutationInput | MriUncheckedUpdateManyInput Yes
where MriWhereInput No
limit Int No

Output

Required: Yes
List: No

upsert

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

Input

Name Type Required
where MriWhereUniqueInput Yes
create MriCreateInput | MriUncheckedCreateInput Yes
update MriUpdateInput | MriUncheckedUpdateInput Yes

Output

Type: Mri
Required: Yes
List: No

Assignee

Description: Links all the data related to an assignee (documents, applications, personal information, etc.)

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid(1))
Yes -
nbApplications Int
  • -
Yes Number of times the assignee applied to mission.
docs AssigneeDocs[]
  • -
Yes -
information AssigneeInfos?
  • -
No -
person Person
  • -
Yes -
peopleId String
  • @unique
Yes -
studyAssign StudyAssignee[]
  • -
Yes -

Operations

findUnique

Find zero or one Assignee

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

Input

Name Type Required
where AssigneeWhereUniqueInput Yes

Output

Type: Assignee
Required: No
List: No

findFirst

Find first Assignee

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

Input

Name Type Required
where AssigneeWhereInput No
orderBy AssigneeOrderByWithRelationInput[] | AssigneeOrderByWithRelationInput No
cursor AssigneeWhereUniqueInput No
take Int No
skip Int No
distinct AssigneeScalarFieldEnum | AssigneeScalarFieldEnum[] No

Output

Type: Assignee
Required: No
List: No

findMany

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

Input

Name Type Required
where AssigneeWhereInput No
orderBy AssigneeOrderByWithRelationInput[] | AssigneeOrderByWithRelationInput No
cursor AssigneeWhereUniqueInput No
take Int No
skip Int No
distinct AssigneeScalarFieldEnum | AssigneeScalarFieldEnum[] No

Output

Type: Assignee
Required: Yes
List: Yes

create

Create one Assignee

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

Input

Name Type Required
data AssigneeCreateInput | AssigneeUncheckedCreateInput Yes

Output

Type: Assignee
Required: Yes
List: No

delete

Delete one Assignee

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

Input

Name Type Required
where AssigneeWhereUniqueInput Yes

Output

Type: Assignee
Required: No
List: No

update

Update one Assignee

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

Input

Name Type Required
data AssigneeUpdateInput | AssigneeUncheckedUpdateInput Yes
where AssigneeWhereUniqueInput Yes

Output

Type: Assignee
Required: No
List: No

deleteMany

Delete zero or more Assignee

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

Input

Name Type Required
where AssigneeWhereInput No
limit Int No

Output

Required: Yes
List: No

updateMany

Update zero or one Assignee

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

Input

Name Type Required
data AssigneeUpdateManyMutationInput | AssigneeUncheckedUpdateManyInput Yes
where AssigneeWhereInput No
limit Int No

Output

Required: Yes
List: No

upsert

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

Input

Name Type Required
where AssigneeWhereUniqueInput Yes
create AssigneeCreateInput | AssigneeUncheckedCreateInput Yes
update AssigneeUpdateInput | AssigneeUncheckedUpdateInput Yes

Output

Type: Assignee
Required: Yes
List: No

AssigneeInfos

Description: Personal information of an assignee

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid(1))
Yes -
assignee Assignee
  • -
Yes -
assigneeId String
  • @unique
Yes -
age Int
  • -
Yes -
promotion Int
  • -
Yes In which year will the assignee graduate?
hasScholarship Boolean
  • -
Yes -
oldJet Boolean
  • -
Yes -

Operations

findUnique

Find zero or one AssigneeInfos

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

Input

Name Type Required
where AssigneeInfosWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first AssigneeInfos

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

Input

Name Type Required
where AssigneeInfosWhereInput No
orderBy AssigneeInfosOrderByWithRelationInput[] | AssigneeInfosOrderByWithRelationInput No
cursor AssigneeInfosWhereUniqueInput No
take Int No
skip Int No
distinct AssigneeInfosScalarFieldEnum | AssigneeInfosScalarFieldEnum[] No

Output

Required: No
List: No

findMany

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

Input

Name Type Required
where AssigneeInfosWhereInput No
orderBy AssigneeInfosOrderByWithRelationInput[] | AssigneeInfosOrderByWithRelationInput No
cursor AssigneeInfosWhereUniqueInput No
take Int No
skip Int No
distinct AssigneeInfosScalarFieldEnum | AssigneeInfosScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one AssigneeInfos

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

Input

Name Type Required
data AssigneeInfosCreateInput | AssigneeInfosUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one AssigneeInfos

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

Input

Name Type Required
where AssigneeInfosWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one AssigneeInfos

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

Input

Name Type Required
data AssigneeInfosUpdateInput | AssigneeInfosUncheckedUpdateInput Yes
where AssigneeInfosWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more AssigneeInfos

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

Input

Name Type Required
where AssigneeInfosWhereInput No
limit Int No

Output

Required: Yes
List: No

updateMany

Update zero or one AssigneeInfos

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

Input

Name Type Required
data AssigneeInfosUpdateManyMutationInput | AssigneeInfosUncheckedUpdateManyInput Yes
where AssigneeInfosWhereInput No
limit Int No

Output

Required: Yes
List: No

upsert

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

Input

Name Type Required
where AssigneeInfosWhereUniqueInput Yes
create AssigneeInfosCreateInput | AssigneeInfosUncheckedCreateInput Yes
update AssigneeInfosUpdateInput | AssigneeInfosUncheckedUpdateInput Yes

Output

Required: Yes
List: No

AssigneeDocs

Description: Documents required from the assignee to sign the BA

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid(1))
Yes -
assignee Assignee
  • -
Yes -
assigneeId String
  • -
Yes -
cni Document
  • -
Yes Identity card
cniId String
  • @unique
Yes -
socialSecurity Document
  • -
Yes -
socialSecurityId String
  • @unique
Yes -
studentCard Document
  • -
Yes -
studentCardId String
  • @unique
Yes -

Operations

findUnique

Find zero or one AssigneeDocs

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

Input

Name Type Required
where AssigneeDocsWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first AssigneeDocs

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

Input

Name Type Required
where AssigneeDocsWhereInput No
orderBy AssigneeDocsOrderByWithRelationInput[] | AssigneeDocsOrderByWithRelationInput No
cursor AssigneeDocsWhereUniqueInput No
take Int No
skip Int No
distinct AssigneeDocsScalarFieldEnum | AssigneeDocsScalarFieldEnum[] No

Output

Required: No
List: No

findMany

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

Input

Name Type Required
where AssigneeDocsWhereInput No
orderBy AssigneeDocsOrderByWithRelationInput[] | AssigneeDocsOrderByWithRelationInput No
cursor AssigneeDocsWhereUniqueInput No
take Int No
skip Int No
distinct AssigneeDocsScalarFieldEnum | AssigneeDocsScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one AssigneeDocs

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

Input

Name Type Required
data AssigneeDocsCreateInput | AssigneeDocsUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one AssigneeDocs

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

Input

Name Type Required
where AssigneeDocsWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one AssigneeDocs

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

Input

Name Type Required
data AssigneeDocsUpdateInput | AssigneeDocsUncheckedUpdateInput Yes
where AssigneeDocsWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more AssigneeDocs

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

Input

Name Type Required
where AssigneeDocsWhereInput No
limit Int No

Output

Required: Yes
List: No

updateMany

Update zero or one AssigneeDocs

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

Input

Name Type Required
data AssigneeDocsUpdateManyMutationInput | AssigneeDocsUncheckedUpdateManyInput Yes
where AssigneeDocsWhereInput No
limit Int No

Output

Required: Yes
List: No

upsert

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

Input

Name Type Required
where AssigneeDocsWhereUniqueInput Yes
create AssigneeDocsCreateInput | AssigneeDocsUncheckedCreateInput Yes
update AssigneeDocsUpdateInput | AssigneeDocsUncheckedUpdateInput Yes

Output

Required: Yes
List: No

StudyAssignee

Description: Links a study to an assignee
An assignee is linked to a study even if he is not the assignee of the mission

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid(1))
Yes -
study Study
  • -
Yes -
studyId String
  • -
Yes -
assignee Assignee
  • -
Yes -
assigneeId String
  • -
Yes -
formInterview FormInterviews
  • -
Yes -
formInterviewId String
  • @unique
Yes -
mriForm MriForm
  • -
Yes -
mriFormId String
  • @unique
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.

Operations

findUnique

Find zero or one StudyAssignee

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

Input

Name Type Required
where StudyAssigneeWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first StudyAssignee

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

Input

Name Type Required
where StudyAssigneeWhereInput No
orderBy StudyAssigneeOrderByWithRelationInput[] | StudyAssigneeOrderByWithRelationInput No
cursor StudyAssigneeWhereUniqueInput No
take Int No
skip Int No
distinct StudyAssigneeScalarFieldEnum | StudyAssigneeScalarFieldEnum[] No

Output

Required: No
List: No

findMany

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

Input

Name Type Required
where StudyAssigneeWhereInput No
orderBy StudyAssigneeOrderByWithRelationInput[] | StudyAssigneeOrderByWithRelationInput No
cursor StudyAssigneeWhereUniqueInput No
take Int No
skip Int No
distinct StudyAssigneeScalarFieldEnum | StudyAssigneeScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one StudyAssignee

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

Input

Name Type Required
data StudyAssigneeCreateInput | StudyAssigneeUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one StudyAssignee

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

Input

Name Type Required
where StudyAssigneeWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one StudyAssignee

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

Input

Name Type Required
data StudyAssigneeUpdateInput | StudyAssigneeUncheckedUpdateInput Yes
where StudyAssigneeWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more StudyAssignee

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

Input

Name Type Required
where StudyAssigneeWhereInput No
limit Int No

Output

Required: Yes
List: No

updateMany

Update zero or one StudyAssignee

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

Input

Name Type Required
data StudyAssigneeUpdateManyMutationInput | StudyAssigneeUncheckedUpdateManyInput Yes
where StudyAssigneeWhereInput No
limit Int No

Output

Required: Yes
List: No

upsert

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

Input

Name Type Required
where StudyAssigneeWhereUniqueInput Yes
create StudyAssigneeCreateInput | StudyAssigneeUncheckedCreateInput Yes
update StudyAssigneeUpdateInput | StudyAssigneeUncheckedUpdateInput Yes

Output

Required: Yes
List: No

MriForm

Description: Form the assignee fill on his/her own when applying to the mission.
This is the form that interview has when applying through the MRI he received.
For more information concerning the different fields, please refer to the associated google form

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid(1))
Yes -
mri Mri
  • -
Yes -
mriId String
  • @unique
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
  • number of times the assignee applied to a mission?
  • old jet?
  • did he encounter some admins?

Operations

findUnique

Find zero or one MriForm

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

Input

Name Type Required
where MriFormWhereUniqueInput Yes

Output

Type: MriForm
Required: No
List: No

findFirst

Find first MriForm

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

Input

Name Type Required
where MriFormWhereInput No
orderBy MriFormOrderByWithRelationInput[] | MriFormOrderByWithRelationInput No
cursor MriFormWhereUniqueInput No
take Int No
skip Int No
distinct MriFormScalarFieldEnum | MriFormScalarFieldEnum[] No

Output

Type: MriForm
Required: No
List: No

findMany

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

Input

Name Type Required
where MriFormWhereInput No
orderBy MriFormOrderByWithRelationInput[] | MriFormOrderByWithRelationInput No
cursor MriFormWhereUniqueInput No
take Int No
skip Int No
distinct MriFormScalarFieldEnum | MriFormScalarFieldEnum[] No

Output

Type: MriForm
Required: Yes
List: Yes

create

Create one MriForm

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

Input

Name Type Required
data MriFormCreateInput | MriFormUncheckedCreateInput Yes

Output

Type: MriForm
Required: Yes
List: No

delete

Delete one MriForm

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

Input

Name Type Required
where MriFormWhereUniqueInput Yes

Output

Type: MriForm
Required: No
List: No

update

Update one MriForm

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

Input

Name Type Required
data MriFormUpdateInput | MriFormUncheckedUpdateInput Yes
where MriFormWhereUniqueInput Yes

Output

Type: MriForm
Required: No
List: No

deleteMany

Delete zero or more MriForm

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

Input

Name Type Required
where MriFormWhereInput No
limit Int No

Output

Required: Yes
List: No

updateMany

Update zero or one MriForm

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

Input

Name Type Required
data MriFormUpdateManyMutationInput | MriFormUncheckedUpdateManyInput Yes
where MriFormWhereInput No
limit Int No

Output

Required: Yes
List: No

upsert

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

Input

Name Type Required
where MriFormWhereUniqueInput Yes
create MriFormCreateInput | MriFormUncheckedCreateInput Yes
update MriFormUpdateInput | MriFormUncheckedUpdateInput Yes

Output

Type: MriForm
Required: Yes
List: No

FormInterviews

Description: Form completed by the admins during the interview.
This is filled during the interview to select the assignee(s) of the study.
Some fields that are useful after the selection are stored in the StudyAsignee table.
For more information concerning the different fields, please refer to the associated google form

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid(1))
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

Operations

findUnique

Find zero or one FormInterviews

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

Input

Name Type Required
where FormInterviewsWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first FormInterviews

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

Input

Name Type Required
where FormInterviewsWhereInput No
orderBy FormInterviewsOrderByWithRelationInput[] | FormInterviewsOrderByWithRelationInput No
cursor FormInterviewsWhereUniqueInput No
take Int No
skip Int No
distinct FormInterviewsScalarFieldEnum | FormInterviewsScalarFieldEnum[] No

Output

Required: No
List: No

findMany

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

Input

Name Type Required
where FormInterviewsWhereInput No
orderBy FormInterviewsOrderByWithRelationInput[] | FormInterviewsOrderByWithRelationInput No
cursor FormInterviewsWhereUniqueInput No
take Int No
skip Int No
distinct FormInterviewsScalarFieldEnum | FormInterviewsScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one FormInterviews

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

Input

Name Type Required
data FormInterviewsCreateInput | FormInterviewsUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one FormInterviews

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

Input

Name Type Required
where FormInterviewsWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one FormInterviews

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

Input

Name Type Required
data FormInterviewsUpdateInput | FormInterviewsUncheckedUpdateInput Yes
where FormInterviewsWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more FormInterviews

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

Input

Name Type Required
where FormInterviewsWhereInput No
limit Int No

Output

Required: Yes
List: No

updateMany

Update zero or one FormInterviews

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

Input

Name Type Required
data FormInterviewsUpdateManyMutationInput | FormInterviewsUncheckedUpdateManyInput Yes
where FormInterviewsWhereInput No
limit Int No

Output

Required: Yes
List: No

upsert

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

Input

Name Type Required
where FormInterviewsWhereUniqueInput Yes
create FormInterviewsCreateInput | FormInterviewsUncheckedCreateInput Yes
update FormInterviewsUpdateInput | FormInterviewsUncheckedUpdateInput Yes

Output

Required: Yes
List: No

Study

Description: Links all the data related to a study (clients, admins, informations, assignees, forms, etc.)

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid(1))
Yes -
cdps Admin[]
  • -
Yes -
auditors Admin[]
  • -
Yes -
information StudyInfos
  • -
Yes -
informationId String
  • @unique
Yes -
studyProceedings StudyProceedings?
  • -
No -
clients StudyClient[]
  • -
Yes -
mri Mri?
  • -
No -
studyAssignees StudyAssignee[]
  • -
Yes -
satisfaction Satisfaction?
  • -
No -
studyProceedingsId String?
  • -
No -

Operations

findUnique

Find zero or one Study

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

Input

Name Type Required
where StudyWhereUniqueInput Yes

Output

Type: Study
Required: No
List: No

findFirst

Find first Study

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

Input

Name Type Required
where StudyWhereInput No
orderBy StudyOrderByWithRelationInput[] | StudyOrderByWithRelationInput No
cursor StudyWhereUniqueInput No
take Int No
skip Int No
distinct StudyScalarFieldEnum | StudyScalarFieldEnum[] No

Output

Type: Study
Required: No
List: No

findMany

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

Input

Name Type Required
where StudyWhereInput No
orderBy StudyOrderByWithRelationInput[] | StudyOrderByWithRelationInput No
cursor StudyWhereUniqueInput No
take Int No
skip Int No
distinct StudyScalarFieldEnum | StudyScalarFieldEnum[] No

Output

Type: Study
Required: Yes
List: Yes

create

Create one Study

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

Input

Name Type Required
data StudyCreateInput | StudyUncheckedCreateInput Yes

Output

Type: Study
Required: Yes
List: No

delete

Delete one Study

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

Input

Name Type Required
where StudyWhereUniqueInput Yes

Output

Type: Study
Required: No
List: No

update

Update one Study

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

Input

Name Type Required
data StudyUpdateInput | StudyUncheckedUpdateInput Yes
where StudyWhereUniqueInput Yes

Output

Type: Study
Required: No
List: No

deleteMany

Delete zero or more Study

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

Input

Name Type Required
where StudyWhereInput No
limit Int No

Output

Required: Yes
List: No

updateMany

Update zero or one Study

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

Input

Name Type Required
data StudyUpdateManyMutationInput | StudyUncheckedUpdateManyInput Yes
where StudyWhereInput No
limit Int No

Output

Required: Yes
List: No

upsert

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

Input

Name Type Required
where StudyWhereUniqueInput Yes
create StudyCreateInput | StudyUncheckedCreateInput Yes
update StudyUpdateInput | StudyUncheckedUpdateInput Yes

Output

Type: Study
Required: Yes
List: No

StudyInfos

Description: Information about a study

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid(1))
Yes -
code String
  • @unique
Yes -
googleFolder String?
  • @unique
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
  • @default(5)
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 -

Operations

findUnique

Find zero or one StudyInfos

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

Input

Name Type Required
where StudyInfosWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first StudyInfos

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

Input

Name Type Required
where StudyInfosWhereInput No
orderBy StudyInfosOrderByWithRelationInput[] | StudyInfosOrderByWithRelationInput No
cursor StudyInfosWhereUniqueInput No
take Int No
skip Int No
distinct StudyInfosScalarFieldEnum | StudyInfosScalarFieldEnum[] No

Output

Required: No
List: No

findMany

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

Input

Name Type Required
where StudyInfosWhereInput No
orderBy StudyInfosOrderByWithRelationInput[] | StudyInfosOrderByWithRelationInput No
cursor StudyInfosWhereUniqueInput No
take Int No
skip Int No
distinct StudyInfosScalarFieldEnum | StudyInfosScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one StudyInfos

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

Input

Name Type Required
data StudyInfosCreateInput | StudyInfosUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one StudyInfos

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

Input

Name Type Required
where StudyInfosWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one StudyInfos

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

Input

Name Type Required
data StudyInfosUpdateInput | StudyInfosUncheckedUpdateInput Yes
where StudyInfosWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more StudyInfos

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

Input

Name Type Required
where StudyInfosWhereInput No
limit Int No

Output

Required: Yes
List: No

updateMany

Update zero or one StudyInfos

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

Input

Name Type Required
data StudyInfosUpdateManyMutationInput | StudyInfosUncheckedUpdateManyInput Yes
where StudyInfosWhereInput No
limit Int No

Output

Required: Yes
List: No

upsert

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

Input

Name Type Required
where StudyInfosWhereUniqueInput Yes
create StudyInfosCreateInput | StudyInfosUncheckedCreateInput Yes
update StudyInfosUpdateInput | StudyInfosUncheckedUpdateInput Yes

Output

Required: Yes
List: No

StudyProceedings

Description: Information to follow the study

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid(1))
Yes -
studyId String
  • @unique
Yes -
phases Phase[]
  • -
Yes -
studyProcessStep StudyProgressStep
  • @default(Created)
Yes -
study Study
  • -
Yes -

Operations

findUnique

Find zero or one StudyProceedings

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

Input

Name Type Required
where StudyProceedingsWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first StudyProceedings

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

Input

Name Type Required
where StudyProceedingsWhereInput No
orderBy StudyProceedingsOrderByWithRelationInput[] | StudyProceedingsOrderByWithRelationInput No
cursor StudyProceedingsWhereUniqueInput No
take Int No
skip Int No
distinct StudyProceedingsScalarFieldEnum | StudyProceedingsScalarFieldEnum[] No

Output

Required: No
List: No

findMany

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

Input

Name Type Required
where StudyProceedingsWhereInput No
orderBy StudyProceedingsOrderByWithRelationInput[] | StudyProceedingsOrderByWithRelationInput No
cursor StudyProceedingsWhereUniqueInput No
take Int No
skip Int No
distinct StudyProceedingsScalarFieldEnum | StudyProceedingsScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one StudyProceedings

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

Input

Name Type Required
data StudyProceedingsCreateInput | StudyProceedingsUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one StudyProceedings

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

Input

Name Type Required
where StudyProceedingsWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one StudyProceedings

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

Input

Name Type Required
data StudyProceedingsUpdateInput | StudyProceedingsUncheckedUpdateInput Yes
where StudyProceedingsWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more StudyProceedings

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

Input

Name Type Required
where StudyProceedingsWhereInput No
limit Int No

Output

Required: Yes
List: No

updateMany

Update zero or one StudyProceedings

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

Input

Name Type Required
data StudyProceedingsUpdateManyMutationInput | StudyProceedingsUncheckedUpdateManyInput Yes
where StudyProceedingsWhereInput No
limit Int No

Output

Required: Yes
List: No

upsert

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

Input

Name Type Required
where StudyProceedingsWhereUniqueInput Yes
create StudyProceedingsCreateInput | StudyProceedingsUncheckedCreateInput Yes
update StudyProceedingsUpdateInput | StudyProceedingsUncheckedUpdateInput Yes

Output

Required: Yes
List: No

Phase

Description: Represents a phase of a study

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid(1))
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 -

Operations

findUnique

Find zero or one Phase

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

Input

Name Type Required
where PhaseWhereUniqueInput Yes

Output

Type: Phase
Required: No
List: No

findFirst

Find first Phase

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

Input

Name Type Required
where PhaseWhereInput No
orderBy PhaseOrderByWithRelationInput[] | PhaseOrderByWithRelationInput No
cursor PhaseWhereUniqueInput No
take Int No
skip Int No
distinct PhaseScalarFieldEnum | PhaseScalarFieldEnum[] No

Output

Type: Phase
Required: No
List: No

findMany

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

Input

Name Type Required
where PhaseWhereInput No
orderBy PhaseOrderByWithRelationInput[] | PhaseOrderByWithRelationInput No
cursor PhaseWhereUniqueInput No
take Int No
skip Int No
distinct PhaseScalarFieldEnum | PhaseScalarFieldEnum[] No

Output

Type: Phase
Required: Yes
List: Yes

create

Create one Phase

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

Input

Name Type Required
data PhaseCreateInput | PhaseUncheckedCreateInput Yes

Output

Type: Phase
Required: Yes
List: No

delete

Delete one Phase

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

Input

Name Type Required
where PhaseWhereUniqueInput Yes

Output

Type: Phase
Required: No
List: No

update

Update one Phase

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

Input

Name Type Required
data PhaseUpdateInput | PhaseUncheckedUpdateInput Yes
where PhaseWhereUniqueInput Yes

Output

Type: Phase
Required: No
List: No

deleteMany

Delete zero or more Phase

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

Input

Name Type Required
where PhaseWhereInput No
limit Int No

Output

Required: Yes
List: No

updateMany

Update zero or one Phase

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

Input

Name Type Required
data PhaseUpdateManyMutationInput | PhaseUncheckedUpdateManyInput Yes
where PhaseWhereInput No
limit Int No

Output

Required: Yes
List: No

upsert

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

Input

Name Type Required
where PhaseWhereUniqueInput Yes
create PhaseCreateInput | PhaseUncheckedCreateInput Yes
update PhaseUpdateInput | PhaseUncheckedUpdateInput Yes

Output

Type: Phase
Required: Yes
List: No

Deliverable

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid(1))
Yes -
description String
  • -
Yes -
status DeliverableStatus
  • @default(NotStarted)
Yes -
phase Phase
  • -
Yes -
phaseId String
  • @unique
Yes -

Operations

findUnique

Find zero or one Deliverable

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

Input

Name Type Required
where DeliverableWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first Deliverable

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

Input

Name Type Required
where DeliverableWhereInput No
orderBy DeliverableOrderByWithRelationInput[] | DeliverableOrderByWithRelationInput No
cursor DeliverableWhereUniqueInput No
take Int No
skip Int No
distinct DeliverableScalarFieldEnum | DeliverableScalarFieldEnum[] No

Output

Required: No
List: No

findMany

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

Input

Name Type Required
where DeliverableWhereInput No
orderBy DeliverableOrderByWithRelationInput[] | DeliverableOrderByWithRelationInput No
cursor DeliverableWhereUniqueInput No
take Int No
skip Int No
distinct DeliverableScalarFieldEnum | DeliverableScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one Deliverable

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

Input

Name Type Required
data DeliverableCreateInput | DeliverableUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one Deliverable

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

Input

Name Type Required
where DeliverableWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one Deliverable

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

Input

Name Type Required
data DeliverableUpdateInput | DeliverableUncheckedUpdateInput Yes
where DeliverableWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more Deliverable

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

Input

Name Type Required
where DeliverableWhereInput No
limit Int No

Output

Required: Yes
List: No

updateMany

Update zero or one Deliverable

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

Input

Name Type Required
data DeliverableUpdateManyMutationInput | DeliverableUncheckedUpdateManyInput Yes
where DeliverableWhereInput No
limit Int No

Output

Required: Yes
List: No

upsert

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

Input

Name Type Required
where DeliverableWhereUniqueInput Yes
create DeliverableCreateInput | DeliverableUncheckedCreateInput Yes
update DeliverableUpdateInput | DeliverableUncheckedUpdateInput Yes

Output

Required: Yes
List: No

Types

Input Types

PersonWhereInput

Name Type Nullable
AND PersonWhereInput | PersonWhereInput[] No
OR PersonWhereInput[] No
NOT PersonWhereInput | PersonWhereInput[] No
id StringFilter | String No
email 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

PersonOrderByWithRelationInput

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

PersonWhereUniqueInput

Name Type Nullable
id String No
name PersonNameCompoundUniqueInput No
AND PersonWhereInput | PersonWhereInput[] No
OR PersonWhereInput[] No
NOT PersonWhereInput | PersonWhereInput[] No
email 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

PersonOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
email SortOrder | SortOrderInput No
firstName SortOrder No
lastName SortOrder No
number SortOrder | SortOrderInput No
_count PersonCountOrderByAggregateInput No
_max PersonMaxOrderByAggregateInput No
_min PersonMinOrderByAggregateInput No


UserWhereInput

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

UserOrderByWithRelationInput

Name Type Nullable
id SortOrder No
personId SortOrder No
userSettingsId SortOrder | SortOrderInput No
person PersonOrderByWithRelationInput No
settings UserSettingsOrderByWithRelationInput No
admin AdminOrderByWithRelationInput No

UserWhereUniqueInput

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

UserOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
personId SortOrder No
userSettingsId SortOrder | SortOrderInput No
_count UserCountOrderByAggregateInput No
_max UserMaxOrderByAggregateInput No
_min UserMinOrderByAggregateInput No


AdminWhereInput

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

AdminOrderByWithRelationInput

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

AdminWhereUniqueInput

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

AdminOrderByWithAggregationInput

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


UserSettingsWhereInput

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

UserSettingsOrderByWithRelationInput

Name Type Nullable
id SortOrder No
theme SortOrder No
notificationLevel SortOrder No
gui SortOrder No
User UserOrderByRelationAggregateInput No

UserSettingsWhereUniqueInput

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

UserSettingsOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
theme SortOrder No
notificationLevel SortOrder No
gui SortOrder No
_count UserSettingsCountOrderByAggregateInput No
_max UserSettingsMaxOrderByAggregateInput No
_min UserSettingsMinOrderByAggregateInput No


AddressWhereInput

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

AddressOrderByWithRelationInput

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

AddressWhereUniqueInput

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

AddressOrderByWithAggregationInput

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


ClientWhereInput

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

ClientOrderByWithRelationInput

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

ClientWhereUniqueInput

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

ClientOrderByWithAggregationInput

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



StudyClientOrderByWithRelationInput

Name Type Nullable
id SortOrder No
studyId SortOrder No
clientId SortOrder No
study StudyOrderByWithRelationInput No
client ClientOrderByWithRelationInput No
satisfaction SatisfactionOrderByWithRelationInput No

StudyClientWhereUniqueInput

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

StudyClientOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
studyId SortOrder No
clientId SortOrder No
_count StudyClientCountOrderByAggregateInput No
_max StudyClientMaxOrderByAggregateInput No
_min StudyClientMinOrderByAggregateInput No


SatisfactionWhereInput

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

SatisfactionOrderByWithRelationInput

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

SatisfactionWhereUniqueInput

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

SatisfactionOrderByWithAggregationInput

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

SatisfactionScalarWhereWithAggregatesInput

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

CompanyWhereInput

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

CompanyOrderByWithRelationInput

Name Type Nullable
id SortOrder No
name SortOrder No
companyInfosId SortOrder No
address AddressOrderByWithRelationInput No
companyInfos CompanyInfosOrderByWithRelationInput No
members ClientOrderByRelationAggregateInput No

CompanyWhereUniqueInput

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

CompanyOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
name SortOrder No
companyInfosId SortOrder No
_count CompanyCountOrderByAggregateInput No
_max CompanyMaxOrderByAggregateInput No
_min CompanyMinOrderByAggregateInput No



CompanyInfosOrderByWithRelationInput

Name Type Nullable
id SortOrder No
domains SortOrder No
ca SortOrder | SortOrderInput No
size SortOrder | SortOrderInput No
company CompanyOrderByRelationAggregateInput No

CompanyInfosWhereUniqueInput

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



DocumentWhereInput

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

DocumentOrderByWithRelationInput

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

DocumentWhereUniqueInput

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

DocumentOrderByWithAggregationInput

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


StatusWhereInput

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

StatusOrderByWithRelationInput

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

StatusWhereUniqueInput

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

StatusOrderByWithAggregationInput

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

StatusScalarWhereWithAggregatesInput

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

MriWhereInput

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

MriOrderByWithRelationInput

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

MriWhereUniqueInput

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

MriOrderByWithAggregationInput

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

MriScalarWhereWithAggregatesInput

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


AssigneeOrderByWithRelationInput

Name Type Nullable
id SortOrder No
nbApplications SortOrder No
peopleId SortOrder No
docs AssigneeDocsOrderByRelationAggregateInput No
information AssigneeInfosOrderByWithRelationInput No
person PersonOrderByWithRelationInput No
studyAssign StudyAssigneeOrderByRelationAggregateInput No

AssigneeWhereUniqueInput

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

AssigneeOrderByWithAggregationInput

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


AssigneeInfosWhereInput

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

AssigneeInfosOrderByWithRelationInput

Name Type Nullable
id SortOrder No
assigneeId SortOrder No
age SortOrder No
promotion SortOrder No
hasScholarship SortOrder No
oldJet SortOrder No
assignee AssigneeOrderByWithRelationInput No

AssigneeInfosWhereUniqueInput

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

AssigneeInfosOrderByWithAggregationInput

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


AssigneeDocsWhereInput

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

AssigneeDocsOrderByWithRelationInput

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

AssigneeDocsWhereUniqueInput

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

AssigneeDocsOrderByWithAggregationInput

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


StudyAssigneeWhereInput

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

StudyAssigneeOrderByWithRelationInput

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

StudyAssigneeWhereUniqueInput

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

StudyAssigneeOrderByWithAggregationInput

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


MriFormWhereInput

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

MriFormOrderByWithRelationInput

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

MriFormWhereUniqueInput

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

MriFormOrderByWithAggregationInput

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


FormInterviewsWhereInput

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

FormInterviewsOrderByWithRelationInput

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

FormInterviewsWhereUniqueInput

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

FormInterviewsOrderByWithAggregationInput

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

FormInterviewsScalarWhereWithAggregatesInput

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



StudyWhereUniqueInput

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

StudyOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
informationId SortOrder No
studyProceedingsId SortOrder | SortOrderInput No
_count StudyCountOrderByAggregateInput No
_max StudyMaxOrderByAggregateInput No
_min StudyMinOrderByAggregateInput No


StudyInfosWhereInput

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

StudyInfosOrderByWithRelationInput

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

StudyInfosWhereUniqueInput

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

StudyInfosOrderByWithAggregationInput

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

StudyInfosScalarWhereWithAggregatesInput

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


StudyProceedingsOrderByWithRelationInput

Name Type Nullable
id SortOrder No
studyId SortOrder No
studyProcessStep SortOrder No
phases PhaseOrderByRelationAggregateInput No
study StudyOrderByWithRelationInput No


StudyProceedingsOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
studyId SortOrder No
studyProcessStep SortOrder No
_count StudyProceedingsCountOrderByAggregateInput No
_max StudyProceedingsMaxOrderByAggregateInput No
_min StudyProceedingsMinOrderByAggregateInput No


PhaseWhereInput

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

PhaseOrderByWithRelationInput

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

PhaseWhereUniqueInput

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

PhaseOrderByWithAggregationInput

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

PhaseScalarWhereWithAggregatesInput

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

DeliverableWhereInput

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

DeliverableOrderByWithRelationInput

Name Type Nullable
id SortOrder No
description SortOrder No
status SortOrder No
phaseId SortOrder No
phase PhaseOrderByWithRelationInput No

DeliverableWhereUniqueInput

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

DeliverableOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
description SortOrder No
status SortOrder No
phaseId SortOrder No
_count DeliverableCountOrderByAggregateInput No
_max DeliverableMaxOrderByAggregateInput No
_min DeliverableMinOrderByAggregateInput No


PersonCreateInput

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

PersonUncheckedCreateInput

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



PersonCreateManyInput

Name Type Nullable
id String No
email String | Null Yes
firstName String No
lastName String No
number String | Null Yes

PersonUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
firstName String | StringFieldUpdateOperationsInput No
lastName String | StringFieldUpdateOperationsInput No
number String | NullableStringFieldUpdateOperationsInput | Null Yes

PersonUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
firstName String | StringFieldUpdateOperationsInput No
lastName String | StringFieldUpdateOperationsInput No
number String | NullableStringFieldUpdateOperationsInput | Null Yes

UserCreateInput

Name Type Nullable
id String No
person PersonCreateNestedOneWithoutUserInput No
settings UserSettingsCreateNestedOneWithoutUserInput No
admin AdminCreateNestedOneWithoutUserInput No

UserUncheckedCreateInput

Name Type Nullable
id String No
personId String No
userSettingsId String | Null Yes
admin AdminUncheckedCreateNestedOneWithoutUserInput No


UserUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
personId String | StringFieldUpdateOperationsInput No
userSettingsId String | NullableStringFieldUpdateOperationsInput | Null Yes
admin AdminUncheckedUpdateOneWithoutUserNestedInput No

UserCreateManyInput

Name Type Nullable
id String No
personId String No
userSettingsId String | Null Yes

UserUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No

UserUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
personId String | StringFieldUpdateOperationsInput No
userSettingsId String | NullableStringFieldUpdateOperationsInput | Null Yes

AdminCreateInput

Name Type Nullable
id String No
position String | Null Yes
image String | Null Yes
user UserCreateNestedOneWithoutAdminInput No
studies StudyCreateNestedManyWithoutCdpsInput No
auditedStudies StudyCreateNestedManyWithoutAuditorsInput No

AdminUncheckedCreateInput

Name Type Nullable
id String No
userId String No
position String | Null Yes
image String | Null Yes
studies StudyUncheckedCreateNestedManyWithoutCdpsInput No
auditedStudies StudyUncheckedCreateNestedManyWithoutAuditorsInput No


AdminUncheckedUpdateInput

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

AdminCreateManyInput

Name Type Nullable
id String No
userId String No
position String | Null Yes
image String | Null Yes

AdminUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
position String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes

AdminUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No
position String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes

UserSettingsCreateInput

Name Type Nullable
id String No
theme String No
notificationLevel NotificationLevel No
gui Boolean No
User UserCreateNestedManyWithoutSettingsInput No

UserSettingsUncheckedCreateInput

Name Type Nullable
id String No
theme String No
notificationLevel NotificationLevel No
gui Boolean No
User UserUncheckedCreateNestedManyWithoutSettingsInput No


UserSettingsUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
theme String | StringFieldUpdateOperationsInput No
notificationLevel NotificationLevel | EnumNotificationLevelFieldUpdateOperationsInput No
gui Boolean | BoolFieldUpdateOperationsInput No
User UserUncheckedUpdateManyWithoutSettingsNestedInput No

UserSettingsCreateManyInput

Name Type Nullable
id String No
theme String No
notificationLevel NotificationLevel No
gui Boolean No

UserSettingsUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
theme String | StringFieldUpdateOperationsInput No
notificationLevel NotificationLevel | EnumNotificationLevelFieldUpdateOperationsInput No
gui Boolean | BoolFieldUpdateOperationsInput No

UserSettingsUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
theme String | StringFieldUpdateOperationsInput No
notificationLevel NotificationLevel | EnumNotificationLevelFieldUpdateOperationsInput No
gui Boolean | BoolFieldUpdateOperationsInput No

AddressCreateInput

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

AddressUncheckedCreateInput

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

AddressUpdateInput

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

AddressUncheckedUpdateInput

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

AddressCreateManyInput

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

AddressUpdateManyMutationInput

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

AddressUncheckedUpdateManyInput

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

ClientCreateInput

Name Type Nullable
id String No
privateIndividual Boolean No
job String No
company CompanyCreateNestedOneWithoutMembersInput No
person PersonCreateNestedOneWithoutClientsInput No
studyClients StudyClientCreateNestedManyWithoutClientInput No

ClientUncheckedCreateInput

Name Type Nullable
id String No
privateIndividual Boolean No
companyId String | Null Yes
personId String No
job String No
studyClients StudyClientUncheckedCreateNestedManyWithoutClientInput No


ClientUncheckedUpdateInput

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

ClientCreateManyInput

Name Type Nullable
id String No
privateIndividual Boolean No
companyId String | Null Yes
personId String No
job String No

ClientUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
privateIndividual Boolean | BoolFieldUpdateOperationsInput No
job String | StringFieldUpdateOperationsInput No

ClientUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
privateIndividual Boolean | BoolFieldUpdateOperationsInput No
companyId String | NullableStringFieldUpdateOperationsInput | Null Yes
personId String | StringFieldUpdateOperationsInput No
job String | StringFieldUpdateOperationsInput No

StudyClientCreateInput

Name Type Nullable
id String No
study StudyCreateNestedOneWithoutClientsInput No
client ClientCreateNestedOneWithoutStudyClientsInput No
satisfaction SatisfactionCreateNestedOneWithoutStudyClientInput No

StudyClientUncheckedCreateInput

Name Type Nullable
id String No
studyId String No
clientId String No
satisfaction SatisfactionUncheckedCreateNestedOneWithoutStudyClientInput No


StudyClientUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
studyId String | StringFieldUpdateOperationsInput No
clientId String | StringFieldUpdateOperationsInput No
satisfaction SatisfactionUncheckedUpdateOneWithoutStudyClientNestedInput No

StudyClientCreateManyInput

Name Type Nullable
id String No
studyId String No
clientId String No

StudyClientUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No

StudyClientUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
studyId String | StringFieldUpdateOperationsInput No
clientId String | StringFieldUpdateOperationsInput No

SatisfactionCreateInput

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

SatisfactionUncheckedCreateInput

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

SatisfactionUpdateInput

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

SatisfactionUncheckedUpdateInput

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

SatisfactionCreateManyInput

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

SatisfactionUpdateManyMutationInput

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

SatisfactionUncheckedUpdateManyInput

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

CompanyCreateInput

Name Type Nullable
id String No
name String No
address AddressCreateNestedOneWithoutCompanyInput No
companyInfos CompanyInfosCreateNestedOneWithoutCompanyInput No
members ClientCreateNestedManyWithoutCompanyInput No

CompanyUncheckedCreateInput

Name Type Nullable
id String No
name String No
companyInfosId String No
address AddressUncheckedCreateNestedOneWithoutCompanyInput No
members ClientUncheckedCreateNestedManyWithoutCompanyInput No


CompanyUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
companyInfosId String | StringFieldUpdateOperationsInput No
address AddressUncheckedUpdateOneWithoutCompanyNestedInput No
members ClientUncheckedUpdateManyWithoutCompanyNestedInput No

CompanyCreateManyInput

Name Type Nullable
id String No
name String No
companyInfosId String No

CompanyUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No

CompanyUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
companyInfosId String | StringFieldUpdateOperationsInput No

CompanyInfosCreateInput

Name Type Nullable
id String No
domains CompanyInfosCreatedomainsInput | Domain[] No
ca Int | Null Yes
size CompanySize | Null Yes
company CompanyCreateNestedManyWithoutCompanyInfosInput No

CompanyInfosUncheckedCreateInput

Name Type Nullable
id String No
domains CompanyInfosCreatedomainsInput | Domain[] No
ca Int | Null Yes
size CompanySize | Null Yes
company CompanyUncheckedCreateNestedManyWithoutCompanyInfosInput No



CompanyInfosCreateManyInput

Name Type Nullable
id String No
domains CompanyInfosCreatedomainsInput | Domain[] No
ca Int | Null Yes
size CompanySize | Null Yes

CompanyInfosUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
domains CompanyInfosUpdatedomainsInput | Domain[] No
ca Int | NullableIntFieldUpdateOperationsInput | Null Yes
size CompanySize | NullableEnumCompanySizeFieldUpdateOperationsInput | Null Yes

CompanyInfosUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
domains CompanyInfosUpdatedomainsInput | Domain[] No
ca Int | NullableIntFieldUpdateOperationsInput | Null Yes
size CompanySize | NullableEnumCompanySizeFieldUpdateOperationsInput | Null Yes

DocumentCreateInput

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

DocumentUncheckedCreateInput

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


DocumentUncheckedUpdateInput

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

DocumentCreateManyInput

Name Type Nullable
id String No
title String No
googleId String No
type String No
studyDocsId String | Null Yes
statusId String | Null Yes

DocumentUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
googleId String | StringFieldUpdateOperationsInput No
type String | StringFieldUpdateOperationsInput No
studyDocsId String | NullableStringFieldUpdateOperationsInput | Null Yes

DocumentUncheckedUpdateManyInput

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

StatusCreateInput

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

StatusUncheckedCreateInput

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

StatusUpdateInput

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

StatusUncheckedUpdateInput

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

StatusCreateManyInput

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

StatusUpdateManyMutationInput

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

StatusUncheckedUpdateManyInput

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

MriCreateInput

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

MriUncheckedCreateInput

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

MriUpdateInput

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

MriUncheckedUpdateInput

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

MriCreateManyInput

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

MriUpdateManyMutationInput

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

MriUncheckedUpdateManyInput

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

AssigneeCreateInput

Name Type Nullable
id String No
nbApplications Int No
docs AssigneeDocsCreateNestedManyWithoutAssigneeInput No
information AssigneeInfosCreateNestedOneWithoutAssigneeInput No
person PersonCreateNestedOneWithoutAssigneeInput No
studyAssign StudyAssigneeCreateNestedManyWithoutAssigneeInput No

AssigneeUncheckedCreateInput

Name Type Nullable
id String No
nbApplications Int No
peopleId String No
docs AssigneeDocsUncheckedCreateNestedManyWithoutAssigneeInput No
information AssigneeInfosUncheckedCreateNestedOneWithoutAssigneeInput No
studyAssign StudyAssigneeUncheckedCreateNestedManyWithoutAssigneeInput No



AssigneeCreateManyInput

Name Type Nullable
id String No
nbApplications Int No
peopleId String No

AssigneeUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
nbApplications Int | IntFieldUpdateOperationsInput No

AssigneeUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
nbApplications Int | IntFieldUpdateOperationsInput No
peopleId String | StringFieldUpdateOperationsInput No

AssigneeInfosCreateInput

Name Type Nullable
id String No
age Int No
promotion Int No
hasScholarship Boolean No
oldJet Boolean No
assignee AssigneeCreateNestedOneWithoutInformationInput No

AssigneeInfosUncheckedCreateInput

Name Type Nullable
id String No
assigneeId String No
age Int No
promotion Int No
hasScholarship Boolean No
oldJet Boolean No

AssigneeInfosUpdateInput

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

AssigneeInfosUncheckedUpdateInput

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

AssigneeInfosCreateManyInput

Name Type Nullable
id String No
assigneeId String No
age Int No
promotion Int No
hasScholarship Boolean No
oldJet Boolean No

AssigneeInfosUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
age Int | IntFieldUpdateOperationsInput No
promotion Int | IntFieldUpdateOperationsInput No
hasScholarship Boolean | BoolFieldUpdateOperationsInput No
oldJet Boolean | BoolFieldUpdateOperationsInput No

AssigneeInfosUncheckedUpdateManyInput

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


AssigneeDocsUncheckedCreateInput

Name Type Nullable
id String No
assigneeId String No
cniId String No
socialSecurityId String No
studentCardId String No


AssigneeDocsUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
assigneeId String | StringFieldUpdateOperationsInput No
cniId String | StringFieldUpdateOperationsInput No
socialSecurityId String | StringFieldUpdateOperationsInput No
studentCardId String | StringFieldUpdateOperationsInput No

AssigneeDocsCreateManyInput

Name Type Nullable
id String No
assigneeId String No
cniId String No
socialSecurityId String No
studentCardId String No

AssigneeDocsUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No

AssigneeDocsUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
assigneeId String | StringFieldUpdateOperationsInput No
cniId String | StringFieldUpdateOperationsInput No
socialSecurityId String | StringFieldUpdateOperationsInput No
studentCardId String | StringFieldUpdateOperationsInput No

StudyAssigneeCreateInput

Name Type Nullable
id String No
selectionNotes String No
taken Boolean No
study StudyCreateNestedOneWithoutStudyAssigneesInput No
assignee AssigneeCreateNestedOneWithoutStudyAssignInput No
formInterview FormInterviewsCreateNestedOneWithoutStudyAssigneesInput No
mriForm MriFormCreateNestedOneWithoutStudyAssigneesInput No

StudyAssigneeUncheckedCreateInput

Name Type Nullable
id String No
studyId String No
assigneeId String No
formInterviewId String No
mriFormId String No
selectionNotes String No
taken Boolean No


StudyAssigneeUncheckedUpdateInput

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

StudyAssigneeCreateManyInput

Name Type Nullable
id String No
studyId String No
assigneeId String No
formInterviewId String No
mriFormId String No
selectionNotes String No
taken Boolean No

StudyAssigneeUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
selectionNotes String | StringFieldUpdateOperationsInput No
taken Boolean | BoolFieldUpdateOperationsInput No

StudyAssigneeUncheckedUpdateManyInput

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

MriFormCreateInput

Name Type Nullable
id String No
experience String No
knowledge String No
ideas String No
jeExperience Int No
mri MriCreateNestedOneWithoutFormMRIsInput No
studyAssignees StudyAssigneeCreateNestedOneWithoutMriFormInput No

MriFormUncheckedCreateInput

Name Type Nullable
id String No
mriId String No
experience String No
knowledge String No
ideas String No
jeExperience Int No
studyAssignees StudyAssigneeUncheckedCreateNestedOneWithoutMriFormInput No

MriFormUpdateInput

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

MriFormUncheckedUpdateInput

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

MriFormCreateManyInput

Name Type Nullable
id String No
mriId String No
experience String No
knowledge String No
ideas String No
jeExperience Int No

MriFormUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
experience String | StringFieldUpdateOperationsInput No
knowledge String | StringFieldUpdateOperationsInput No
ideas String | StringFieldUpdateOperationsInput No
jeExperience Int | IntFieldUpdateOperationsInput No

MriFormUncheckedUpdateManyInput

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

FormInterviewsCreateInput

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

FormInterviewsUncheckedCreateInput

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

FormInterviewsUpdateInput

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

FormInterviewsUncheckedUpdateInput

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

FormInterviewsCreateManyInput

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

FormInterviewsUpdateManyMutationInput

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

FormInterviewsUncheckedUpdateManyInput

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





StudyCreateManyInput

Name Type Nullable
id String No
informationId String No
studyProceedingsId String | Null Yes

StudyUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
studyProceedingsId String | NullableStringFieldUpdateOperationsInput | Null Yes

StudyUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
informationId String | StringFieldUpdateOperationsInput No
studyProceedingsId String | NullableStringFieldUpdateOperationsInput | Null Yes

StudyInfosCreateInput

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

StudyInfosUncheckedCreateInput

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

StudyInfosUpdateInput

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

StudyInfosUncheckedUpdateInput

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

StudyInfosCreateManyInput

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

StudyInfosUpdateManyMutationInput

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

StudyInfosUncheckedUpdateManyInput

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

StudyProceedingsCreateInput

Name Type Nullable
id String No
studyProcessStep StudyProgressStep No
phases PhaseCreateNestedManyWithoutStudyProceedingsInput No
study StudyCreateNestedOneWithoutStudyProceedingsInput No

StudyProceedingsUncheckedCreateInput

Name Type Nullable
id String No
studyId String No
studyProcessStep StudyProgressStep No
phases PhaseUncheckedCreateNestedManyWithoutStudyProceedingsInput No


StudyProceedingsUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
studyId String | StringFieldUpdateOperationsInput No
studyProcessStep StudyProgressStep | EnumStudyProgressStepFieldUpdateOperationsInput No
phases PhaseUncheckedUpdateManyWithoutStudyProceedingsNestedInput No

StudyProceedingsCreateManyInput

Name Type Nullable
id String No
studyId String No
studyProcessStep StudyProgressStep No

StudyProceedingsUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
studyProcessStep StudyProgressStep | EnumStudyProgressStepFieldUpdateOperationsInput No

StudyProceedingsUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
studyId String | StringFieldUpdateOperationsInput No
studyProcessStep StudyProgressStep | EnumStudyProgressStepFieldUpdateOperationsInput No

PhaseCreateInput

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

PhaseUncheckedCreateInput

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

PhaseUpdateInput

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

PhaseUncheckedUpdateInput

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

PhaseCreateManyInput

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

PhaseUpdateManyMutationInput

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

PhaseUncheckedUpdateManyInput

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

DeliverableCreateInput

Name Type Nullable
id String No
description String No
status DeliverableStatus No
phase PhaseCreateNestedOneWithoutDeliverableInput No

DeliverableUncheckedCreateInput

Name Type Nullable
id String No
description String No
status DeliverableStatus No
phaseId String No


DeliverableUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
status DeliverableStatus | EnumDeliverableStatusFieldUpdateOperationsInput No
phaseId String | StringFieldUpdateOperationsInput No

DeliverableCreateManyInput

Name Type Nullable
id String No
description String No
status DeliverableStatus No
phaseId String No

DeliverableUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
status DeliverableStatus | EnumDeliverableStatusFieldUpdateOperationsInput No

DeliverableUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
status DeliverableStatus | EnumDeliverableStatusFieldUpdateOperationsInput No
phaseId String | StringFieldUpdateOperationsInput No

StringFilter

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

StringNullableFilter

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

AddressNullableScalarRelationFilter

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

UserNullableScalarRelationFilter

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

AssigneeNullableScalarRelationFilter

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

ClientNullableScalarRelationFilter

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

SortOrderInput

Name Type Nullable
sort SortOrder No
nulls NullsOrder No

PersonNameCompoundUniqueInput

Name Type Nullable
firstName String No
lastName String No

PersonCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
email SortOrder No
firstName SortOrder No
lastName SortOrder No
number SortOrder No

PersonMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
email SortOrder No
firstName SortOrder No
lastName SortOrder No
number SortOrder No

PersonMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
email SortOrder No
firstName SortOrder No
lastName SortOrder No
number SortOrder No

StringWithAggregatesFilter

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

StringNullableWithAggregatesFilter

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

PersonScalarRelationFilter

Name Type Nullable
is PersonWhereInput No
isNot PersonWhereInput No

UserSettingsNullableScalarRelationFilter

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

AdminNullableScalarRelationFilter

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

UserCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
personId SortOrder No
userSettingsId SortOrder No

UserMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
personId SortOrder No
userSettingsId SortOrder No

UserMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
personId SortOrder No
userSettingsId SortOrder No

UserScalarRelationFilter

Name Type Nullable
is UserWhereInput No
isNot UserWhereInput No

StudyListRelationFilter

Name Type Nullable
every StudyWhereInput No
some StudyWhereInput No
none StudyWhereInput No

StudyOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

AdminCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
userId SortOrder No
position SortOrder No
image SortOrder No

AdminMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
userId SortOrder No
position SortOrder No
image SortOrder No

AdminMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
userId SortOrder No
position SortOrder No
image SortOrder No


BoolFilter

Name Type Nullable
equals Boolean | BooleanFieldRefInput No
not Boolean | NestedBoolFilter No

UserListRelationFilter

Name Type Nullable
every UserWhereInput No
some UserWhereInput No
none UserWhereInput No

UserOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

UserSettingsCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
theme SortOrder No
notificationLevel SortOrder No
gui SortOrder No

UserSettingsMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
theme SortOrder No
notificationLevel SortOrder No
gui SortOrder No

UserSettingsMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
theme SortOrder No
notificationLevel SortOrder No
gui SortOrder No


BoolWithAggregatesFilter

Name Type Nullable
equals Boolean | BooleanFieldRefInput No
not Boolean | NestedBoolWithAggregatesFilter No
_count NestedIntFilter No
_min NestedBoolFilter No
_max NestedBoolFilter No

PersonNullableScalarRelationFilter

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

CompanyNullableScalarRelationFilter

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

AddressCountOrderByAggregateInput

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

AddressMaxOrderByAggregateInput

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

AddressMinOrderByAggregateInput

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

StudyClientListRelationFilter

Name Type Nullable
every StudyClientWhereInput No
some StudyClientWhereInput No
none StudyClientWhereInput No

StudyClientOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

ClientCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
privateIndividual SortOrder No
companyId SortOrder No
personId SortOrder No
job SortOrder No

ClientMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
privateIndividual SortOrder No
companyId SortOrder No
personId SortOrder No
job SortOrder No

ClientMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
privateIndividual SortOrder No
companyId SortOrder No
personId SortOrder No
job SortOrder No

StudyScalarRelationFilter

Name Type Nullable
is StudyWhereInput No
isNot StudyWhereInput No

ClientScalarRelationFilter

Name Type Nullable
is ClientWhereInput No
isNot ClientWhereInput No

SatisfactionNullableScalarRelationFilter

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

StudyClientCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
studyId SortOrder No
clientId SortOrder No

StudyClientMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
studyId SortOrder No
clientId SortOrder No

StudyClientMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
studyId SortOrder No
clientId SortOrder No

IntFilter

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

StudyClientScalarRelationFilter

Name Type Nullable
is StudyClientWhereInput No
isNot StudyClientWhereInput No

SatisfactionCountOrderByAggregateInput

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

SatisfactionAvgOrderByAggregateInput

Name Type Nullable
satisfactionObjectives SortOrder No
easiness SortOrder No
timeElapsed SortOrder No
recommendUs SortOrder No

SatisfactionMaxOrderByAggregateInput

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

SatisfactionMinOrderByAggregateInput

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

SatisfactionSumOrderByAggregateInput

Name Type Nullable
satisfactionObjectives SortOrder No
easiness SortOrder No
timeElapsed SortOrder No
recommendUs SortOrder No

IntWithAggregatesFilter

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

CompanyInfosScalarRelationFilter

Name Type Nullable
is CompanyInfosWhereInput No
isNot CompanyInfosWhereInput No

ClientListRelationFilter

Name Type Nullable
every ClientWhereInput No
some ClientWhereInput No
none ClientWhereInput No

ClientOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

CompanyCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
companyInfosId SortOrder No

CompanyMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
companyInfosId SortOrder No

CompanyMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
companyInfosId SortOrder No

EnumDomainNullableListFilter

Name Type Nullable
equals Domain[] | ListEnumDomainFieldRefInput | Null Yes
has Domain | EnumDomainFieldRefInput | Null Yes
hasEvery Domain[] | ListEnumDomainFieldRefInput No
hasSome Domain[] | ListEnumDomainFieldRefInput No
isEmpty Boolean No

IntNullableFilter

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

EnumCompanySizeNullableFilter

Name Type Nullable
equals CompanySize | EnumCompanySizeFieldRefInput | Null Yes
in CompanySize[] | ListEnumCompanySizeFieldRefInput | Null Yes
notIn CompanySize[] | ListEnumCompanySizeFieldRefInput | Null Yes
not CompanySize | NestedEnumCompanySizeNullableFilter | Null Yes

CompanyListRelationFilter

Name Type Nullable
every CompanyWhereInput No
some CompanyWhereInput No
none CompanyWhereInput No

CompanyOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

CompanyInfosCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
domains SortOrder No
ca SortOrder No
size SortOrder No

CompanyInfosAvgOrderByAggregateInput

Name Type Nullable
ca SortOrder No

CompanyInfosMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
ca SortOrder No
size SortOrder No

CompanyInfosMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
ca SortOrder No
size SortOrder No

CompanyInfosSumOrderByAggregateInput

Name Type Nullable
ca SortOrder No

IntNullableWithAggregatesFilter

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


StatusNullableScalarRelationFilter

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

AssigneeDocsNullableScalarRelationFilter

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

DocumentCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
title SortOrder No
googleId SortOrder No
type SortOrder No
studyDocsId SortOrder No
statusId SortOrder No

DocumentMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
title SortOrder No
googleId SortOrder No
type SortOrder No
studyDocsId SortOrder No
statusId SortOrder No

DocumentMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
title SortOrder No
googleId SortOrder No
type SortOrder No
studyDocsId SortOrder No
statusId SortOrder No

DateTimeNullableFilter

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

DocumentListRelationFilter

Name Type Nullable
every DocumentWhereInput No
some DocumentWhereInput No
none DocumentWhereInput No

DocumentOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

StatusCountOrderByAggregateInput

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

StatusMaxOrderByAggregateInput

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

StatusMinOrderByAggregateInput

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

DateTimeNullableWithAggregatesFilter

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

EnumLevelNullableFilter

Name Type Nullable
equals Level | EnumLevelFieldRefInput | Null Yes
in Level[] | ListEnumLevelFieldRefInput | Null Yes
notIn Level[] | ListEnumLevelFieldRefInput | Null Yes
not Level | NestedEnumLevelNullableFilter | Null Yes

EnumDomainNullableFilter

Name Type Nullable
equals Domain | EnumDomainFieldRefInput | Null Yes
in Domain[] | ListEnumDomainFieldRefInput | Null Yes
notIn Domain[] | ListEnumDomainFieldRefInput | Null Yes
not Domain | NestedEnumDomainNullableFilter | Null Yes


MriFormListRelationFilter

Name Type Nullable
every MriFormWhereInput No
some MriFormWhereInput No
none MriFormWhereInput No

MriFormOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

MriCountOrderByAggregateInput

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

MriAvgOrderByAggregateInput

Name Type Nullable
wageLowerBound SortOrder No
wageUpperBound SortOrder No

MriMaxOrderByAggregateInput

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

MriMinOrderByAggregateInput

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

MriSumOrderByAggregateInput

Name Type Nullable
wageLowerBound SortOrder No
wageUpperBound SortOrder No

EnumLevelNullableWithAggregatesFilter

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

EnumDomainNullableWithAggregatesFilter

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


AssigneeDocsListRelationFilter

Name Type Nullable
every AssigneeDocsWhereInput No
some AssigneeDocsWhereInput No
none AssigneeDocsWhereInput No

AssigneeInfosNullableScalarRelationFilter

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

StudyAssigneeListRelationFilter

Name Type Nullable
every StudyAssigneeWhereInput No
some StudyAssigneeWhereInput No
none StudyAssigneeWhereInput No

AssigneeDocsOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

StudyAssigneeOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

AssigneeCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
nbApplications SortOrder No
peopleId SortOrder No

AssigneeAvgOrderByAggregateInput

Name Type Nullable
nbApplications SortOrder No

AssigneeMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
nbApplications SortOrder No
peopleId SortOrder No

AssigneeMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
nbApplications SortOrder No
peopleId SortOrder No

AssigneeSumOrderByAggregateInput

Name Type Nullable
nbApplications SortOrder No

AssigneeScalarRelationFilter

Name Type Nullable
is AssigneeWhereInput No
isNot AssigneeWhereInput No

AssigneeInfosCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
assigneeId SortOrder No
age SortOrder No
promotion SortOrder No
hasScholarship SortOrder No
oldJet SortOrder No

AssigneeInfosAvgOrderByAggregateInput

Name Type Nullable
age SortOrder No
promotion SortOrder No

AssigneeInfosMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
assigneeId SortOrder No
age SortOrder No
promotion SortOrder No
hasScholarship SortOrder No
oldJet SortOrder No

AssigneeInfosMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
assigneeId SortOrder No
age SortOrder No
promotion SortOrder No
hasScholarship SortOrder No
oldJet SortOrder No

AssigneeInfosSumOrderByAggregateInput

Name Type Nullable
age SortOrder No
promotion SortOrder No

DocumentScalarRelationFilter

Name Type Nullable
is DocumentWhereInput No
isNot DocumentWhereInput No

AssigneeDocsCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
assigneeId SortOrder No
cniId SortOrder No
socialSecurityId SortOrder No
studentCardId SortOrder No

AssigneeDocsMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
assigneeId SortOrder No
cniId SortOrder No
socialSecurityId SortOrder No
studentCardId SortOrder No

AssigneeDocsMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
assigneeId SortOrder No
cniId SortOrder No
socialSecurityId SortOrder No
studentCardId SortOrder No

FormInterviewsScalarRelationFilter

Name Type Nullable
is FormInterviewsWhereInput No
isNot FormInterviewsWhereInput No

MriFormScalarRelationFilter

Name Type Nullable
is MriFormWhereInput No
isNot MriFormWhereInput No

StudyAssigneeCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
studyId SortOrder No
assigneeId SortOrder No
formInterviewId SortOrder No
mriFormId SortOrder No
selectionNotes SortOrder No
taken SortOrder No

StudyAssigneeMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
studyId SortOrder No
assigneeId SortOrder No
formInterviewId SortOrder No
mriFormId SortOrder No
selectionNotes SortOrder No
taken SortOrder No

StudyAssigneeMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
studyId SortOrder No
assigneeId SortOrder No
formInterviewId SortOrder No
mriFormId SortOrder No
selectionNotes SortOrder No
taken SortOrder No

MriScalarRelationFilter

Name Type Nullable
is MriWhereInput No
isNot MriWhereInput No

StudyAssigneeNullableScalarRelationFilter

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

MriFormCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
mriId SortOrder No
experience SortOrder No
knowledge SortOrder No
ideas SortOrder No
jeExperience SortOrder No

MriFormAvgOrderByAggregateInput

Name Type Nullable
jeExperience SortOrder No

MriFormMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
mriId SortOrder No
experience SortOrder No
knowledge SortOrder No
ideas SortOrder No
jeExperience SortOrder No

MriFormMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
mriId SortOrder No
experience SortOrder No
knowledge SortOrder No
ideas SortOrder No
jeExperience SortOrder No

MriFormSumOrderByAggregateInput

Name Type Nullable
jeExperience SortOrder No

FormInterviewsCountOrderByAggregateInput

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

FormInterviewsMaxOrderByAggregateInput

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

FormInterviewsMinOrderByAggregateInput

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

AdminListRelationFilter

Name Type Nullable
every AdminWhereInput No
some AdminWhereInput No
none AdminWhereInput No

StudyInfosScalarRelationFilter

Name Type Nullable
is StudyInfosWhereInput No
isNot StudyInfosWhereInput No

StudyProceedingsNullableScalarRelationFilter

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

MriNullableScalarRelationFilter

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

AdminOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

StudyCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
informationId SortOrder No
studyProceedingsId SortOrder No

StudyMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
informationId SortOrder No
studyProceedingsId SortOrder No

StudyMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
informationId SortOrder No
studyProceedingsId SortOrder No

FloatFilter

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

StudyNullableScalarRelationFilter

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

StudyInfosCountOrderByAggregateInput

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

StudyInfosAvgOrderByAggregateInput

Name Type Nullable
applicationFee SortOrder No
estimatedDuration SortOrder No

StudyInfosMaxOrderByAggregateInput

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

StudyInfosMinOrderByAggregateInput

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

StudyInfosSumOrderByAggregateInput

Name Type Nullable
applicationFee SortOrder No
estimatedDuration SortOrder No

FloatWithAggregatesFilter

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


PhaseListRelationFilter

Name Type Nullable
every PhaseWhereInput No
some PhaseWhereInput No
none PhaseWhereInput No

PhaseOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

StudyProceedingsCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
studyId SortOrder No
studyProcessStep SortOrder No

StudyProceedingsMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
studyId SortOrder No
studyProcessStep SortOrder No

StudyProceedingsMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
studyId SortOrder No
studyProcessStep SortOrder No


DeliverableNullableScalarRelationFilter

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

StudyProceedingsScalarRelationFilter

Name Type Nullable
is StudyProceedingsWhereInput No
isNot StudyProceedingsWhereInput No

PhaseCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
jehs SortOrder No
title SortOrder No
unitPrice SortOrder No
startDate SortOrder No
endDate SortOrder No
studyProceedingsId SortOrder No

PhaseAvgOrderByAggregateInput

Name Type Nullable
jehs SortOrder No
unitPrice SortOrder No

PhaseMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
jehs SortOrder No
title SortOrder No
unitPrice SortOrder No
startDate SortOrder No
endDate SortOrder No
studyProceedingsId SortOrder No

PhaseMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
jehs SortOrder No
title SortOrder No
unitPrice SortOrder No
startDate SortOrder No
endDate SortOrder No
studyProceedingsId SortOrder No

PhaseSumOrderByAggregateInput

Name Type Nullable
jehs SortOrder No
unitPrice SortOrder No


PhaseScalarRelationFilter

Name Type Nullable
is PhaseWhereInput No
isNot PhaseWhereInput No

DeliverableCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
description SortOrder No
status SortOrder No
phaseId SortOrder No

DeliverableMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
description SortOrder No
status SortOrder No
phaseId SortOrder No

DeliverableMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
description SortOrder No
status SortOrder No
phaseId SortOrder No


AddressCreateNestedOneWithoutPersonInput

Name Type Nullable
create AddressCreateWithoutPersonInput | AddressUncheckedCreateWithoutPersonInput No
connectOrCreate AddressCreateOrConnectWithoutPersonInput No
connect AddressWhereUniqueInput No

UserCreateNestedOneWithoutPersonInput

Name Type Nullable
create UserCreateWithoutPersonInput | UserUncheckedCreateWithoutPersonInput No
connectOrCreate UserCreateOrConnectWithoutPersonInput No
connect UserWhereUniqueInput No

AssigneeCreateNestedOneWithoutPersonInput

Name Type Nullable
create AssigneeCreateWithoutPersonInput | AssigneeUncheckedCreateWithoutPersonInput No
connectOrCreate AssigneeCreateOrConnectWithoutPersonInput No
connect AssigneeWhereUniqueInput No

ClientCreateNestedOneWithoutPersonInput

Name Type Nullable
create ClientCreateWithoutPersonInput | ClientUncheckedCreateWithoutPersonInput No
connectOrCreate ClientCreateOrConnectWithoutPersonInput No
connect ClientWhereUniqueInput No

AddressUncheckedCreateNestedOneWithoutPersonInput

Name Type Nullable
create AddressCreateWithoutPersonInput | AddressUncheckedCreateWithoutPersonInput No
connectOrCreate AddressCreateOrConnectWithoutPersonInput No
connect AddressWhereUniqueInput No

UserUncheckedCreateNestedOneWithoutPersonInput

Name Type Nullable
create UserCreateWithoutPersonInput | UserUncheckedCreateWithoutPersonInput No
connectOrCreate UserCreateOrConnectWithoutPersonInput No
connect UserWhereUniqueInput No

AssigneeUncheckedCreateNestedOneWithoutPersonInput

Name Type Nullable
create AssigneeCreateWithoutPersonInput | AssigneeUncheckedCreateWithoutPersonInput No
connectOrCreate AssigneeCreateOrConnectWithoutPersonInput No
connect AssigneeWhereUniqueInput No

ClientUncheckedCreateNestedOneWithoutPersonInput

Name Type Nullable
create ClientCreateWithoutPersonInput | ClientUncheckedCreateWithoutPersonInput No
connectOrCreate ClientCreateOrConnectWithoutPersonInput No
connect ClientWhereUniqueInput No

StringFieldUpdateOperationsInput

Name Type Nullable
set String No

NullableStringFieldUpdateOperationsInput

Name Type Nullable
set String | Null Yes









PersonCreateNestedOneWithoutUserInput

Name Type Nullable
create PersonCreateWithoutUserInput | PersonUncheckedCreateWithoutUserInput No
connectOrCreate PersonCreateOrConnectWithoutUserInput No
connect PersonWhereUniqueInput No

UserSettingsCreateNestedOneWithoutUserInput

Name Type Nullable
create UserSettingsCreateWithoutUserInput | UserSettingsUncheckedCreateWithoutUserInput No
connectOrCreate UserSettingsCreateOrConnectWithoutUserInput No
connect UserSettingsWhereUniqueInput No

AdminCreateNestedOneWithoutUserInput

Name Type Nullable
create AdminCreateWithoutUserInput | AdminUncheckedCreateWithoutUserInput No
connectOrCreate AdminCreateOrConnectWithoutUserInput No
connect AdminWhereUniqueInput No

AdminUncheckedCreateNestedOneWithoutUserInput

Name Type Nullable
create AdminCreateWithoutUserInput | AdminUncheckedCreateWithoutUserInput No
connectOrCreate AdminCreateOrConnectWithoutUserInput No
connect AdminWhereUniqueInput No





UserCreateNestedOneWithoutAdminInput

Name Type Nullable
create UserCreateWithoutAdminInput | UserUncheckedCreateWithoutAdminInput No
connectOrCreate UserCreateOrConnectWithoutAdminInput No
connect UserWhereUniqueInput No






StudyUpdateManyWithoutCdpsNestedInput

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

StudyUpdateManyWithoutAuditorsNestedInput

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

StudyUncheckedUpdateManyWithoutCdpsNestedInput

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

StudyUncheckedUpdateManyWithoutAuditorsNestedInput

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



EnumNotificationLevelFieldUpdateOperationsInput

Name Type Nullable
set NotificationLevel No

BoolFieldUpdateOperationsInput

Name Type Nullable
set Boolean No

UserUpdateManyWithoutSettingsNestedInput

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

UserUncheckedUpdateManyWithoutSettingsNestedInput

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

PersonCreateNestedOneWithoutAddressInput

Name Type Nullable
create PersonCreateWithoutAddressInput | PersonUncheckedCreateWithoutAddressInput No
connectOrCreate PersonCreateOrConnectWithoutAddressInput No
connect PersonWhereUniqueInput No

CompanyCreateNestedOneWithoutAddressInput

Name Type Nullable
create CompanyCreateWithoutAddressInput | CompanyUncheckedCreateWithoutAddressInput No
connectOrCreate CompanyCreateOrConnectWithoutAddressInput No
connect CompanyWhereUniqueInput No



CompanyCreateNestedOneWithoutMembersInput

Name Type Nullable
create CompanyCreateWithoutMembersInput | CompanyUncheckedCreateWithoutMembersInput No
connectOrCreate CompanyCreateOrConnectWithoutMembersInput No
connect CompanyWhereUniqueInput No

PersonCreateNestedOneWithoutClientsInput

Name Type Nullable
create PersonCreateWithoutClientsInput | PersonUncheckedCreateWithoutClientsInput No
connectOrCreate PersonCreateOrConnectWithoutClientsInput No
connect PersonWhereUniqueInput No





StudyClientUpdateManyWithoutClientNestedInput

Name Type Nullable
create StudyClientCreateWithoutClientInput | StudyClientCreateWithoutClientInput[] | StudyClientUncheckedCreateWithoutClientInput | StudyClientUncheckedCreateWithoutClientInput[] No
connectOrCreate StudyClientCreateOrConnectWithoutClientInput | StudyClientCreateOrConnectWithoutClientInput[] No
upsert StudyClientUpsertWithWhereUniqueWithoutClientInput | StudyClientUpsertWithWhereUniqueWithoutClientInput[] No
createMany StudyClientCreateManyClientInputEnvelope No
set StudyClientWhereUniqueInput | StudyClientWhereUniqueInput[] No
disconnect StudyClientWhereUniqueInput | StudyClientWhereUniqueInput[] No
delete StudyClientWhereUniqueInput | StudyClientWhereUniqueInput[] No
connect StudyClientWhereUniqueInput | StudyClientWhereUniqueInput[] No
update StudyClientUpdateWithWhereUniqueWithoutClientInput | StudyClientUpdateWithWhereUniqueWithoutClientInput[] No
updateMany StudyClientUpdateManyWithWhereWithoutClientInput | StudyClientUpdateManyWithWhereWithoutClientInput[] No
deleteMany StudyClientScalarWhereInput | StudyClientScalarWhereInput[] No

StudyClientUncheckedUpdateManyWithoutClientNestedInput

Name Type Nullable
create StudyClientCreateWithoutClientInput | StudyClientCreateWithoutClientInput[] | StudyClientUncheckedCreateWithoutClientInput | StudyClientUncheckedCreateWithoutClientInput[] No
connectOrCreate StudyClientCreateOrConnectWithoutClientInput | StudyClientCreateOrConnectWithoutClientInput[] No
upsert StudyClientUpsertWithWhereUniqueWithoutClientInput | StudyClientUpsertWithWhereUniqueWithoutClientInput[] No
createMany StudyClientCreateManyClientInputEnvelope No
set StudyClientWhereUniqueInput | StudyClientWhereUniqueInput[] No
disconnect StudyClientWhereUniqueInput | StudyClientWhereUniqueInput[] No
delete StudyClientWhereUniqueInput | StudyClientWhereUniqueInput[] No
connect StudyClientWhereUniqueInput | StudyClientWhereUniqueInput[] No
update StudyClientUpdateWithWhereUniqueWithoutClientInput | StudyClientUpdateWithWhereUniqueWithoutClientInput[] No
updateMany StudyClientUpdateManyWithWhereWithoutClientInput | StudyClientUpdateManyWithWhereWithoutClientInput[] No
deleteMany StudyClientScalarWhereInput | StudyClientScalarWhereInput[] No

StudyCreateNestedOneWithoutClientsInput

Name Type Nullable
create StudyCreateWithoutClientsInput | StudyUncheckedCreateWithoutClientsInput No
connectOrCreate StudyCreateOrConnectWithoutClientsInput No
connect StudyWhereUniqueInput No

ClientCreateNestedOneWithoutStudyClientsInput

Name Type Nullable
create ClientCreateWithoutStudyClientsInput | ClientUncheckedCreateWithoutStudyClientsInput No
connectOrCreate ClientCreateOrConnectWithoutStudyClientsInput No
connect ClientWhereUniqueInput No

SatisfactionCreateNestedOneWithoutStudyClientInput

Name Type Nullable
create SatisfactionCreateWithoutStudyClientInput | SatisfactionUncheckedCreateWithoutStudyClientInput No
connectOrCreate SatisfactionCreateOrConnectWithoutStudyClientInput No
connect SatisfactionWhereUniqueInput No

SatisfactionUncheckedCreateNestedOneWithoutStudyClientInput

Name Type Nullable
create SatisfactionCreateWithoutStudyClientInput | SatisfactionUncheckedCreateWithoutStudyClientInput No
connectOrCreate SatisfactionCreateOrConnectWithoutStudyClientInput No
connect SatisfactionWhereUniqueInput No





StudyClientCreateNestedOneWithoutSatisfactionInput

Name Type Nullable
create StudyClientCreateWithoutSatisfactionInput | StudyClientUncheckedCreateWithoutSatisfactionInput No
connectOrCreate StudyClientCreateOrConnectWithoutSatisfactionInput No
connect StudyClientWhereUniqueInput No

StudyCreateNestedOneWithoutSatisfactionInput

Name Type Nullable
create StudyCreateWithoutSatisfactionInput | StudyUncheckedCreateWithoutSatisfactionInput No
connectOrCreate StudyCreateOrConnectWithoutSatisfactionInput No
connect StudyWhereUniqueInput No

IntFieldUpdateOperationsInput

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



AddressCreateNestedOneWithoutCompanyInput

Name Type Nullable
create AddressCreateWithoutCompanyInput | AddressUncheckedCreateWithoutCompanyInput No
connectOrCreate AddressCreateOrConnectWithoutCompanyInput No
connect AddressWhereUniqueInput No

CompanyInfosCreateNestedOneWithoutCompanyInput

Name Type Nullable
create CompanyInfosCreateWithoutCompanyInput | CompanyInfosUncheckedCreateWithoutCompanyInput No
connectOrCreate CompanyInfosCreateOrConnectWithoutCompanyInput No
connect CompanyInfosWhereUniqueInput No


AddressUncheckedCreateNestedOneWithoutCompanyInput

Name Type Nullable
create AddressCreateWithoutCompanyInput | AddressUncheckedCreateWithoutCompanyInput No
connectOrCreate AddressCreateOrConnectWithoutCompanyInput No
connect AddressWhereUniqueInput No




ClientUpdateManyWithoutCompanyNestedInput

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


ClientUncheckedUpdateManyWithoutCompanyNestedInput

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

CompanyInfosCreatedomainsInput

Name Type Nullable
set Domain[] No



CompanyInfosUpdatedomainsInput

Name Type Nullable
set Domain[] No
push Domain | Domain[] No

NullableIntFieldUpdateOperationsInput

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

NullableEnumCompanySizeFieldUpdateOperationsInput

Name Type Nullable
set CompanySize | Null Yes

CompanyUpdateManyWithoutCompanyInfosNestedInput

Name Type Nullable
create CompanyCreateWithoutCompanyInfosInput | CompanyCreateWithoutCompanyInfosInput[] | CompanyUncheckedCreateWithoutCompanyInfosInput | CompanyUncheckedCreateWithoutCompanyInfosInput[] No
connectOrCreate CompanyCreateOrConnectWithoutCompanyInfosInput | CompanyCreateOrConnectWithoutCompanyInfosInput[] No
upsert CompanyUpsertWithWhereUniqueWithoutCompanyInfosInput | CompanyUpsertWithWhereUniqueWithoutCompanyInfosInput[] No
createMany CompanyCreateManyCompanyInfosInputEnvelope No
set CompanyWhereUniqueInput | CompanyWhereUniqueInput[] No
disconnect CompanyWhereUniqueInput | CompanyWhereUniqueInput[] No
delete CompanyWhereUniqueInput | CompanyWhereUniqueInput[] No
connect CompanyWhereUniqueInput | CompanyWhereUniqueInput[] No
update CompanyUpdateWithWhereUniqueWithoutCompanyInfosInput | CompanyUpdateWithWhereUniqueWithoutCompanyInfosInput[] No
updateMany CompanyUpdateManyWithWhereWithoutCompanyInfosInput | CompanyUpdateManyWithWhereWithoutCompanyInfosInput[] No
deleteMany CompanyScalarWhereInput | CompanyScalarWhereInput[] No

CompanyUncheckedUpdateManyWithoutCompanyInfosNestedInput

Name Type Nullable
create CompanyCreateWithoutCompanyInfosInput | CompanyCreateWithoutCompanyInfosInput[] | CompanyUncheckedCreateWithoutCompanyInfosInput | CompanyUncheckedCreateWithoutCompanyInfosInput[] No
connectOrCreate CompanyCreateOrConnectWithoutCompanyInfosInput | CompanyCreateOrConnectWithoutCompanyInfosInput[] No
upsert CompanyUpsertWithWhereUniqueWithoutCompanyInfosInput | CompanyUpsertWithWhereUniqueWithoutCompanyInfosInput[] No
createMany CompanyCreateManyCompanyInfosInputEnvelope No
set CompanyWhereUniqueInput | CompanyWhereUniqueInput[] No
disconnect CompanyWhereUniqueInput | CompanyWhereUniqueInput[] No
delete CompanyWhereUniqueInput | CompanyWhereUniqueInput[] No
connect CompanyWhereUniqueInput | CompanyWhereUniqueInput[] No
update CompanyUpdateWithWhereUniqueWithoutCompanyInfosInput | CompanyUpdateWithWhereUniqueWithoutCompanyInfosInput[] No
updateMany CompanyUpdateManyWithWhereWithoutCompanyInfosInput | CompanyUpdateManyWithWhereWithoutCompanyInfosInput[] No
deleteMany CompanyScalarWhereInput | CompanyScalarWhereInput[] No

StatusCreateNestedOneWithoutDocumentInput

Name Type Nullable
create StatusCreateWithoutDocumentInput | StatusUncheckedCreateWithoutDocumentInput No
connectOrCreate StatusCreateOrConnectWithoutDocumentInput No
connect StatusWhereUniqueInput No

AssigneeDocsCreateNestedOneWithoutCniInput

Name Type Nullable
create AssigneeDocsCreateWithoutCniInput | AssigneeDocsUncheckedCreateWithoutCniInput No
connectOrCreate AssigneeDocsCreateOrConnectWithoutCniInput No
connect AssigneeDocsWhereUniqueInput No

AssigneeDocsCreateNestedOneWithoutSocialSecurityInput

Name Type Nullable
create AssigneeDocsCreateWithoutSocialSecurityInput | AssigneeDocsUncheckedCreateWithoutSocialSecurityInput No
connectOrCreate AssigneeDocsCreateOrConnectWithoutSocialSecurityInput No
connect AssigneeDocsWhereUniqueInput No

AssigneeDocsCreateNestedOneWithoutStudentCardInput

Name Type Nullable
create AssigneeDocsCreateWithoutStudentCardInput | AssigneeDocsUncheckedCreateWithoutStudentCardInput No
connectOrCreate AssigneeDocsCreateOrConnectWithoutStudentCardInput No
connect AssigneeDocsWhereUniqueInput No

AssigneeDocsUncheckedCreateNestedOneWithoutCniInput

Name Type Nullable
create AssigneeDocsCreateWithoutCniInput | AssigneeDocsUncheckedCreateWithoutCniInput No
connectOrCreate AssigneeDocsCreateOrConnectWithoutCniInput No
connect AssigneeDocsWhereUniqueInput No

AssigneeDocsUncheckedCreateNestedOneWithoutSocialSecurityInput

Name Type Nullable
create AssigneeDocsCreateWithoutSocialSecurityInput | AssigneeDocsUncheckedCreateWithoutSocialSecurityInput No
connectOrCreate AssigneeDocsCreateOrConnectWithoutSocialSecurityInput No
connect AssigneeDocsWhereUniqueInput No

AssigneeDocsUncheckedCreateNestedOneWithoutStudentCardInput

Name Type Nullable
create AssigneeDocsCreateWithoutStudentCardInput | AssigneeDocsUncheckedCreateWithoutStudentCardInput No
connectOrCreate AssigneeDocsCreateOrConnectWithoutStudentCardInput No
connect AssigneeDocsWhereUniqueInput No










NullableDateTimeFieldUpdateOperationsInput

Name Type Nullable
set DateTime | Null Yes

DocumentUpdateManyWithoutStatusNestedInput

Name Type Nullable
create DocumentCreateWithoutStatusInput | DocumentCreateWithoutStatusInput[] | DocumentUncheckedCreateWithoutStatusInput | DocumentUncheckedCreateWithoutStatusInput[] No
connectOrCreate DocumentCreateOrConnectWithoutStatusInput | DocumentCreateOrConnectWithoutStatusInput[] No
upsert DocumentUpsertWithWhereUniqueWithoutStatusInput | DocumentUpsertWithWhereUniqueWithoutStatusInput[] No
createMany DocumentCreateManyStatusInputEnvelope No
set DocumentWhereUniqueInput | DocumentWhereUniqueInput[] No
disconnect DocumentWhereUniqueInput | DocumentWhereUniqueInput[] No
delete DocumentWhereUniqueInput | DocumentWhereUniqueInput[] No
connect DocumentWhereUniqueInput | DocumentWhereUniqueInput[] No
update DocumentUpdateWithWhereUniqueWithoutStatusInput | DocumentUpdateWithWhereUniqueWithoutStatusInput[] No
updateMany DocumentUpdateManyWithWhereWithoutStatusInput | DocumentUpdateManyWithWhereWithoutStatusInput[] No
deleteMany DocumentScalarWhereInput | DocumentScalarWhereInput[] No

DocumentUncheckedUpdateManyWithoutStatusNestedInput

Name Type Nullable
create DocumentCreateWithoutStatusInput | DocumentCreateWithoutStatusInput[] | DocumentUncheckedCreateWithoutStatusInput | DocumentUncheckedCreateWithoutStatusInput[] No
connectOrCreate DocumentCreateOrConnectWithoutStatusInput | DocumentCreateOrConnectWithoutStatusInput[] No
upsert DocumentUpsertWithWhereUniqueWithoutStatusInput | DocumentUpsertWithWhereUniqueWithoutStatusInput[] No
createMany DocumentCreateManyStatusInputEnvelope No
set DocumentWhereUniqueInput | DocumentWhereUniqueInput[] No
disconnect DocumentWhereUniqueInput | DocumentWhereUniqueInput[] No
delete DocumentWhereUniqueInput | DocumentWhereUniqueInput[] No
connect DocumentWhereUniqueInput | DocumentWhereUniqueInput[] No
update DocumentUpdateWithWhereUniqueWithoutStatusInput | DocumentUpdateWithWhereUniqueWithoutStatusInput[] No
updateMany DocumentUpdateManyWithWhereWithoutStatusInput | DocumentUpdateManyWithWhereWithoutStatusInput[] No
deleteMany DocumentScalarWhereInput | DocumentScalarWhereInput[] No

StudyCreateNestedOneWithoutMriInput

Name Type Nullable
create StudyCreateWithoutMriInput | StudyUncheckedCreateWithoutMriInput No
connectOrCreate StudyCreateOrConnectWithoutMriInput No
connect StudyWhereUniqueInput No



NullableEnumLevelFieldUpdateOperationsInput

Name Type Nullable
set Level | Null Yes

NullableEnumDomainFieldUpdateOperationsInput

Name Type Nullable
set Domain | Null Yes

EnumMriStatusFieldUpdateOperationsInput

Name Type Nullable
set MriStatus No


MriFormUpdateManyWithoutMriNestedInput

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

MriFormUncheckedUpdateManyWithoutMriNestedInput

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


AssigneeInfosCreateNestedOneWithoutAssigneeInput

Name Type Nullable
create AssigneeInfosCreateWithoutAssigneeInput | AssigneeInfosUncheckedCreateWithoutAssigneeInput No
connectOrCreate AssigneeInfosCreateOrConnectWithoutAssigneeInput No
connect AssigneeInfosWhereUniqueInput No

PersonCreateNestedOneWithoutAssigneeInput

Name Type Nullable
create PersonCreateWithoutAssigneeInput | PersonUncheckedCreateWithoutAssigneeInput No
connectOrCreate PersonCreateOrConnectWithoutAssigneeInput No
connect PersonWhereUniqueInput No



AssigneeInfosUncheckedCreateNestedOneWithoutAssigneeInput

Name Type Nullable
create AssigneeInfosCreateWithoutAssigneeInput | AssigneeInfosUncheckedCreateWithoutAssigneeInput No
connectOrCreate AssigneeInfosCreateOrConnectWithoutAssigneeInput No
connect AssigneeInfosWhereUniqueInput No


AssigneeDocsUpdateManyWithoutAssigneeNestedInput

Name Type Nullable
create AssigneeDocsCreateWithoutAssigneeInput | AssigneeDocsCreateWithoutAssigneeInput[] | AssigneeDocsUncheckedCreateWithoutAssigneeInput | AssigneeDocsUncheckedCreateWithoutAssigneeInput[] No
connectOrCreate AssigneeDocsCreateOrConnectWithoutAssigneeInput | AssigneeDocsCreateOrConnectWithoutAssigneeInput[] No
upsert AssigneeDocsUpsertWithWhereUniqueWithoutAssigneeInput | AssigneeDocsUpsertWithWhereUniqueWithoutAssigneeInput[] No
createMany AssigneeDocsCreateManyAssigneeInputEnvelope No
set AssigneeDocsWhereUniqueInput | AssigneeDocsWhereUniqueInput[] No
disconnect AssigneeDocsWhereUniqueInput | AssigneeDocsWhereUniqueInput[] No
delete AssigneeDocsWhereUniqueInput | AssigneeDocsWhereUniqueInput[] No
connect AssigneeDocsWhereUniqueInput | AssigneeDocsWhereUniqueInput[] No
update AssigneeDocsUpdateWithWhereUniqueWithoutAssigneeInput | AssigneeDocsUpdateWithWhereUniqueWithoutAssigneeInput[] No
updateMany AssigneeDocsUpdateManyWithWhereWithoutAssigneeInput | AssigneeDocsUpdateManyWithWhereWithoutAssigneeInput[] No
deleteMany AssigneeDocsScalarWhereInput | AssigneeDocsScalarWhereInput[] No



StudyAssigneeUpdateManyWithoutAssigneeNestedInput

Name Type Nullable
create StudyAssigneeCreateWithoutAssigneeInput | StudyAssigneeCreateWithoutAssigneeInput[] | StudyAssigneeUncheckedCreateWithoutAssigneeInput | StudyAssigneeUncheckedCreateWithoutAssigneeInput[] No
connectOrCreate StudyAssigneeCreateOrConnectWithoutAssigneeInput | StudyAssigneeCreateOrConnectWithoutAssigneeInput[] No
upsert StudyAssigneeUpsertWithWhereUniqueWithoutAssigneeInput | StudyAssigneeUpsertWithWhereUniqueWithoutAssigneeInput[] No
createMany StudyAssigneeCreateManyAssigneeInputEnvelope No
set StudyAssigneeWhereUniqueInput | StudyAssigneeWhereUniqueInput[] No
disconnect StudyAssigneeWhereUniqueInput | StudyAssigneeWhereUniqueInput[] No
delete StudyAssigneeWhereUniqueInput | StudyAssigneeWhereUniqueInput[] No
connect StudyAssigneeWhereUniqueInput | StudyAssigneeWhereUniqueInput[] No
update StudyAssigneeUpdateWithWhereUniqueWithoutAssigneeInput | StudyAssigneeUpdateWithWhereUniqueWithoutAssigneeInput[] No
updateMany StudyAssigneeUpdateManyWithWhereWithoutAssigneeInput | StudyAssigneeUpdateManyWithWhereWithoutAssigneeInput[] No
deleteMany StudyAssigneeScalarWhereInput | StudyAssigneeScalarWhereInput[] No

AssigneeDocsUncheckedUpdateManyWithoutAssigneeNestedInput

Name Type Nullable
create AssigneeDocsCreateWithoutAssigneeInput | AssigneeDocsCreateWithoutAssigneeInput[] | AssigneeDocsUncheckedCreateWithoutAssigneeInput | AssigneeDocsUncheckedCreateWithoutAssigneeInput[] No
connectOrCreate AssigneeDocsCreateOrConnectWithoutAssigneeInput | AssigneeDocsCreateOrConnectWithoutAssigneeInput[] No
upsert AssigneeDocsUpsertWithWhereUniqueWithoutAssigneeInput | AssigneeDocsUpsertWithWhereUniqueWithoutAssigneeInput[] No
createMany AssigneeDocsCreateManyAssigneeInputEnvelope No
set AssigneeDocsWhereUniqueInput | AssigneeDocsWhereUniqueInput[] No
disconnect AssigneeDocsWhereUniqueInput | AssigneeDocsWhereUniqueInput[] No
delete AssigneeDocsWhereUniqueInput | AssigneeDocsWhereUniqueInput[] No
connect AssigneeDocsWhereUniqueInput | AssigneeDocsWhereUniqueInput[] No
update AssigneeDocsUpdateWithWhereUniqueWithoutAssigneeInput | AssigneeDocsUpdateWithWhereUniqueWithoutAssigneeInput[] No
updateMany AssigneeDocsUpdateManyWithWhereWithoutAssigneeInput | AssigneeDocsUpdateManyWithWhereWithoutAssigneeInput[] No
deleteMany AssigneeDocsScalarWhereInput | AssigneeDocsScalarWhereInput[] No


StudyAssigneeUncheckedUpdateManyWithoutAssigneeNestedInput

Name Type Nullable
create StudyAssigneeCreateWithoutAssigneeInput | StudyAssigneeCreateWithoutAssigneeInput[] | StudyAssigneeUncheckedCreateWithoutAssigneeInput | StudyAssigneeUncheckedCreateWithoutAssigneeInput[] No
connectOrCreate StudyAssigneeCreateOrConnectWithoutAssigneeInput | StudyAssigneeCreateOrConnectWithoutAssigneeInput[] No
upsert StudyAssigneeUpsertWithWhereUniqueWithoutAssigneeInput | StudyAssigneeUpsertWithWhereUniqueWithoutAssigneeInput[] No
createMany StudyAssigneeCreateManyAssigneeInputEnvelope No
set StudyAssigneeWhereUniqueInput | StudyAssigneeWhereUniqueInput[] No
disconnect StudyAssigneeWhereUniqueInput | StudyAssigneeWhereUniqueInput[] No
delete StudyAssigneeWhereUniqueInput | StudyAssigneeWhereUniqueInput[] No
connect StudyAssigneeWhereUniqueInput | StudyAssigneeWhereUniqueInput[] No
update StudyAssigneeUpdateWithWhereUniqueWithoutAssigneeInput | StudyAssigneeUpdateWithWhereUniqueWithoutAssigneeInput[] No
updateMany StudyAssigneeUpdateManyWithWhereWithoutAssigneeInput | StudyAssigneeUpdateManyWithWhereWithoutAssigneeInput[] No
deleteMany StudyAssigneeScalarWhereInput | StudyAssigneeScalarWhereInput[] No

AssigneeCreateNestedOneWithoutInformationInput

Name Type Nullable
create AssigneeCreateWithoutInformationInput | AssigneeUncheckedCreateWithoutInformationInput No
connectOrCreate AssigneeCreateOrConnectWithoutInformationInput No
connect AssigneeWhereUniqueInput No


AssigneeCreateNestedOneWithoutDocsInput

Name Type Nullable
create AssigneeCreateWithoutDocsInput | AssigneeUncheckedCreateWithoutDocsInput No
connectOrCreate AssigneeCreateOrConnectWithoutDocsInput No
connect AssigneeWhereUniqueInput No

DocumentCreateNestedOneWithoutAssigneeCniInput

Name Type Nullable
create DocumentCreateWithoutAssigneeCniInput | DocumentUncheckedCreateWithoutAssigneeCniInput No
connectOrCreate DocumentCreateOrConnectWithoutAssigneeCniInput No
connect DocumentWhereUniqueInput No

DocumentCreateNestedOneWithoutAssigneeSocialSecurityInput

Name Type Nullable
create DocumentCreateWithoutAssigneeSocialSecurityInput | DocumentUncheckedCreateWithoutAssigneeSocialSecurityInput No
connectOrCreate DocumentCreateOrConnectWithoutAssigneeSocialSecurityInput No
connect DocumentWhereUniqueInput No

DocumentCreateNestedOneWithoutAssigneeStudentCardInput

Name Type Nullable
create DocumentCreateWithoutAssigneeStudentCardInput | DocumentUncheckedCreateWithoutAssigneeStudentCardInput No
connectOrCreate DocumentCreateOrConnectWithoutAssigneeStudentCardInput No
connect DocumentWhereUniqueInput No





StudyCreateNestedOneWithoutStudyAssigneesInput

Name Type Nullable
create StudyCreateWithoutStudyAssigneesInput | StudyUncheckedCreateWithoutStudyAssigneesInput No
connectOrCreate StudyCreateOrConnectWithoutStudyAssigneesInput No
connect StudyWhereUniqueInput No

AssigneeCreateNestedOneWithoutStudyAssignInput

Name Type Nullable
create AssigneeCreateWithoutStudyAssignInput | AssigneeUncheckedCreateWithoutStudyAssignInput No
connectOrCreate AssigneeCreateOrConnectWithoutStudyAssignInput No
connect AssigneeWhereUniqueInput No


MriFormCreateNestedOneWithoutStudyAssigneesInput

Name Type Nullable
create MriFormCreateWithoutStudyAssigneesInput | MriFormUncheckedCreateWithoutStudyAssigneesInput No
connectOrCreate MriFormCreateOrConnectWithoutStudyAssigneesInput No
connect MriFormWhereUniqueInput No





MriCreateNestedOneWithoutFormMRIsInput

Name Type Nullable
create MriCreateWithoutFormMRIsInput | MriUncheckedCreateWithoutFormMRIsInput No
connectOrCreate MriCreateOrConnectWithoutFormMRIsInput No
connect MriWhereUniqueInput No

StudyAssigneeCreateNestedOneWithoutMriFormInput

Name Type Nullable
create StudyAssigneeCreateWithoutMriFormInput | StudyAssigneeUncheckedCreateWithoutMriFormInput No
connectOrCreate StudyAssigneeCreateOrConnectWithoutMriFormInput No
connect StudyAssigneeWhereUniqueInput No

StudyAssigneeUncheckedCreateNestedOneWithoutMriFormInput

Name Type Nullable
create StudyAssigneeCreateWithoutMriFormInput | StudyAssigneeUncheckedCreateWithoutMriFormInput No
connectOrCreate StudyAssigneeCreateOrConnectWithoutMriFormInput No
connect StudyAssigneeWhereUniqueInput No




StudyAssigneeCreateNestedOneWithoutFormInterviewInput

Name Type Nullable
create StudyAssigneeCreateWithoutFormInterviewInput | StudyAssigneeUncheckedCreateWithoutFormInterviewInput No
connectOrCreate StudyAssigneeCreateOrConnectWithoutFormInterviewInput No
connect StudyAssigneeWhereUniqueInput No

StudyAssigneeUncheckedCreateNestedOneWithoutFormInterviewInput

Name Type Nullable
create StudyAssigneeCreateWithoutFormInterviewInput | StudyAssigneeUncheckedCreateWithoutFormInterviewInput No
connectOrCreate StudyAssigneeCreateOrConnectWithoutFormInterviewInput No
connect StudyAssigneeWhereUniqueInput No





StudyInfosCreateNestedOneWithoutStudyInput

Name Type Nullable
create StudyInfosCreateWithoutStudyInput | StudyInfosUncheckedCreateWithoutStudyInput No
connectOrCreate StudyInfosCreateOrConnectWithoutStudyInput No
connect StudyInfosWhereUniqueInput No

StudyProceedingsCreateNestedOneWithoutStudyInput

Name Type Nullable
create StudyProceedingsCreateWithoutStudyInput | StudyProceedingsUncheckedCreateWithoutStudyInput No
connectOrCreate StudyProceedingsCreateOrConnectWithoutStudyInput No
connect StudyProceedingsWhereUniqueInput No


MriCreateNestedOneWithoutStudyInput

Name Type Nullable
create MriCreateWithoutStudyInput | MriUncheckedCreateWithoutStudyInput No
connectOrCreate MriCreateOrConnectWithoutStudyInput No
connect MriWhereUniqueInput No


SatisfactionCreateNestedOneWithoutStudyInput

Name Type Nullable
create SatisfactionCreateWithoutStudyInput | SatisfactionUncheckedCreateWithoutStudyInput No
connectOrCreate SatisfactionCreateOrConnectWithoutStudyInput No
connect SatisfactionWhereUniqueInput No



StudyProceedingsUncheckedCreateNestedOneWithoutStudyInput

Name Type Nullable
create StudyProceedingsCreateWithoutStudyInput | StudyProceedingsUncheckedCreateWithoutStudyInput No
connectOrCreate StudyProceedingsCreateOrConnectWithoutStudyInput No
connect StudyProceedingsWhereUniqueInput No


MriUncheckedCreateNestedOneWithoutStudyInput

Name Type Nullable
create MriCreateWithoutStudyInput | MriUncheckedCreateWithoutStudyInput No
connectOrCreate MriCreateOrConnectWithoutStudyInput No
connect MriWhereUniqueInput No


SatisfactionUncheckedCreateNestedOneWithoutStudyInput

Name Type Nullable
create SatisfactionCreateWithoutStudyInput | SatisfactionUncheckedCreateWithoutStudyInput No
connectOrCreate SatisfactionCreateOrConnectWithoutStudyInput No
connect SatisfactionWhereUniqueInput No

AdminUpdateManyWithoutStudiesNestedInput

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

AdminUpdateManyWithoutAuditedStudiesNestedInput

Name Type Nullable
create AdminCreateWithoutAuditedStudiesInput | AdminCreateWithoutAuditedStudiesInput[] | AdminUncheckedCreateWithoutAuditedStudiesInput | AdminUncheckedCreateWithoutAuditedStudiesInput[] No
connectOrCreate AdminCreateOrConnectWithoutAuditedStudiesInput | AdminCreateOrConnectWithoutAuditedStudiesInput[] No
upsert AdminUpsertWithWhereUniqueWithoutAuditedStudiesInput | AdminUpsertWithWhereUniqueWithoutAuditedStudiesInput[] No
set AdminWhereUniqueInput | AdminWhereUniqueInput[] No
disconnect AdminWhereUniqueInput | AdminWhereUniqueInput[] No
delete AdminWhereUniqueInput | AdminWhereUniqueInput[] No
connect AdminWhereUniqueInput | AdminWhereUniqueInput[] No
update AdminUpdateWithWhereUniqueWithoutAuditedStudiesInput | AdminUpdateWithWhereUniqueWithoutAuditedStudiesInput[] No
updateMany AdminUpdateManyWithWhereWithoutAuditedStudiesInput | AdminUpdateManyWithWhereWithoutAuditedStudiesInput[] No
deleteMany AdminScalarWhereInput | AdminScalarWhereInput[] No



StudyClientUpdateManyWithoutStudyNestedInput

Name Type Nullable
create StudyClientCreateWithoutStudyInput | StudyClientCreateWithoutStudyInput[] | StudyClientUncheckedCreateWithoutStudyInput | StudyClientUncheckedCreateWithoutStudyInput[] No
connectOrCreate StudyClientCreateOrConnectWithoutStudyInput | StudyClientCreateOrConnectWithoutStudyInput[] No
upsert StudyClientUpsertWithWhereUniqueWithoutStudyInput | StudyClientUpsertWithWhereUniqueWithoutStudyInput[] No
createMany StudyClientCreateManyStudyInputEnvelope No
set StudyClientWhereUniqueInput | StudyClientWhereUniqueInput[] No
disconnect StudyClientWhereUniqueInput | StudyClientWhereUniqueInput[] No
delete StudyClientWhereUniqueInput | StudyClientWhereUniqueInput[] No
connect StudyClientWhereUniqueInput | StudyClientWhereUniqueInput[] No
update StudyClientUpdateWithWhereUniqueWithoutStudyInput | StudyClientUpdateWithWhereUniqueWithoutStudyInput[] No
updateMany StudyClientUpdateManyWithWhereWithoutStudyInput | StudyClientUpdateManyWithWhereWithoutStudyInput[] No
deleteMany StudyClientScalarWhereInput | StudyClientScalarWhereInput[] No


StudyAssigneeUpdateManyWithoutStudyNestedInput

Name Type Nullable
create StudyAssigneeCreateWithoutStudyInput | StudyAssigneeCreateWithoutStudyInput[] | StudyAssigneeUncheckedCreateWithoutStudyInput | StudyAssigneeUncheckedCreateWithoutStudyInput[] No
connectOrCreate StudyAssigneeCreateOrConnectWithoutStudyInput | StudyAssigneeCreateOrConnectWithoutStudyInput[] No
upsert StudyAssigneeUpsertWithWhereUniqueWithoutStudyInput | StudyAssigneeUpsertWithWhereUniqueWithoutStudyInput[] No
createMany StudyAssigneeCreateManyStudyInputEnvelope No
set StudyAssigneeWhereUniqueInput | StudyAssigneeWhereUniqueInput[] No
disconnect StudyAssigneeWhereUniqueInput | StudyAssigneeWhereUniqueInput[] No
delete StudyAssigneeWhereUniqueInput | StudyAssigneeWhereUniqueInput[] No
connect StudyAssigneeWhereUniqueInput | StudyAssigneeWhereUniqueInput[] No
update StudyAssigneeUpdateWithWhereUniqueWithoutStudyInput | StudyAssigneeUpdateWithWhereUniqueWithoutStudyInput[] No
updateMany StudyAssigneeUpdateManyWithWhereWithoutStudyInput | StudyAssigneeUpdateManyWithWhereWithoutStudyInput[] No
deleteMany StudyAssigneeScalarWhereInput | StudyAssigneeScalarWhereInput[] No


AdminUncheckedUpdateManyWithoutStudiesNestedInput

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

AdminUncheckedUpdateManyWithoutAuditedStudiesNestedInput

Name Type Nullable
create AdminCreateWithoutAuditedStudiesInput | AdminCreateWithoutAuditedStudiesInput[] | AdminUncheckedCreateWithoutAuditedStudiesInput | AdminUncheckedCreateWithoutAuditedStudiesInput[] No
connectOrCreate AdminCreateOrConnectWithoutAuditedStudiesInput | AdminCreateOrConnectWithoutAuditedStudiesInput[] No
upsert AdminUpsertWithWhereUniqueWithoutAuditedStudiesInput | AdminUpsertWithWhereUniqueWithoutAuditedStudiesInput[] No
set AdminWhereUniqueInput | AdminWhereUniqueInput[] No
disconnect AdminWhereUniqueInput | AdminWhereUniqueInput[] No
delete AdminWhereUniqueInput | AdminWhereUniqueInput[] No
connect AdminWhereUniqueInput | AdminWhereUniqueInput[] No
update AdminUpdateWithWhereUniqueWithoutAuditedStudiesInput | AdminUpdateWithWhereUniqueWithoutAuditedStudiesInput[] No
updateMany AdminUpdateManyWithWhereWithoutAuditedStudiesInput | AdminUpdateManyWithWhereWithoutAuditedStudiesInput[] No
deleteMany AdminScalarWhereInput | AdminScalarWhereInput[] No


StudyClientUncheckedUpdateManyWithoutStudyNestedInput

Name Type Nullable
create StudyClientCreateWithoutStudyInput | StudyClientCreateWithoutStudyInput[] | StudyClientUncheckedCreateWithoutStudyInput | StudyClientUncheckedCreateWithoutStudyInput[] No
connectOrCreate StudyClientCreateOrConnectWithoutStudyInput | StudyClientCreateOrConnectWithoutStudyInput[] No
upsert StudyClientUpsertWithWhereUniqueWithoutStudyInput | StudyClientUpsertWithWhereUniqueWithoutStudyInput[] No
createMany StudyClientCreateManyStudyInputEnvelope No
set StudyClientWhereUniqueInput | StudyClientWhereUniqueInput[] No
disconnect StudyClientWhereUniqueInput | StudyClientWhereUniqueInput[] No
delete StudyClientWhereUniqueInput | StudyClientWhereUniqueInput[] No
connect StudyClientWhereUniqueInput | StudyClientWhereUniqueInput[] No
update StudyClientUpdateWithWhereUniqueWithoutStudyInput | StudyClientUpdateWithWhereUniqueWithoutStudyInput[] No
updateMany StudyClientUpdateManyWithWhereWithoutStudyInput | StudyClientUpdateManyWithWhereWithoutStudyInput[] No
deleteMany StudyClientScalarWhereInput | StudyClientScalarWhereInput[] No

MriUncheckedUpdateOneWithoutStudyNestedInput

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

StudyAssigneeUncheckedUpdateManyWithoutStudyNestedInput

Name Type Nullable
create StudyAssigneeCreateWithoutStudyInput | StudyAssigneeCreateWithoutStudyInput[] | StudyAssigneeUncheckedCreateWithoutStudyInput | StudyAssigneeUncheckedCreateWithoutStudyInput[] No
connectOrCreate StudyAssigneeCreateOrConnectWithoutStudyInput | StudyAssigneeCreateOrConnectWithoutStudyInput[] No
upsert StudyAssigneeUpsertWithWhereUniqueWithoutStudyInput | StudyAssigneeUpsertWithWhereUniqueWithoutStudyInput[] No
createMany StudyAssigneeCreateManyStudyInputEnvelope No
set StudyAssigneeWhereUniqueInput | StudyAssigneeWhereUniqueInput[] No
disconnect StudyAssigneeWhereUniqueInput | StudyAssigneeWhereUniqueInput[] No
delete StudyAssigneeWhereUniqueInput | StudyAssigneeWhereUniqueInput[] No
connect StudyAssigneeWhereUniqueInput | StudyAssigneeWhereUniqueInput[] No
update StudyAssigneeUpdateWithWhereUniqueWithoutStudyInput | StudyAssigneeUpdateWithWhereUniqueWithoutStudyInput[] No
updateMany StudyAssigneeUpdateManyWithWhereWithoutStudyInput | StudyAssigneeUpdateManyWithWhereWithoutStudyInput[] No
deleteMany StudyAssigneeScalarWhereInput | StudyAssigneeScalarWhereInput[] No


StudyInfosCreatedomainsInput

Name Type Nullable
set Domain[] No

StudyCreateNestedOneWithoutInformationInput

Name Type Nullable
create StudyCreateWithoutInformationInput | StudyUncheckedCreateWithoutInformationInput No
connectOrCreate StudyCreateOrConnectWithoutInformationInput No
connect StudyWhereUniqueInput No

StudyUncheckedCreateNestedOneWithoutInformationInput

Name Type Nullable
create StudyCreateWithoutInformationInput | StudyUncheckedCreateWithoutInformationInput No
connectOrCreate StudyCreateOrConnectWithoutInformationInput No
connect StudyWhereUniqueInput No

FloatFieldUpdateOperationsInput

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

StudyInfosUpdatedomainsInput

Name Type Nullable
set Domain[] No
push Domain | Domain[] No




StudyCreateNestedOneWithoutStudyProceedingsInput

Name Type Nullable
create StudyCreateWithoutStudyProceedingsInput | StudyUncheckedCreateWithoutStudyProceedingsInput No
connectOrCreate StudyCreateOrConnectWithoutStudyProceedingsInput No
connect StudyWhereUniqueInput No


EnumStudyProgressStepFieldUpdateOperationsInput

Name Type Nullable
set StudyProgressStep No

PhaseUpdateManyWithoutStudyProceedingsNestedInput

Name Type Nullable
create PhaseCreateWithoutStudyProceedingsInput | PhaseCreateWithoutStudyProceedingsInput[] | PhaseUncheckedCreateWithoutStudyProceedingsInput | PhaseUncheckedCreateWithoutStudyProceedingsInput[] No
connectOrCreate PhaseCreateOrConnectWithoutStudyProceedingsInput | PhaseCreateOrConnectWithoutStudyProceedingsInput[] No
upsert PhaseUpsertWithWhereUniqueWithoutStudyProceedingsInput | PhaseUpsertWithWhereUniqueWithoutStudyProceedingsInput[] No
createMany PhaseCreateManyStudyProceedingsInputEnvelope No
set PhaseWhereUniqueInput | PhaseWhereUniqueInput[] No
disconnect PhaseWhereUniqueInput | PhaseWhereUniqueInput[] No
delete PhaseWhereUniqueInput | PhaseWhereUniqueInput[] No
connect PhaseWhereUniqueInput | PhaseWhereUniqueInput[] No
update PhaseUpdateWithWhereUniqueWithoutStudyProceedingsInput | PhaseUpdateWithWhereUniqueWithoutStudyProceedingsInput[] No
updateMany PhaseUpdateManyWithWhereWithoutStudyProceedingsInput | PhaseUpdateManyWithWhereWithoutStudyProceedingsInput[] No
deleteMany PhaseScalarWhereInput | PhaseScalarWhereInput[] No


PhaseUncheckedUpdateManyWithoutStudyProceedingsNestedInput

Name Type Nullable
create PhaseCreateWithoutStudyProceedingsInput | PhaseCreateWithoutStudyProceedingsInput[] | PhaseUncheckedCreateWithoutStudyProceedingsInput | PhaseUncheckedCreateWithoutStudyProceedingsInput[] No
connectOrCreate PhaseCreateOrConnectWithoutStudyProceedingsInput | PhaseCreateOrConnectWithoutStudyProceedingsInput[] No
upsert PhaseUpsertWithWhereUniqueWithoutStudyProceedingsInput | PhaseUpsertWithWhereUniqueWithoutStudyProceedingsInput[] No
createMany PhaseCreateManyStudyProceedingsInputEnvelope No
set PhaseWhereUniqueInput | PhaseWhereUniqueInput[] No
disconnect PhaseWhereUniqueInput | PhaseWhereUniqueInput[] No
delete PhaseWhereUniqueInput | PhaseWhereUniqueInput[] No
connect PhaseWhereUniqueInput | PhaseWhereUniqueInput[] No
update PhaseUpdateWithWhereUniqueWithoutStudyProceedingsInput | PhaseUpdateWithWhereUniqueWithoutStudyProceedingsInput[] No
updateMany PhaseUpdateManyWithWhereWithoutStudyProceedingsInput | PhaseUpdateManyWithWhereWithoutStudyProceedingsInput[] No
deleteMany PhaseScalarWhereInput | PhaseScalarWhereInput[] No

DeliverableCreateNestedOneWithoutPhaseInput

Name Type Nullable
create DeliverableCreateWithoutPhaseInput | DeliverableUncheckedCreateWithoutPhaseInput No
connectOrCreate DeliverableCreateOrConnectWithoutPhaseInput No
connect DeliverableWhereUniqueInput No

StudyProceedingsCreateNestedOneWithoutPhasesInput

Name Type Nullable
create StudyProceedingsCreateWithoutPhasesInput | StudyProceedingsUncheckedCreateWithoutPhasesInput No
connectOrCreate StudyProceedingsCreateOrConnectWithoutPhasesInput No
connect StudyProceedingsWhereUniqueInput No

DeliverableUncheckedCreateNestedOneWithoutPhaseInput

Name Type Nullable
create DeliverableCreateWithoutPhaseInput | DeliverableUncheckedCreateWithoutPhaseInput No
connectOrCreate DeliverableCreateOrConnectWithoutPhaseInput No
connect DeliverableWhereUniqueInput No




PhaseCreateNestedOneWithoutDeliverableInput

Name Type Nullable
create PhaseCreateWithoutDeliverableInput | PhaseUncheckedCreateWithoutDeliverableInput No
connectOrCreate PhaseCreateOrConnectWithoutDeliverableInput No
connect PhaseWhereUniqueInput No

EnumDeliverableStatusFieldUpdateOperationsInput

Name Type Nullable
set DeliverableStatus No


NestedStringFilter

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

NestedStringNullableFilter

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

NestedStringWithAggregatesFilter

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

NestedIntFilter

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

NestedStringNullableWithAggregatesFilter

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

NestedIntNullableFilter

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


NestedBoolFilter

Name Type Nullable
equals Boolean | BooleanFieldRefInput No
not Boolean | NestedBoolFilter No


NestedBoolWithAggregatesFilter

Name Type Nullable
equals Boolean | BooleanFieldRefInput No
not Boolean | NestedBoolWithAggregatesFilter No
_count NestedIntFilter No
_min NestedBoolFilter No
_max NestedBoolFilter No

NestedIntWithAggregatesFilter

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

NestedFloatFilter

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

NestedEnumCompanySizeNullableFilter

Name Type Nullable
equals CompanySize | EnumCompanySizeFieldRefInput | Null Yes
in CompanySize[] | ListEnumCompanySizeFieldRefInput | Null Yes
notIn CompanySize[] | ListEnumCompanySizeFieldRefInput | Null Yes
not CompanySize | NestedEnumCompanySizeNullableFilter | Null Yes

NestedIntNullableWithAggregatesFilter

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

NestedFloatNullableFilter

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


NestedDateTimeNullableFilter

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

NestedDateTimeNullableWithAggregatesFilter

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

NestedEnumLevelNullableFilter

Name Type Nullable
equals Level | EnumLevelFieldRefInput | Null Yes
in Level[] | ListEnumLevelFieldRefInput | Null Yes
notIn Level[] | ListEnumLevelFieldRefInput | Null Yes
not Level | NestedEnumLevelNullableFilter | Null Yes

NestedEnumDomainNullableFilter

Name Type Nullable
equals Domain | EnumDomainFieldRefInput | Null Yes
in Domain[] | ListEnumDomainFieldRefInput | Null Yes
notIn Domain[] | ListEnumDomainFieldRefInput | Null Yes
not Domain | NestedEnumDomainNullableFilter | Null Yes


NestedEnumLevelNullableWithAggregatesFilter

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

NestedEnumDomainNullableWithAggregatesFilter

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


NestedFloatWithAggregatesFilter

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





AddressCreateWithoutPersonInput

Name Type Nullable
id String No
streetNumber String No
streetName String No
city String No
zipCode String No
country String No
Company CompanyCreateNestedOneWithoutAddressInput No

AddressUncheckedCreateWithoutPersonInput

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

AddressCreateOrConnectWithoutPersonInput

Name Type Nullable
where AddressWhereUniqueInput No
create AddressCreateWithoutPersonInput | AddressUncheckedCreateWithoutPersonInput No

UserCreateWithoutPersonInput

Name Type Nullable
id String No
settings UserSettingsCreateNestedOneWithoutUserInput No
admin AdminCreateNestedOneWithoutUserInput No

UserUncheckedCreateWithoutPersonInput

Name Type Nullable
id String No
userSettingsId String | Null Yes
admin AdminUncheckedCreateNestedOneWithoutUserInput No

UserCreateOrConnectWithoutPersonInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutPersonInput | UserUncheckedCreateWithoutPersonInput No

AssigneeCreateWithoutPersonInput

Name Type Nullable
id String No
nbApplications Int No
docs AssigneeDocsCreateNestedManyWithoutAssigneeInput No
information AssigneeInfosCreateNestedOneWithoutAssigneeInput No
studyAssign StudyAssigneeCreateNestedManyWithoutAssigneeInput No

AssigneeUncheckedCreateWithoutPersonInput

Name Type Nullable
id String No
nbApplications Int No
docs AssigneeDocsUncheckedCreateNestedManyWithoutAssigneeInput No
information AssigneeInfosUncheckedCreateNestedOneWithoutAssigneeInput No
studyAssign StudyAssigneeUncheckedCreateNestedManyWithoutAssigneeInput No

AssigneeCreateOrConnectWithoutPersonInput

Name Type Nullable
where AssigneeWhereUniqueInput No
create AssigneeCreateWithoutPersonInput | AssigneeUncheckedCreateWithoutPersonInput No

ClientCreateWithoutPersonInput

Name Type Nullable
id String No
privateIndividual Boolean No
job String No
company CompanyCreateNestedOneWithoutMembersInput No
studyClients StudyClientCreateNestedManyWithoutClientInput No

ClientUncheckedCreateWithoutPersonInput

Name Type Nullable
id String No
privateIndividual Boolean No
companyId String | Null Yes
job String No
studyClients StudyClientUncheckedCreateNestedManyWithoutClientInput No

ClientCreateOrConnectWithoutPersonInput

Name Type Nullable
where ClientWhereUniqueInput No
create ClientCreateWithoutPersonInput | ClientUncheckedCreateWithoutPersonInput No


AddressUpdateToOneWithWhereWithoutPersonInput

Name Type Nullable
where AddressWhereInput No
data AddressUpdateWithoutPersonInput | AddressUncheckedUpdateWithoutPersonInput No

AddressUpdateWithoutPersonInput

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

AddressUncheckedUpdateWithoutPersonInput

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


UserUpdateToOneWithWhereWithoutPersonInput

Name Type Nullable
where UserWhereInput No
data UserUpdateWithoutPersonInput | UserUncheckedUpdateWithoutPersonInput No

UserUpdateWithoutPersonInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
settings UserSettingsUpdateOneWithoutUserNestedInput No
admin AdminUpdateOneWithoutUserNestedInput No

UserUncheckedUpdateWithoutPersonInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
userSettingsId String | NullableStringFieldUpdateOperationsInput | Null Yes
admin AdminUncheckedUpdateOneWithoutUserNestedInput No


AssigneeUpdateToOneWithWhereWithoutPersonInput

Name Type Nullable
where AssigneeWhereInput No
data AssigneeUpdateWithoutPersonInput | AssigneeUncheckedUpdateWithoutPersonInput No




ClientUpdateToOneWithWhereWithoutPersonInput

Name Type Nullable
where ClientWhereInput No
data ClientUpdateWithoutPersonInput | ClientUncheckedUpdateWithoutPersonInput No

ClientUpdateWithoutPersonInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
privateIndividual Boolean | BoolFieldUpdateOperationsInput No
job String | StringFieldUpdateOperationsInput No
company CompanyUpdateOneWithoutMembersNestedInput No
studyClients StudyClientUpdateManyWithoutClientNestedInput No

ClientUncheckedUpdateWithoutPersonInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
privateIndividual Boolean | BoolFieldUpdateOperationsInput No
companyId String | NullableStringFieldUpdateOperationsInput | Null Yes
job String | StringFieldUpdateOperationsInput No
studyClients StudyClientUncheckedUpdateManyWithoutClientNestedInput No

PersonCreateWithoutUserInput

Name Type Nullable
id String No
email String | Null Yes
firstName String No
lastName String No
number String | Null Yes
address AddressCreateNestedOneWithoutPersonInput No
assignee AssigneeCreateNestedOneWithoutPersonInput No
clients ClientCreateNestedOneWithoutPersonInput No

PersonUncheckedCreateWithoutUserInput

Name Type Nullable
id String No
email String | Null Yes
firstName String No
lastName String No
number String | Null Yes
address AddressUncheckedCreateNestedOneWithoutPersonInput No
assignee AssigneeUncheckedCreateNestedOneWithoutPersonInput No
clients ClientUncheckedCreateNestedOneWithoutPersonInput No

PersonCreateOrConnectWithoutUserInput

Name Type Nullable
where PersonWhereUniqueInput No
create PersonCreateWithoutUserInput | PersonUncheckedCreateWithoutUserInput No

UserSettingsCreateWithoutUserInput

Name Type Nullable
id String No
theme String No
notificationLevel NotificationLevel No
gui Boolean No

UserSettingsUncheckedCreateWithoutUserInput

Name Type Nullable
id String No
theme String No
notificationLevel NotificationLevel No
gui Boolean No

UserSettingsCreateOrConnectWithoutUserInput

Name Type Nullable
where UserSettingsWhereUniqueInput No
create UserSettingsCreateWithoutUserInput | UserSettingsUncheckedCreateWithoutUserInput No

AdminCreateWithoutUserInput

Name Type Nullable
id String No
position String | Null Yes
image String | Null Yes
studies StudyCreateNestedManyWithoutCdpsInput No
auditedStudies StudyCreateNestedManyWithoutAuditorsInput No

AdminUncheckedCreateWithoutUserInput

Name Type Nullable
id String No
position String | Null Yes
image String | Null Yes
studies StudyUncheckedCreateNestedManyWithoutCdpsInput No
auditedStudies StudyUncheckedCreateNestedManyWithoutAuditorsInput No

AdminCreateOrConnectWithoutUserInput

Name Type Nullable
where AdminWhereUniqueInput No
create AdminCreateWithoutUserInput | AdminUncheckedCreateWithoutUserInput No


PersonUpdateToOneWithWhereWithoutUserInput

Name Type Nullable
where PersonWhereInput No
data PersonUpdateWithoutUserInput | PersonUncheckedUpdateWithoutUserInput No

PersonUpdateWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
email 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



UserSettingsUpdateToOneWithWhereWithoutUserInput

Name Type Nullable
where UserSettingsWhereInput No
data UserSettingsUpdateWithoutUserInput | UserSettingsUncheckedUpdateWithoutUserInput No

UserSettingsUpdateWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
theme String | StringFieldUpdateOperationsInput No
notificationLevel NotificationLevel | EnumNotificationLevelFieldUpdateOperationsInput No
gui Boolean | BoolFieldUpdateOperationsInput No

UserSettingsUncheckedUpdateWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
theme String | StringFieldUpdateOperationsInput No
notificationLevel NotificationLevel | EnumNotificationLevelFieldUpdateOperationsInput No
gui Boolean | BoolFieldUpdateOperationsInput No


AdminUpdateToOneWithWhereWithoutUserInput

Name Type Nullable
where AdminWhereInput No
data AdminUpdateWithoutUserInput | AdminUncheckedUpdateWithoutUserInput No

AdminUpdateWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
position String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
studies StudyUpdateManyWithoutCdpsNestedInput No
auditedStudies StudyUpdateManyWithoutAuditorsNestedInput No

AdminUncheckedUpdateWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
position String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
studies StudyUncheckedUpdateManyWithoutCdpsNestedInput No
auditedStudies StudyUncheckedUpdateManyWithoutAuditorsNestedInput No

UserCreateWithoutAdminInput

Name Type Nullable
id String No
person PersonCreateNestedOneWithoutUserInput No
settings UserSettingsCreateNestedOneWithoutUserInput No

UserUncheckedCreateWithoutAdminInput

Name Type Nullable
id String No
personId String No
userSettingsId String | Null Yes

UserCreateOrConnectWithoutAdminInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutAdminInput | UserUncheckedCreateWithoutAdminInput No

StudyCreateWithoutCdpsInput

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

StudyUncheckedCreateWithoutCdpsInput

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

StudyCreateOrConnectWithoutCdpsInput

Name Type Nullable
where StudyWhereUniqueInput No
create StudyCreateWithoutCdpsInput | StudyUncheckedCreateWithoutCdpsInput No

StudyCreateWithoutAuditorsInput

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

StudyUncheckedCreateWithoutAuditorsInput

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

StudyCreateOrConnectWithoutAuditorsInput

Name Type Nullable
where StudyWhereUniqueInput No
create StudyCreateWithoutAuditorsInput | StudyUncheckedCreateWithoutAuditorsInput No


UserUpdateToOneWithWhereWithoutAdminInput

Name Type Nullable
where UserWhereInput No
data UserUpdateWithoutAdminInput | UserUncheckedUpdateWithoutAdminInput No

UserUpdateWithoutAdminInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
person PersonUpdateOneRequiredWithoutUserNestedInput No
settings UserSettingsUpdateOneWithoutUserNestedInput No

UserUncheckedUpdateWithoutAdminInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
personId String | StringFieldUpdateOperationsInput No
userSettingsId String | NullableStringFieldUpdateOperationsInput | Null Yes

StudyUpsertWithWhereUniqueWithoutCdpsInput

Name Type Nullable
where StudyWhereUniqueInput No
update StudyUpdateWithoutCdpsInput | StudyUncheckedUpdateWithoutCdpsInput No
create StudyCreateWithoutCdpsInput | StudyUncheckedCreateWithoutCdpsInput No

StudyUpdateWithWhereUniqueWithoutCdpsInput

Name Type Nullable
where StudyWhereUniqueInput No
data StudyUpdateWithoutCdpsInput | StudyUncheckedUpdateWithoutCdpsInput No

StudyUpdateManyWithWhereWithoutCdpsInput

Name Type Nullable
where StudyScalarWhereInput No
data StudyUpdateManyMutationInput | StudyUncheckedUpdateManyWithoutCdpsInput No

StudyScalarWhereInput

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


StudyUpdateWithWhereUniqueWithoutAuditorsInput

Name Type Nullable
where StudyWhereUniqueInput No
data StudyUpdateWithoutAuditorsInput | StudyUncheckedUpdateWithoutAuditorsInput No

StudyUpdateManyWithWhereWithoutAuditorsInput

Name Type Nullable
where StudyScalarWhereInput No
data StudyUpdateManyMutationInput | StudyUncheckedUpdateManyWithoutAuditorsInput No

UserCreateWithoutSettingsInput

Name Type Nullable
id String No
person PersonCreateNestedOneWithoutUserInput No
admin AdminCreateNestedOneWithoutUserInput No

UserUncheckedCreateWithoutSettingsInput

Name Type Nullable
id String No
personId String No
admin AdminUncheckedCreateNestedOneWithoutUserInput No

UserCreateOrConnectWithoutSettingsInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutSettingsInput | UserUncheckedCreateWithoutSettingsInput No

UserCreateManySettingsInputEnvelope

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


UserUpdateWithWhereUniqueWithoutSettingsInput

Name Type Nullable
where UserWhereUniqueInput No
data UserUpdateWithoutSettingsInput | UserUncheckedUpdateWithoutSettingsInput No

UserUpdateManyWithWhereWithoutSettingsInput

Name Type Nullable
where UserScalarWhereInput No
data UserUpdateManyMutationInput | UserUncheckedUpdateManyWithoutSettingsInput No

UserScalarWhereInput

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

PersonCreateWithoutAddressInput

Name Type Nullable
id String No
email String | Null Yes
firstName String No
lastName String No
number String | Null Yes
user UserCreateNestedOneWithoutPersonInput No
assignee AssigneeCreateNestedOneWithoutPersonInput No
clients ClientCreateNestedOneWithoutPersonInput No

PersonUncheckedCreateWithoutAddressInput

Name Type Nullable
id String No
email String | Null Yes
firstName String No
lastName String No
number String | Null Yes
user UserUncheckedCreateNestedOneWithoutPersonInput No
assignee AssigneeUncheckedCreateNestedOneWithoutPersonInput No
clients ClientUncheckedCreateNestedOneWithoutPersonInput No

PersonCreateOrConnectWithoutAddressInput

Name Type Nullable
where PersonWhereUniqueInput No
create PersonCreateWithoutAddressInput | PersonUncheckedCreateWithoutAddressInput No

CompanyCreateWithoutAddressInput

Name Type Nullable
id String No
name String No
companyInfos CompanyInfosCreateNestedOneWithoutCompanyInput No
members ClientCreateNestedManyWithoutCompanyInput No

CompanyUncheckedCreateWithoutAddressInput

Name Type Nullable
id String No
name String No
companyInfosId String No
members ClientUncheckedCreateNestedManyWithoutCompanyInput No

CompanyCreateOrConnectWithoutAddressInput

Name Type Nullable
where CompanyWhereUniqueInput No
create CompanyCreateWithoutAddressInput | CompanyUncheckedCreateWithoutAddressInput No


PersonUpdateToOneWithWhereWithoutAddressInput

Name Type Nullable
where PersonWhereInput No
data PersonUpdateWithoutAddressInput | PersonUncheckedUpdateWithoutAddressInput No

PersonUpdateWithoutAddressInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
email 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



CompanyUpdateToOneWithWhereWithoutAddressInput

Name Type Nullable
where CompanyWhereInput No
data CompanyUpdateWithoutAddressInput | CompanyUncheckedUpdateWithoutAddressInput No

CompanyUpdateWithoutAddressInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
companyInfos CompanyInfosUpdateOneRequiredWithoutCompanyNestedInput No
members ClientUpdateManyWithoutCompanyNestedInput No

CompanyUncheckedUpdateWithoutAddressInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
companyInfosId String | StringFieldUpdateOperationsInput No
members ClientUncheckedUpdateManyWithoutCompanyNestedInput No

CompanyCreateWithoutMembersInput

Name Type Nullable
id String No
name String No
address AddressCreateNestedOneWithoutCompanyInput No
companyInfos CompanyInfosCreateNestedOneWithoutCompanyInput No

CompanyUncheckedCreateWithoutMembersInput

Name Type Nullable
id String No
name String No
companyInfosId String No
address AddressUncheckedCreateNestedOneWithoutCompanyInput No

CompanyCreateOrConnectWithoutMembersInput

Name Type Nullable
where CompanyWhereUniqueInput No
create CompanyCreateWithoutMembersInput | CompanyUncheckedCreateWithoutMembersInput No

PersonCreateWithoutClientsInput

Name Type Nullable
id String No
email String | Null Yes
firstName String No
lastName String No
number String | Null Yes
address AddressCreateNestedOneWithoutPersonInput No
user UserCreateNestedOneWithoutPersonInput No
assignee AssigneeCreateNestedOneWithoutPersonInput No

PersonUncheckedCreateWithoutClientsInput

Name Type Nullable
id String No
email String | Null Yes
firstName String No
lastName String No
number String | Null Yes
address AddressUncheckedCreateNestedOneWithoutPersonInput No
user UserUncheckedCreateNestedOneWithoutPersonInput No
assignee AssigneeUncheckedCreateNestedOneWithoutPersonInput No

PersonCreateOrConnectWithoutClientsInput

Name Type Nullable
where PersonWhereUniqueInput No
create PersonCreateWithoutClientsInput | PersonUncheckedCreateWithoutClientsInput No

StudyClientCreateWithoutClientInput

Name Type Nullable
id String No
study StudyCreateNestedOneWithoutClientsInput No
satisfaction SatisfactionCreateNestedOneWithoutStudyClientInput No

StudyClientUncheckedCreateWithoutClientInput

Name Type Nullable
id String No
studyId String No
satisfaction SatisfactionUncheckedCreateNestedOneWithoutStudyClientInput No

StudyClientCreateOrConnectWithoutClientInput

Name Type Nullable
where StudyClientWhereUniqueInput No
create StudyClientCreateWithoutClientInput | StudyClientUncheckedCreateWithoutClientInput No

StudyClientCreateManyClientInputEnvelope

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


CompanyUpdateToOneWithWhereWithoutMembersInput

Name Type Nullable
where CompanyWhereInput No
data CompanyUpdateWithoutMembersInput | CompanyUncheckedUpdateWithoutMembersInput No

CompanyUpdateWithoutMembersInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
address AddressUpdateOneWithoutCompanyNestedInput No
companyInfos CompanyInfosUpdateOneRequiredWithoutCompanyNestedInput No

CompanyUncheckedUpdateWithoutMembersInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
companyInfosId String | StringFieldUpdateOperationsInput No
address AddressUncheckedUpdateOneWithoutCompanyNestedInput No


PersonUpdateToOneWithWhereWithoutClientsInput

Name Type Nullable
where PersonWhereInput No
data PersonUpdateWithoutClientsInput | PersonUncheckedUpdateWithoutClientsInput No

PersonUpdateWithoutClientsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
email 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



StudyClientUpdateWithWhereUniqueWithoutClientInput

Name Type Nullable
where StudyClientWhereUniqueInput No
data StudyClientUpdateWithoutClientInput | StudyClientUncheckedUpdateWithoutClientInput No

StudyClientUpdateManyWithWhereWithoutClientInput

Name Type Nullable
where StudyClientScalarWhereInput No
data StudyClientUpdateManyMutationInput | StudyClientUncheckedUpdateManyWithoutClientInput No

StudyClientScalarWhereInput

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

StudyCreateWithoutClientsInput

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

StudyUncheckedCreateWithoutClientsInput

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

StudyCreateOrConnectWithoutClientsInput

Name Type Nullable
where StudyWhereUniqueInput No
create StudyCreateWithoutClientsInput | StudyUncheckedCreateWithoutClientsInput No

ClientCreateWithoutStudyClientsInput

Name Type Nullable
id String No
privateIndividual Boolean No
job String No
company CompanyCreateNestedOneWithoutMembersInput No
person PersonCreateNestedOneWithoutClientsInput No

ClientUncheckedCreateWithoutStudyClientsInput

Name Type Nullable
id String No
privateIndividual Boolean No
companyId String | Null Yes
personId String No
job String No

ClientCreateOrConnectWithoutStudyClientsInput

Name Type Nullable
where ClientWhereUniqueInput No
create ClientCreateWithoutStudyClientsInput | ClientUncheckedCreateWithoutStudyClientsInput No

SatisfactionCreateWithoutStudyClientInput

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

SatisfactionUncheckedCreateWithoutStudyClientInput

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

SatisfactionCreateOrConnectWithoutStudyClientInput

Name Type Nullable
where SatisfactionWhereUniqueInput No
create SatisfactionCreateWithoutStudyClientInput | SatisfactionUncheckedCreateWithoutStudyClientInput No


StudyUpdateToOneWithWhereWithoutClientsInput

Name Type Nullable
where StudyWhereInput No
data StudyUpdateWithoutClientsInput | StudyUncheckedUpdateWithoutClientsInput No




ClientUpdateToOneWithWhereWithoutStudyClientsInput

Name Type Nullable
where ClientWhereInput No
data ClientUpdateWithoutStudyClientsInput | ClientUncheckedUpdateWithoutStudyClientsInput No

ClientUpdateWithoutStudyClientsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
privateIndividual Boolean | BoolFieldUpdateOperationsInput No
job String | StringFieldUpdateOperationsInput No
company CompanyUpdateOneWithoutMembersNestedInput No
person PersonUpdateOneRequiredWithoutClientsNestedInput No

ClientUncheckedUpdateWithoutStudyClientsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
privateIndividual Boolean | BoolFieldUpdateOperationsInput No
companyId String | NullableStringFieldUpdateOperationsInput | Null Yes
personId String | StringFieldUpdateOperationsInput No
job String | StringFieldUpdateOperationsInput No


SatisfactionUpdateToOneWithWhereWithoutStudyClientInput

Name Type Nullable
where SatisfactionWhereInput No
data SatisfactionUpdateWithoutStudyClientInput | SatisfactionUncheckedUpdateWithoutStudyClientInput No

SatisfactionUpdateWithoutStudyClientInput

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

SatisfactionUncheckedUpdateWithoutStudyClientInput

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

StudyClientCreateWithoutSatisfactionInput

Name Type Nullable
id String No
study StudyCreateNestedOneWithoutClientsInput No
client ClientCreateNestedOneWithoutStudyClientsInput No

StudyClientUncheckedCreateWithoutSatisfactionInput

Name Type Nullable
id String No
studyId String No
clientId String No

StudyClientCreateOrConnectWithoutSatisfactionInput

Name Type Nullable
where StudyClientWhereUniqueInput No
create StudyClientCreateWithoutSatisfactionInput | StudyClientUncheckedCreateWithoutSatisfactionInput No

StudyCreateWithoutSatisfactionInput

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

StudyUncheckedCreateWithoutSatisfactionInput

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

StudyCreateOrConnectWithoutSatisfactionInput

Name Type Nullable
where StudyWhereUniqueInput No
create StudyCreateWithoutSatisfactionInput | StudyUncheckedCreateWithoutSatisfactionInput No


StudyClientUpdateToOneWithWhereWithoutSatisfactionInput

Name Type Nullable
where StudyClientWhereInput No
data StudyClientUpdateWithoutSatisfactionInput | StudyClientUncheckedUpdateWithoutSatisfactionInput No

StudyClientUpdateWithoutSatisfactionInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
study StudyUpdateOneRequiredWithoutClientsNestedInput No
client ClientUpdateOneRequiredWithoutStudyClientsNestedInput No

StudyClientUncheckedUpdateWithoutSatisfactionInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
studyId String | StringFieldUpdateOperationsInput No
clientId String | StringFieldUpdateOperationsInput No


StudyUpdateToOneWithWhereWithoutSatisfactionInput

Name Type Nullable
where StudyWhereInput No
data StudyUpdateWithoutSatisfactionInput | StudyUncheckedUpdateWithoutSatisfactionInput No



AddressCreateWithoutCompanyInput

Name Type Nullable
id String No
streetNumber String No
streetName String No
city String No
zipCode String No
country String No
person PersonCreateNestedOneWithoutAddressInput No

AddressUncheckedCreateWithoutCompanyInput

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

AddressCreateOrConnectWithoutCompanyInput

Name Type Nullable
where AddressWhereUniqueInput No
create AddressCreateWithoutCompanyInput | AddressUncheckedCreateWithoutCompanyInput No

CompanyInfosCreateWithoutCompanyInput

Name Type Nullable
id String No
domains CompanyInfosCreatedomainsInput | Domain[] No
ca Int | Null Yes
size CompanySize | Null Yes

CompanyInfosUncheckedCreateWithoutCompanyInput

Name Type Nullable
id String No
domains CompanyInfosCreatedomainsInput | Domain[] No
ca Int | Null Yes
size CompanySize | Null Yes

CompanyInfosCreateOrConnectWithoutCompanyInput

Name Type Nullable
where CompanyInfosWhereUniqueInput No
create CompanyInfosCreateWithoutCompanyInput | CompanyInfosUncheckedCreateWithoutCompanyInput No

ClientCreateWithoutCompanyInput

Name Type Nullable
id String No
privateIndividual Boolean No
job String No
person PersonCreateNestedOneWithoutClientsInput No
studyClients StudyClientCreateNestedManyWithoutClientInput No

ClientUncheckedCreateWithoutCompanyInput

Name Type Nullable
id String No
privateIndividual Boolean No
personId String No
job String No
studyClients StudyClientUncheckedCreateNestedManyWithoutClientInput No

ClientCreateOrConnectWithoutCompanyInput

Name Type Nullable
where ClientWhereUniqueInput No
create ClientCreateWithoutCompanyInput | ClientUncheckedCreateWithoutCompanyInput No

ClientCreateManyCompanyInputEnvelope

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


AddressUpdateToOneWithWhereWithoutCompanyInput

Name Type Nullable
where AddressWhereInput No
data AddressUpdateWithoutCompanyInput | AddressUncheckedUpdateWithoutCompanyInput No

AddressUpdateWithoutCompanyInput

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

AddressUncheckedUpdateWithoutCompanyInput

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


CompanyInfosUpdateToOneWithWhereWithoutCompanyInput

Name Type Nullable
where CompanyInfosWhereInput No
data CompanyInfosUpdateWithoutCompanyInput | CompanyInfosUncheckedUpdateWithoutCompanyInput No

CompanyInfosUpdateWithoutCompanyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
domains CompanyInfosUpdatedomainsInput | Domain[] No
ca Int | NullableIntFieldUpdateOperationsInput | Null Yes
size CompanySize | NullableEnumCompanySizeFieldUpdateOperationsInput | Null Yes

CompanyInfosUncheckedUpdateWithoutCompanyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
domains CompanyInfosUpdatedomainsInput | Domain[] No
ca Int | NullableIntFieldUpdateOperationsInput | Null Yes
size CompanySize | NullableEnumCompanySizeFieldUpdateOperationsInput | Null Yes


ClientUpdateWithWhereUniqueWithoutCompanyInput

Name Type Nullable
where ClientWhereUniqueInput No
data ClientUpdateWithoutCompanyInput | ClientUncheckedUpdateWithoutCompanyInput No

ClientUpdateManyWithWhereWithoutCompanyInput

Name Type Nullable
where ClientScalarWhereInput No
data ClientUpdateManyMutationInput | ClientUncheckedUpdateManyWithoutCompanyInput No

ClientScalarWhereInput

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

CompanyCreateWithoutCompanyInfosInput

Name Type Nullable
id String No
name String No
address AddressCreateNestedOneWithoutCompanyInput No
members ClientCreateNestedManyWithoutCompanyInput No

CompanyUncheckedCreateWithoutCompanyInfosInput

Name Type Nullable
id String No
name String No
address AddressUncheckedCreateNestedOneWithoutCompanyInput No
members ClientUncheckedCreateNestedManyWithoutCompanyInput No

CompanyCreateOrConnectWithoutCompanyInfosInput

Name Type Nullable
where CompanyWhereUniqueInput No
create CompanyCreateWithoutCompanyInfosInput | CompanyUncheckedCreateWithoutCompanyInfosInput No

CompanyCreateManyCompanyInfosInputEnvelope

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


CompanyUpdateWithWhereUniqueWithoutCompanyInfosInput

Name Type Nullable
where CompanyWhereUniqueInput No
data CompanyUpdateWithoutCompanyInfosInput | CompanyUncheckedUpdateWithoutCompanyInfosInput No

CompanyUpdateManyWithWhereWithoutCompanyInfosInput

Name Type Nullable
where CompanyScalarWhereInput No
data CompanyUpdateManyMutationInput | CompanyUncheckedUpdateManyWithoutCompanyInfosInput No

CompanyScalarWhereInput

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

StatusCreateWithoutDocumentInput

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

StatusUncheckedCreateWithoutDocumentInput

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

StatusCreateOrConnectWithoutDocumentInput

Name Type Nullable
where StatusWhereUniqueInput No
create StatusCreateWithoutDocumentInput | StatusUncheckedCreateWithoutDocumentInput No

AssigneeDocsCreateWithoutCniInput

Name Type Nullable
id String No
assignee AssigneeCreateNestedOneWithoutDocsInput No
socialSecurity DocumentCreateNestedOneWithoutAssigneeSocialSecurityInput No
studentCard DocumentCreateNestedOneWithoutAssigneeStudentCardInput No

AssigneeDocsUncheckedCreateWithoutCniInput

Name Type Nullable
id String No
assigneeId String No
socialSecurityId String No
studentCardId String No

AssigneeDocsCreateOrConnectWithoutCniInput

Name Type Nullable
where AssigneeDocsWhereUniqueInput No
create AssigneeDocsCreateWithoutCniInput | AssigneeDocsUncheckedCreateWithoutCniInput No

AssigneeDocsCreateWithoutSocialSecurityInput

Name Type Nullable
id String No
assignee AssigneeCreateNestedOneWithoutDocsInput No
cni DocumentCreateNestedOneWithoutAssigneeCniInput No
studentCard DocumentCreateNestedOneWithoutAssigneeStudentCardInput No

AssigneeDocsUncheckedCreateWithoutSocialSecurityInput

Name Type Nullable
id String No
assigneeId String No
cniId String No
studentCardId String No

AssigneeDocsCreateOrConnectWithoutSocialSecurityInput

Name Type Nullable
where AssigneeDocsWhereUniqueInput No
create AssigneeDocsCreateWithoutSocialSecurityInput | AssigneeDocsUncheckedCreateWithoutSocialSecurityInput No

AssigneeDocsCreateWithoutStudentCardInput

Name Type Nullable
id String No
assignee AssigneeCreateNestedOneWithoutDocsInput No
cni DocumentCreateNestedOneWithoutAssigneeCniInput No
socialSecurity DocumentCreateNestedOneWithoutAssigneeSocialSecurityInput No

AssigneeDocsUncheckedCreateWithoutStudentCardInput

Name Type Nullable
id String No
assigneeId String No
cniId String No
socialSecurityId String No

AssigneeDocsCreateOrConnectWithoutStudentCardInput

Name Type Nullable
where AssigneeDocsWhereUniqueInput No
create AssigneeDocsCreateWithoutStudentCardInput | AssigneeDocsUncheckedCreateWithoutStudentCardInput No


StatusUpdateToOneWithWhereWithoutDocumentInput

Name Type Nullable
where StatusWhereInput No
data StatusUpdateWithoutDocumentInput | StatusUncheckedUpdateWithoutDocumentInput No

StatusUpdateWithoutDocumentInput

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

StatusUncheckedUpdateWithoutDocumentInput

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


AssigneeDocsUpdateToOneWithWhereWithoutCniInput

Name Type Nullable
where AssigneeDocsWhereInput No
data AssigneeDocsUpdateWithoutCniInput | AssigneeDocsUncheckedUpdateWithoutCniInput No


AssigneeDocsUncheckedUpdateWithoutCniInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
assigneeId String | StringFieldUpdateOperationsInput No
socialSecurityId String | StringFieldUpdateOperationsInput No
studentCardId String | StringFieldUpdateOperationsInput No


AssigneeDocsUpdateToOneWithWhereWithoutSocialSecurityInput

Name Type Nullable
where AssigneeDocsWhereInput No
data AssigneeDocsUpdateWithoutSocialSecurityInput | AssigneeDocsUncheckedUpdateWithoutSocialSecurityInput No


AssigneeDocsUncheckedUpdateWithoutSocialSecurityInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
assigneeId String | StringFieldUpdateOperationsInput No
cniId String | StringFieldUpdateOperationsInput No
studentCardId String | StringFieldUpdateOperationsInput No


AssigneeDocsUpdateToOneWithWhereWithoutStudentCardInput

Name Type Nullable
where AssigneeDocsWhereInput No
data AssigneeDocsUpdateWithoutStudentCardInput | AssigneeDocsUncheckedUpdateWithoutStudentCardInput No


AssigneeDocsUncheckedUpdateWithoutStudentCardInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
assigneeId String | StringFieldUpdateOperationsInput No
cniId String | StringFieldUpdateOperationsInput No
socialSecurityId String | StringFieldUpdateOperationsInput No

DocumentCreateWithoutStatusInput

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

DocumentUncheckedCreateWithoutStatusInput

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

DocumentCreateOrConnectWithoutStatusInput

Name Type Nullable
where DocumentWhereUniqueInput No
create DocumentCreateWithoutStatusInput | DocumentUncheckedCreateWithoutStatusInput No

DocumentCreateManyStatusInputEnvelope

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


DocumentUpdateWithWhereUniqueWithoutStatusInput

Name Type Nullable
where DocumentWhereUniqueInput No
data DocumentUpdateWithoutStatusInput | DocumentUncheckedUpdateWithoutStatusInput No

DocumentUpdateManyWithWhereWithoutStatusInput

Name Type Nullable
where DocumentScalarWhereInput No
data DocumentUpdateManyMutationInput | DocumentUncheckedUpdateManyWithoutStatusInput No

DocumentScalarWhereInput

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


StudyUncheckedCreateWithoutMriInput

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

StudyCreateOrConnectWithoutMriInput

Name Type Nullable
where StudyWhereUniqueInput No
create StudyCreateWithoutMriInput | StudyUncheckedCreateWithoutMriInput No

MriFormCreateWithoutMriInput

Name Type Nullable
id String No
experience String No
knowledge String No
ideas String No
jeExperience Int No
studyAssignees StudyAssigneeCreateNestedOneWithoutMriFormInput No

MriFormUncheckedCreateWithoutMriInput

Name Type Nullable
id String No
experience String No
knowledge String No
ideas String No
jeExperience Int No
studyAssignees StudyAssigneeUncheckedCreateNestedOneWithoutMriFormInput No

MriFormCreateOrConnectWithoutMriInput

Name Type Nullable
where MriFormWhereUniqueInput No
create MriFormCreateWithoutMriInput | MriFormUncheckedCreateWithoutMriInput No

MriFormCreateManyMriInputEnvelope

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


StudyUpdateToOneWithWhereWithoutMriInput

Name Type Nullable
where StudyWhereInput No
data StudyUpdateWithoutMriInput | StudyUncheckedUpdateWithoutMriInput No



MriFormUpsertWithWhereUniqueWithoutMriInput

Name Type Nullable
where MriFormWhereUniqueInput No
update MriFormUpdateWithoutMriInput | MriFormUncheckedUpdateWithoutMriInput No
create MriFormCreateWithoutMriInput | MriFormUncheckedCreateWithoutMriInput No

MriFormUpdateWithWhereUniqueWithoutMriInput

Name Type Nullable
where MriFormWhereUniqueInput No
data MriFormUpdateWithoutMriInput | MriFormUncheckedUpdateWithoutMriInput No

MriFormUpdateManyWithWhereWithoutMriInput

Name Type Nullable
where MriFormScalarWhereInput No
data MriFormUpdateManyMutationInput | MriFormUncheckedUpdateManyWithoutMriInput No

MriFormScalarWhereInput

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

AssigneeDocsCreateWithoutAssigneeInput

Name Type Nullable
id String No
cni DocumentCreateNestedOneWithoutAssigneeCniInput No
socialSecurity DocumentCreateNestedOneWithoutAssigneeSocialSecurityInput No
studentCard DocumentCreateNestedOneWithoutAssigneeStudentCardInput No

AssigneeDocsUncheckedCreateWithoutAssigneeInput

Name Type Nullable
id String No
cniId String No
socialSecurityId String No
studentCardId String No

AssigneeDocsCreateOrConnectWithoutAssigneeInput

Name Type Nullable
where AssigneeDocsWhereUniqueInput No
create AssigneeDocsCreateWithoutAssigneeInput | AssigneeDocsUncheckedCreateWithoutAssigneeInput No

AssigneeDocsCreateManyAssigneeInputEnvelope

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

AssigneeInfosCreateWithoutAssigneeInput

Name Type Nullable
id String No
age Int No
promotion Int No
hasScholarship Boolean No
oldJet Boolean No

AssigneeInfosUncheckedCreateWithoutAssigneeInput

Name Type Nullable
id String No
age Int No
promotion Int No
hasScholarship Boolean No
oldJet Boolean No

AssigneeInfosCreateOrConnectWithoutAssigneeInput

Name Type Nullable
where AssigneeInfosWhereUniqueInput No
create AssigneeInfosCreateWithoutAssigneeInput | AssigneeInfosUncheckedCreateWithoutAssigneeInput No

PersonCreateWithoutAssigneeInput

Name Type Nullable
id String No
email String | Null Yes
firstName String No
lastName String No
number String | Null Yes
address AddressCreateNestedOneWithoutPersonInput No
user UserCreateNestedOneWithoutPersonInput No
clients ClientCreateNestedOneWithoutPersonInput No

PersonUncheckedCreateWithoutAssigneeInput

Name Type Nullable
id String No
email String | Null Yes
firstName String No
lastName String No
number String | Null Yes
address AddressUncheckedCreateNestedOneWithoutPersonInput No
user UserUncheckedCreateNestedOneWithoutPersonInput No
clients ClientUncheckedCreateNestedOneWithoutPersonInput No

PersonCreateOrConnectWithoutAssigneeInput

Name Type Nullable
where PersonWhereUniqueInput No
create PersonCreateWithoutAssigneeInput | PersonUncheckedCreateWithoutAssigneeInput No

StudyAssigneeCreateWithoutAssigneeInput

Name Type Nullable
id String No
selectionNotes String No
taken Boolean No
study StudyCreateNestedOneWithoutStudyAssigneesInput No
formInterview FormInterviewsCreateNestedOneWithoutStudyAssigneesInput No
mriForm MriFormCreateNestedOneWithoutStudyAssigneesInput No

StudyAssigneeUncheckedCreateWithoutAssigneeInput

Name Type Nullable
id String No
studyId String No
formInterviewId String No
mriFormId String No
selectionNotes String No
taken Boolean No

StudyAssigneeCreateOrConnectWithoutAssigneeInput

Name Type Nullable
where StudyAssigneeWhereUniqueInput No
create StudyAssigneeCreateWithoutAssigneeInput | StudyAssigneeUncheckedCreateWithoutAssigneeInput No

StudyAssigneeCreateManyAssigneeInputEnvelope

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


AssigneeDocsUpdateWithWhereUniqueWithoutAssigneeInput

Name Type Nullable
where AssigneeDocsWhereUniqueInput No
data AssigneeDocsUpdateWithoutAssigneeInput | AssigneeDocsUncheckedUpdateWithoutAssigneeInput No

AssigneeDocsUpdateManyWithWhereWithoutAssigneeInput

Name Type Nullable
where AssigneeDocsScalarWhereInput No
data AssigneeDocsUpdateManyMutationInput | AssigneeDocsUncheckedUpdateManyWithoutAssigneeInput No

AssigneeDocsScalarWhereInput

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


AssigneeInfosUpdateToOneWithWhereWithoutAssigneeInput

Name Type Nullable
where AssigneeInfosWhereInput No
data AssigneeInfosUpdateWithoutAssigneeInput | AssigneeInfosUncheckedUpdateWithoutAssigneeInput No

AssigneeInfosUpdateWithoutAssigneeInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
age Int | IntFieldUpdateOperationsInput No
promotion Int | IntFieldUpdateOperationsInput No
hasScholarship Boolean | BoolFieldUpdateOperationsInput No
oldJet Boolean | BoolFieldUpdateOperationsInput No

AssigneeInfosUncheckedUpdateWithoutAssigneeInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
age Int | IntFieldUpdateOperationsInput No
promotion Int | IntFieldUpdateOperationsInput No
hasScholarship Boolean | BoolFieldUpdateOperationsInput No
oldJet Boolean | BoolFieldUpdateOperationsInput No


PersonUpdateToOneWithWhereWithoutAssigneeInput

Name Type Nullable
where PersonWhereInput No
data PersonUpdateWithoutAssigneeInput | PersonUncheckedUpdateWithoutAssigneeInput No

PersonUpdateWithoutAssigneeInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
email 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



StudyAssigneeUpdateWithWhereUniqueWithoutAssigneeInput

Name Type Nullable
where StudyAssigneeWhereUniqueInput No
data StudyAssigneeUpdateWithoutAssigneeInput | StudyAssigneeUncheckedUpdateWithoutAssigneeInput No

StudyAssigneeUpdateManyWithWhereWithoutAssigneeInput

Name Type Nullable
where StudyAssigneeScalarWhereInput No
data StudyAssigneeUpdateManyMutationInput | StudyAssigneeUncheckedUpdateManyWithoutAssigneeInput No

StudyAssigneeScalarWhereInput

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

AssigneeCreateWithoutInformationInput

Name Type Nullable
id String No
nbApplications Int No
docs AssigneeDocsCreateNestedManyWithoutAssigneeInput No
person PersonCreateNestedOneWithoutAssigneeInput No
studyAssign StudyAssigneeCreateNestedManyWithoutAssigneeInput No

AssigneeUncheckedCreateWithoutInformationInput

Name Type Nullable
id String No
nbApplications Int No
peopleId String No
docs AssigneeDocsUncheckedCreateNestedManyWithoutAssigneeInput No
studyAssign StudyAssigneeUncheckedCreateNestedManyWithoutAssigneeInput No

AssigneeCreateOrConnectWithoutInformationInput

Name Type Nullable
where AssigneeWhereUniqueInput No
create AssigneeCreateWithoutInformationInput | AssigneeUncheckedCreateWithoutInformationInput No


AssigneeUpdateToOneWithWhereWithoutInformationInput

Name Type Nullable
where AssigneeWhereInput No
data AssigneeUpdateWithoutInformationInput | AssigneeUncheckedUpdateWithoutInformationInput No


AssigneeUncheckedUpdateWithoutInformationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
nbApplications Int | IntFieldUpdateOperationsInput No
peopleId String | StringFieldUpdateOperationsInput No
docs AssigneeDocsUncheckedUpdateManyWithoutAssigneeNestedInput No
studyAssign StudyAssigneeUncheckedUpdateManyWithoutAssigneeNestedInput No

AssigneeCreateWithoutDocsInput

Name Type Nullable
id String No
nbApplications Int No
information AssigneeInfosCreateNestedOneWithoutAssigneeInput No
person PersonCreateNestedOneWithoutAssigneeInput No
studyAssign StudyAssigneeCreateNestedManyWithoutAssigneeInput No

AssigneeUncheckedCreateWithoutDocsInput

Name Type Nullable
id String No
nbApplications Int No
peopleId String No
information AssigneeInfosUncheckedCreateNestedOneWithoutAssigneeInput No
studyAssign StudyAssigneeUncheckedCreateNestedManyWithoutAssigneeInput No

AssigneeCreateOrConnectWithoutDocsInput

Name Type Nullable
where AssigneeWhereUniqueInput No
create AssigneeCreateWithoutDocsInput | AssigneeUncheckedCreateWithoutDocsInput No

DocumentCreateWithoutAssigneeCniInput

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

DocumentUncheckedCreateWithoutAssigneeCniInput

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

DocumentCreateOrConnectWithoutAssigneeCniInput

Name Type Nullable
where DocumentWhereUniqueInput No
create DocumentCreateWithoutAssigneeCniInput | DocumentUncheckedCreateWithoutAssigneeCniInput No

DocumentCreateWithoutAssigneeSocialSecurityInput

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

DocumentUncheckedCreateWithoutAssigneeSocialSecurityInput

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

DocumentCreateOrConnectWithoutAssigneeSocialSecurityInput

Name Type Nullable
where DocumentWhereUniqueInput No
create DocumentCreateWithoutAssigneeSocialSecurityInput | DocumentUncheckedCreateWithoutAssigneeSocialSecurityInput No

DocumentCreateWithoutAssigneeStudentCardInput

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

DocumentUncheckedCreateWithoutAssigneeStudentCardInput

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

DocumentCreateOrConnectWithoutAssigneeStudentCardInput

Name Type Nullable
where DocumentWhereUniqueInput No
create DocumentCreateWithoutAssigneeStudentCardInput | DocumentUncheckedCreateWithoutAssigneeStudentCardInput No


AssigneeUpdateToOneWithWhereWithoutDocsInput

Name Type Nullable
where AssigneeWhereInput No
data AssigneeUpdateWithoutDocsInput | AssigneeUncheckedUpdateWithoutDocsInput No


AssigneeUncheckedUpdateWithoutDocsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
nbApplications Int | IntFieldUpdateOperationsInput No
peopleId String | StringFieldUpdateOperationsInput No
information AssigneeInfosUncheckedUpdateOneWithoutAssigneeNestedInput No
studyAssign StudyAssigneeUncheckedUpdateManyWithoutAssigneeNestedInput No


DocumentUpdateToOneWithWhereWithoutAssigneeCniInput

Name Type Nullable
where DocumentWhereInput No
data DocumentUpdateWithoutAssigneeCniInput | DocumentUncheckedUpdateWithoutAssigneeCniInput No

DocumentUpdateWithoutAssigneeCniInput

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

DocumentUncheckedUpdateWithoutAssigneeCniInput

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


DocumentUpdateToOneWithWhereWithoutAssigneeSocialSecurityInput

Name Type Nullable
where DocumentWhereInput No
data DocumentUpdateWithoutAssigneeSocialSecurityInput | DocumentUncheckedUpdateWithoutAssigneeSocialSecurityInput No

DocumentUpdateWithoutAssigneeSocialSecurityInput

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

DocumentUncheckedUpdateWithoutAssigneeSocialSecurityInput

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


DocumentUpdateToOneWithWhereWithoutAssigneeStudentCardInput

Name Type Nullable
where DocumentWhereInput No
data DocumentUpdateWithoutAssigneeStudentCardInput | DocumentUncheckedUpdateWithoutAssigneeStudentCardInput No

DocumentUpdateWithoutAssigneeStudentCardInput

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

DocumentUncheckedUpdateWithoutAssigneeStudentCardInput

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

StudyCreateWithoutStudyAssigneesInput

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

StudyUncheckedCreateWithoutStudyAssigneesInput

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

StudyCreateOrConnectWithoutStudyAssigneesInput

Name Type Nullable
where StudyWhereUniqueInput No
create StudyCreateWithoutStudyAssigneesInput | StudyUncheckedCreateWithoutStudyAssigneesInput No

AssigneeCreateWithoutStudyAssignInput

Name Type Nullable
id String No
nbApplications Int No
docs AssigneeDocsCreateNestedManyWithoutAssigneeInput No
information AssigneeInfosCreateNestedOneWithoutAssigneeInput No
person PersonCreateNestedOneWithoutAssigneeInput No

AssigneeUncheckedCreateWithoutStudyAssignInput

Name Type Nullable
id String No
nbApplications Int No
peopleId String No
docs AssigneeDocsUncheckedCreateNestedManyWithoutAssigneeInput No
information AssigneeInfosUncheckedCreateNestedOneWithoutAssigneeInput No

AssigneeCreateOrConnectWithoutStudyAssignInput

Name Type Nullable
where AssigneeWhereUniqueInput No
create AssigneeCreateWithoutStudyAssignInput | AssigneeUncheckedCreateWithoutStudyAssignInput No

FormInterviewsCreateWithoutStudyAssigneesInput

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

FormInterviewsUncheckedCreateWithoutStudyAssigneesInput

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

FormInterviewsCreateOrConnectWithoutStudyAssigneesInput

Name Type Nullable
where FormInterviewsWhereUniqueInput No
create FormInterviewsCreateWithoutStudyAssigneesInput | FormInterviewsUncheckedCreateWithoutStudyAssigneesInput No

MriFormCreateWithoutStudyAssigneesInput

Name Type Nullable
id String No
experience String No
knowledge String No
ideas String No
jeExperience Int No
mri MriCreateNestedOneWithoutFormMRIsInput No

MriFormUncheckedCreateWithoutStudyAssigneesInput

Name Type Nullable
id String No
mriId String No
experience String No
knowledge String No
ideas String No
jeExperience Int No

MriFormCreateOrConnectWithoutStudyAssigneesInput

Name Type Nullable
where MriFormWhereUniqueInput No
create MriFormCreateWithoutStudyAssigneesInput | MriFormUncheckedCreateWithoutStudyAssigneesInput No


StudyUpdateToOneWithWhereWithoutStudyAssigneesInput

Name Type Nullable
where StudyWhereInput No
data StudyUpdateWithoutStudyAssigneesInput | StudyUncheckedUpdateWithoutStudyAssigneesInput No




AssigneeUpdateToOneWithWhereWithoutStudyAssignInput

Name Type Nullable
where AssigneeWhereInput No
data AssigneeUpdateWithoutStudyAssignInput | AssigneeUncheckedUpdateWithoutStudyAssignInput No


AssigneeUncheckedUpdateWithoutStudyAssignInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
nbApplications Int | IntFieldUpdateOperationsInput No
peopleId String | StringFieldUpdateOperationsInput No
docs AssigneeDocsUncheckedUpdateManyWithoutAssigneeNestedInput No
information AssigneeInfosUncheckedUpdateOneWithoutAssigneeNestedInput No


FormInterviewsUpdateToOneWithWhereWithoutStudyAssigneesInput

Name Type Nullable
where FormInterviewsWhereInput No
data FormInterviewsUpdateWithoutStudyAssigneesInput | FormInterviewsUncheckedUpdateWithoutStudyAssigneesInput No

FormInterviewsUpdateWithoutStudyAssigneesInput

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

FormInterviewsUncheckedUpdateWithoutStudyAssigneesInput

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


MriFormUpdateToOneWithWhereWithoutStudyAssigneesInput

Name Type Nullable
where MriFormWhereInput No
data MriFormUpdateWithoutStudyAssigneesInput | MriFormUncheckedUpdateWithoutStudyAssigneesInput No

MriFormUpdateWithoutStudyAssigneesInput

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

MriFormUncheckedUpdateWithoutStudyAssigneesInput

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

MriCreateWithoutFormMRIsInput

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

MriUncheckedCreateWithoutFormMRIsInput

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

MriCreateOrConnectWithoutFormMRIsInput

Name Type Nullable
where MriWhereUniqueInput No
create MriCreateWithoutFormMRIsInput | MriUncheckedCreateWithoutFormMRIsInput No

StudyAssigneeCreateWithoutMriFormInput

Name Type Nullable
id String No
selectionNotes String No
taken Boolean No
study StudyCreateNestedOneWithoutStudyAssigneesInput No
assignee AssigneeCreateNestedOneWithoutStudyAssignInput No
formInterview FormInterviewsCreateNestedOneWithoutStudyAssigneesInput No

StudyAssigneeUncheckedCreateWithoutMriFormInput

Name Type Nullable
id String No
studyId String No
assigneeId String No
formInterviewId String No
selectionNotes String No
taken Boolean No

StudyAssigneeCreateOrConnectWithoutMriFormInput

Name Type Nullable
where StudyAssigneeWhereUniqueInput No
create StudyAssigneeCreateWithoutMriFormInput | StudyAssigneeUncheckedCreateWithoutMriFormInput No


MriUpdateToOneWithWhereWithoutFormMRIsInput

Name Type Nullable
where MriWhereInput No
data MriUpdateWithoutFormMRIsInput | MriUncheckedUpdateWithoutFormMRIsInput No

MriUpdateWithoutFormMRIsInput

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

MriUncheckedUpdateWithoutFormMRIsInput

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


StudyAssigneeUpdateToOneWithWhereWithoutMriFormInput

Name Type Nullable
where StudyAssigneeWhereInput No
data StudyAssigneeUpdateWithoutMriFormInput | StudyAssigneeUncheckedUpdateWithoutMriFormInput No


StudyAssigneeUncheckedUpdateWithoutMriFormInput

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

StudyAssigneeCreateWithoutFormInterviewInput

Name Type Nullable
id String No
selectionNotes String No
taken Boolean No
study StudyCreateNestedOneWithoutStudyAssigneesInput No
assignee AssigneeCreateNestedOneWithoutStudyAssignInput No
mriForm MriFormCreateNestedOneWithoutStudyAssigneesInput No

StudyAssigneeUncheckedCreateWithoutFormInterviewInput

Name Type Nullable
id String No
studyId String No
assigneeId String No
mriFormId String No
selectionNotes String No
taken Boolean No

StudyAssigneeCreateOrConnectWithoutFormInterviewInput

Name Type Nullable
where StudyAssigneeWhereUniqueInput No
create StudyAssigneeCreateWithoutFormInterviewInput | StudyAssigneeUncheckedCreateWithoutFormInterviewInput No


StudyAssigneeUpdateToOneWithWhereWithoutFormInterviewInput

Name Type Nullable
where StudyAssigneeWhereInput No
data StudyAssigneeUpdateWithoutFormInterviewInput | StudyAssigneeUncheckedUpdateWithoutFormInterviewInput No


StudyAssigneeUncheckedUpdateWithoutFormInterviewInput

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

AdminCreateWithoutStudiesInput

Name Type Nullable
id String No
position String | Null Yes
image String | Null Yes
user UserCreateNestedOneWithoutAdminInput No
auditedStudies StudyCreateNestedManyWithoutAuditorsInput No

AdminUncheckedCreateWithoutStudiesInput

Name Type Nullable
id String No
userId String No
position String | Null Yes
image String | Null Yes
auditedStudies StudyUncheckedCreateNestedManyWithoutAuditorsInput No

AdminCreateOrConnectWithoutStudiesInput

Name Type Nullable
where AdminWhereUniqueInput No
create AdminCreateWithoutStudiesInput | AdminUncheckedCreateWithoutStudiesInput No

AdminCreateWithoutAuditedStudiesInput

Name Type Nullable
id String No
position String | Null Yes
image String | Null Yes
user UserCreateNestedOneWithoutAdminInput No
studies StudyCreateNestedManyWithoutCdpsInput No

AdminUncheckedCreateWithoutAuditedStudiesInput

Name Type Nullable
id String No
userId String No
position String | Null Yes
image String | Null Yes
studies StudyUncheckedCreateNestedManyWithoutCdpsInput No

AdminCreateOrConnectWithoutAuditedStudiesInput

Name Type Nullable
where AdminWhereUniqueInput No
create AdminCreateWithoutAuditedStudiesInput | AdminUncheckedCreateWithoutAuditedStudiesInput No

StudyInfosCreateWithoutStudyInput

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

StudyInfosUncheckedCreateWithoutStudyInput

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

StudyInfosCreateOrConnectWithoutStudyInput

Name Type Nullable
where StudyInfosWhereUniqueInput No
create StudyInfosCreateWithoutStudyInput | StudyInfosUncheckedCreateWithoutStudyInput No

StudyProceedingsCreateWithoutStudyInput

Name Type Nullable
id String No
studyProcessStep StudyProgressStep No
phases PhaseCreateNestedManyWithoutStudyProceedingsInput No

StudyProceedingsUncheckedCreateWithoutStudyInput

Name Type Nullable
id String No
studyProcessStep StudyProgressStep No
phases PhaseUncheckedCreateNestedManyWithoutStudyProceedingsInput No

StudyProceedingsCreateOrConnectWithoutStudyInput

Name Type Nullable
where StudyProceedingsWhereUniqueInput No
create StudyProceedingsCreateWithoutStudyInput | StudyProceedingsUncheckedCreateWithoutStudyInput No

StudyClientCreateWithoutStudyInput

Name Type Nullable
id String No
client ClientCreateNestedOneWithoutStudyClientsInput No
satisfaction SatisfactionCreateNestedOneWithoutStudyClientInput No

StudyClientUncheckedCreateWithoutStudyInput

Name Type Nullable
id String No
clientId String No
satisfaction SatisfactionUncheckedCreateNestedOneWithoutStudyClientInput No

StudyClientCreateOrConnectWithoutStudyInput

Name Type Nullable
where StudyClientWhereUniqueInput No
create StudyClientCreateWithoutStudyInput | StudyClientUncheckedCreateWithoutStudyInput No

StudyClientCreateManyStudyInputEnvelope

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

MriCreateWithoutStudyInput

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

MriUncheckedCreateWithoutStudyInput

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

MriCreateOrConnectWithoutStudyInput

Name Type Nullable
where MriWhereUniqueInput No
create MriCreateWithoutStudyInput | MriUncheckedCreateWithoutStudyInput No

StudyAssigneeCreateWithoutStudyInput

Name Type Nullable
id String No
selectionNotes String No
taken Boolean No
assignee AssigneeCreateNestedOneWithoutStudyAssignInput No
formInterview FormInterviewsCreateNestedOneWithoutStudyAssigneesInput No
mriForm MriFormCreateNestedOneWithoutStudyAssigneesInput No

StudyAssigneeUncheckedCreateWithoutStudyInput

Name Type Nullable
id String No
assigneeId String No
formInterviewId String No
mriFormId String No
selectionNotes String No
taken Boolean No

StudyAssigneeCreateOrConnectWithoutStudyInput

Name Type Nullable
where StudyAssigneeWhereUniqueInput No
create StudyAssigneeCreateWithoutStudyInput | StudyAssigneeUncheckedCreateWithoutStudyInput No

StudyAssigneeCreateManyStudyInputEnvelope

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

SatisfactionCreateWithoutStudyInput

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

SatisfactionUncheckedCreateWithoutStudyInput

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

SatisfactionCreateOrConnectWithoutStudyInput

Name Type Nullable
where SatisfactionWhereUniqueInput No
create SatisfactionCreateWithoutStudyInput | SatisfactionUncheckedCreateWithoutStudyInput No


AdminUpdateWithWhereUniqueWithoutStudiesInput

Name Type Nullable
where AdminWhereUniqueInput No
data AdminUpdateWithoutStudiesInput | AdminUncheckedUpdateWithoutStudiesInput No

AdminUpdateManyWithWhereWithoutStudiesInput

Name Type Nullable
where AdminScalarWhereInput No
data AdminUpdateManyMutationInput | AdminUncheckedUpdateManyWithoutStudiesInput No

AdminScalarWhereInput

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


AdminUpdateWithWhereUniqueWithoutAuditedStudiesInput

Name Type Nullable
where AdminWhereUniqueInput No
data AdminUpdateWithoutAuditedStudiesInput | AdminUncheckedUpdateWithoutAuditedStudiesInput No

AdminUpdateManyWithWhereWithoutAuditedStudiesInput

Name Type Nullable
where AdminScalarWhereInput No
data AdminUpdateManyMutationInput | AdminUncheckedUpdateManyWithoutAuditedStudiesInput No


StudyInfosUpdateToOneWithWhereWithoutStudyInput

Name Type Nullable
where StudyInfosWhereInput No
data StudyInfosUpdateWithoutStudyInput | StudyInfosUncheckedUpdateWithoutStudyInput No

StudyInfosUpdateWithoutStudyInput

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

StudyInfosUncheckedUpdateWithoutStudyInput

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


StudyProceedingsUpdateToOneWithWhereWithoutStudyInput

Name Type Nullable
where StudyProceedingsWhereInput No
data StudyProceedingsUpdateWithoutStudyInput | StudyProceedingsUncheckedUpdateWithoutStudyInput No

StudyProceedingsUpdateWithoutStudyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
studyProcessStep StudyProgressStep | EnumStudyProgressStepFieldUpdateOperationsInput No
phases PhaseUpdateManyWithoutStudyProceedingsNestedInput No

StudyProceedingsUncheckedUpdateWithoutStudyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
studyProcessStep StudyProgressStep | EnumStudyProgressStepFieldUpdateOperationsInput No
phases PhaseUncheckedUpdateManyWithoutStudyProceedingsNestedInput No


StudyClientUpdateWithWhereUniqueWithoutStudyInput

Name Type Nullable
where StudyClientWhereUniqueInput No
data StudyClientUpdateWithoutStudyInput | StudyClientUncheckedUpdateWithoutStudyInput No

StudyClientUpdateManyWithWhereWithoutStudyInput

Name Type Nullable
where StudyClientScalarWhereInput No
data StudyClientUpdateManyMutationInput | StudyClientUncheckedUpdateManyWithoutStudyInput No


MriUpdateToOneWithWhereWithoutStudyInput

Name Type Nullable
where MriWhereInput No
data MriUpdateWithoutStudyInput | MriUncheckedUpdateWithoutStudyInput No

MriUpdateWithoutStudyInput

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

MriUncheckedUpdateWithoutStudyInput

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


StudyAssigneeUpdateWithWhereUniqueWithoutStudyInput

Name Type Nullable
where StudyAssigneeWhereUniqueInput No
data StudyAssigneeUpdateWithoutStudyInput | StudyAssigneeUncheckedUpdateWithoutStudyInput No

StudyAssigneeUpdateManyWithWhereWithoutStudyInput

Name Type Nullable
where StudyAssigneeScalarWhereInput No
data StudyAssigneeUpdateManyMutationInput | StudyAssigneeUncheckedUpdateManyWithoutStudyInput No


SatisfactionUpdateToOneWithWhereWithoutStudyInput

Name Type Nullable
where SatisfactionWhereInput No
data SatisfactionUpdateWithoutStudyInput | SatisfactionUncheckedUpdateWithoutStudyInput No

SatisfactionUpdateWithoutStudyInput

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

SatisfactionUncheckedUpdateWithoutStudyInput

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

StudyCreateWithoutInformationInput

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


StudyCreateOrConnectWithoutInformationInput

Name Type Nullable
where StudyWhereUniqueInput No
create StudyCreateWithoutInformationInput | StudyUncheckedCreateWithoutInformationInput No


StudyUpdateToOneWithWhereWithoutInformationInput

Name Type Nullable
where StudyWhereInput No
data StudyUpdateWithoutInformationInput | StudyUncheckedUpdateWithoutInformationInput No



PhaseCreateWithoutStudyProceedingsInput

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

PhaseUncheckedCreateWithoutStudyProceedingsInput

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

PhaseCreateOrConnectWithoutStudyProceedingsInput

Name Type Nullable
where PhaseWhereUniqueInput No
create PhaseCreateWithoutStudyProceedingsInput | PhaseUncheckedCreateWithoutStudyProceedingsInput No

PhaseCreateManyStudyProceedingsInputEnvelope

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

StudyCreateWithoutStudyProceedingsInput

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

StudyUncheckedCreateWithoutStudyProceedingsInput

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

StudyCreateOrConnectWithoutStudyProceedingsInput

Name Type Nullable
where StudyWhereUniqueInput No
create StudyCreateWithoutStudyProceedingsInput | StudyUncheckedCreateWithoutStudyProceedingsInput No


PhaseUpdateWithWhereUniqueWithoutStudyProceedingsInput

Name Type Nullable
where PhaseWhereUniqueInput No
data PhaseUpdateWithoutStudyProceedingsInput | PhaseUncheckedUpdateWithoutStudyProceedingsInput No

PhaseUpdateManyWithWhereWithoutStudyProceedingsInput

Name Type Nullable
where PhaseScalarWhereInput No
data PhaseUpdateManyMutationInput | PhaseUncheckedUpdateManyWithoutStudyProceedingsInput No

PhaseScalarWhereInput

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


StudyUpdateToOneWithWhereWithoutStudyProceedingsInput

Name Type Nullable
where StudyWhereInput No
data StudyUpdateWithoutStudyProceedingsInput | StudyUncheckedUpdateWithoutStudyProceedingsInput No



DeliverableCreateWithoutPhaseInput

Name Type Nullable
id String No
description String No
status DeliverableStatus No

DeliverableUncheckedCreateWithoutPhaseInput

Name Type Nullable
id String No
description String No
status DeliverableStatus No

DeliverableCreateOrConnectWithoutPhaseInput

Name Type Nullable
where DeliverableWhereUniqueInput No
create DeliverableCreateWithoutPhaseInput | DeliverableUncheckedCreateWithoutPhaseInput No

StudyProceedingsCreateWithoutPhasesInput

Name Type Nullable
id String No
studyProcessStep StudyProgressStep No
study StudyCreateNestedOneWithoutStudyProceedingsInput No

StudyProceedingsUncheckedCreateWithoutPhasesInput

Name Type Nullable
id String No
studyId String No
studyProcessStep StudyProgressStep No

StudyProceedingsCreateOrConnectWithoutPhasesInput

Name Type Nullable
where StudyProceedingsWhereUniqueInput No
create StudyProceedingsCreateWithoutPhasesInput | StudyProceedingsUncheckedCreateWithoutPhasesInput No


DeliverableUpdateToOneWithWhereWithoutPhaseInput

Name Type Nullable
where DeliverableWhereInput No
data DeliverableUpdateWithoutPhaseInput | DeliverableUncheckedUpdateWithoutPhaseInput No

DeliverableUpdateWithoutPhaseInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
status DeliverableStatus | EnumDeliverableStatusFieldUpdateOperationsInput No

DeliverableUncheckedUpdateWithoutPhaseInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
status DeliverableStatus | EnumDeliverableStatusFieldUpdateOperationsInput No


StudyProceedingsUpdateToOneWithWhereWithoutPhasesInput

Name Type Nullable
where StudyProceedingsWhereInput No
data StudyProceedingsUpdateWithoutPhasesInput | StudyProceedingsUncheckedUpdateWithoutPhasesInput No

StudyProceedingsUpdateWithoutPhasesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
studyProcessStep StudyProgressStep | EnumStudyProgressStepFieldUpdateOperationsInput No
study StudyUpdateOneRequiredWithoutStudyProceedingsNestedInput No

StudyProceedingsUncheckedUpdateWithoutPhasesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
studyId String | StringFieldUpdateOperationsInput No
studyProcessStep StudyProgressStep | EnumStudyProgressStepFieldUpdateOperationsInput No

PhaseCreateWithoutDeliverableInput

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

PhaseUncheckedCreateWithoutDeliverableInput

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

PhaseCreateOrConnectWithoutDeliverableInput

Name Type Nullable
where PhaseWhereUniqueInput No
create PhaseCreateWithoutDeliverableInput | PhaseUncheckedCreateWithoutDeliverableInput No


PhaseUpdateToOneWithWhereWithoutDeliverableInput

Name Type Nullable
where PhaseWhereInput No
data PhaseUpdateWithoutDeliverableInput | PhaseUncheckedUpdateWithoutDeliverableInput No

PhaseUpdateWithoutDeliverableInput

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

PhaseUncheckedUpdateWithoutDeliverableInput

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



StudyUncheckedUpdateManyWithoutCdpsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
informationId String | StringFieldUpdateOperationsInput No
studyProceedingsId String | NullableStringFieldUpdateOperationsInput | Null Yes



StudyUncheckedUpdateManyWithoutAuditorsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
informationId String | StringFieldUpdateOperationsInput No
studyProceedingsId String | NullableStringFieldUpdateOperationsInput | Null Yes

UserCreateManySettingsInput

Name Type Nullable
id String No
personId String No

UserUpdateWithoutSettingsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
person PersonUpdateOneRequiredWithoutUserNestedInput No
admin AdminUpdateOneWithoutUserNestedInput No

UserUncheckedUpdateWithoutSettingsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
personId String | StringFieldUpdateOperationsInput No
admin AdminUncheckedUpdateOneWithoutUserNestedInput No

UserUncheckedUpdateManyWithoutSettingsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
personId String | StringFieldUpdateOperationsInput No

StudyClientCreateManyClientInput

Name Type Nullable
id String No
studyId String No

StudyClientUpdateWithoutClientInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
study StudyUpdateOneRequiredWithoutClientsNestedInput No
satisfaction SatisfactionUpdateOneWithoutStudyClientNestedInput No

StudyClientUncheckedUpdateWithoutClientInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
studyId String | StringFieldUpdateOperationsInput No
satisfaction SatisfactionUncheckedUpdateOneWithoutStudyClientNestedInput No

StudyClientUncheckedUpdateManyWithoutClientInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
studyId String | StringFieldUpdateOperationsInput No

ClientCreateManyCompanyInput

Name Type Nullable
id String No
privateIndividual Boolean No
personId String No
job String No

ClientUpdateWithoutCompanyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
privateIndividual Boolean | BoolFieldUpdateOperationsInput No
job String | StringFieldUpdateOperationsInput No
person PersonUpdateOneRequiredWithoutClientsNestedInput No
studyClients StudyClientUpdateManyWithoutClientNestedInput No

ClientUncheckedUpdateWithoutCompanyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
privateIndividual Boolean | BoolFieldUpdateOperationsInput No
personId String | StringFieldUpdateOperationsInput No
job String | StringFieldUpdateOperationsInput No
studyClients StudyClientUncheckedUpdateManyWithoutClientNestedInput No

ClientUncheckedUpdateManyWithoutCompanyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
privateIndividual Boolean | BoolFieldUpdateOperationsInput No
personId String | StringFieldUpdateOperationsInput No
job String | StringFieldUpdateOperationsInput No

CompanyCreateManyCompanyInfosInput

Name Type Nullable
id String No
name String No

CompanyUpdateWithoutCompanyInfosInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
address AddressUpdateOneWithoutCompanyNestedInput No
members ClientUpdateManyWithoutCompanyNestedInput No

CompanyUncheckedUpdateWithoutCompanyInfosInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
address AddressUncheckedUpdateOneWithoutCompanyNestedInput No
members ClientUncheckedUpdateManyWithoutCompanyNestedInput No

CompanyUncheckedUpdateManyWithoutCompanyInfosInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No

DocumentCreateManyStatusInput

Name Type Nullable
id String No
title String No
googleId String No
type String No
studyDocsId String | Null Yes

DocumentUpdateWithoutStatusInput

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

DocumentUncheckedUpdateWithoutStatusInput

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

DocumentUncheckedUpdateManyWithoutStatusInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
googleId String | StringFieldUpdateOperationsInput No
type String | StringFieldUpdateOperationsInput No
studyDocsId String | NullableStringFieldUpdateOperationsInput | Null Yes

MriFormCreateManyMriInput

Name Type Nullable
id String No
experience String No
knowledge String No
ideas String No
jeExperience Int No

MriFormUpdateWithoutMriInput

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

MriFormUncheckedUpdateWithoutMriInput

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

MriFormUncheckedUpdateManyWithoutMriInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
experience String | StringFieldUpdateOperationsInput No
knowledge String | StringFieldUpdateOperationsInput No
ideas String | StringFieldUpdateOperationsInput No
jeExperience Int | IntFieldUpdateOperationsInput No

AssigneeDocsCreateManyAssigneeInput

Name Type Nullable
id String No
cniId String No
socialSecurityId String No
studentCardId String No

StudyAssigneeCreateManyAssigneeInput

Name Type Nullable
id String No
studyId String No
formInterviewId String No
mriFormId String No
selectionNotes String No
taken Boolean No


AssigneeDocsUncheckedUpdateWithoutAssigneeInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
cniId String | StringFieldUpdateOperationsInput No
socialSecurityId String | StringFieldUpdateOperationsInput No
studentCardId String | StringFieldUpdateOperationsInput No

AssigneeDocsUncheckedUpdateManyWithoutAssigneeInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
cniId String | StringFieldUpdateOperationsInput No
socialSecurityId String | StringFieldUpdateOperationsInput No
studentCardId String | StringFieldUpdateOperationsInput No


StudyAssigneeUncheckedUpdateWithoutAssigneeInput

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

StudyAssigneeUncheckedUpdateManyWithoutAssigneeInput

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

StudyClientCreateManyStudyInput

Name Type Nullable
id String No
clientId String No

StudyAssigneeCreateManyStudyInput

Name Type Nullable
id String No
assigneeId String No
formInterviewId String No
mriFormId String No
selectionNotes String No
taken Boolean No

AdminUpdateWithoutStudiesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
position String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
user UserUpdateOneRequiredWithoutAdminNestedInput No
auditedStudies StudyUpdateManyWithoutAuditorsNestedInput No

AdminUncheckedUpdateWithoutStudiesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No
position String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
auditedStudies StudyUncheckedUpdateManyWithoutAuditorsNestedInput No

AdminUncheckedUpdateManyWithoutStudiesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No
position String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes

AdminUpdateWithoutAuditedStudiesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
position String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
user UserUpdateOneRequiredWithoutAdminNestedInput No
studies StudyUpdateManyWithoutCdpsNestedInput No

AdminUncheckedUpdateWithoutAuditedStudiesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No
position String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
studies StudyUncheckedUpdateManyWithoutCdpsNestedInput No

AdminUncheckedUpdateManyWithoutAuditedStudiesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No
position String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes

StudyClientUpdateWithoutStudyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
client ClientUpdateOneRequiredWithoutStudyClientsNestedInput No
satisfaction SatisfactionUpdateOneWithoutStudyClientNestedInput No

StudyClientUncheckedUpdateWithoutStudyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
clientId String | StringFieldUpdateOperationsInput No
satisfaction SatisfactionUncheckedUpdateOneWithoutStudyClientNestedInput No

StudyClientUncheckedUpdateManyWithoutStudyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
clientId String | StringFieldUpdateOperationsInput No


StudyAssigneeUncheckedUpdateWithoutStudyInput

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

StudyAssigneeUncheckedUpdateManyWithoutStudyInput

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

PhaseCreateManyStudyProceedingsInput

Name Type Nullable
id String No
jehs Int No
title String No
unitPrice Float No
startDate DateTime | Null Yes
endDate DateTime | Null Yes

PhaseUpdateWithoutStudyProceedingsInput

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

PhaseUncheckedUpdateWithoutStudyProceedingsInput

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

PhaseUncheckedUpdateManyWithoutStudyProceedingsInput

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

Output Types

Person

Name Type Nullable
id String Yes
email String No
firstName String Yes
lastName String Yes
number String No
address Address No
user User No
assignee Assignee No
clients Client No

User

Name Type Nullable
id String Yes
personId String Yes
userSettingsId String No
person Person Yes
settings UserSettings No
admin Admin No

Admin

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

UserSettings

Name Type Nullable
id String Yes
theme String Yes
notificationLevel NotificationLevel Yes
gui Boolean Yes
User User[] No
_count UserSettingsCountOutputType Yes

Address

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

Client

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

StudyClient

Name Type Nullable
id String Yes
studyId String Yes
clientId String Yes
study Study Yes
client Client Yes
satisfaction Satisfaction No

Satisfaction

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

Company

Name Type Nullable
id String Yes
name String Yes
companyInfosId String Yes
address Address No
companyInfos CompanyInfos Yes
members Client[] No
_count CompanyCountOutputType Yes

CompanyInfos

Name Type Nullable
id String Yes
domains Domain[] No
ca Int No
size CompanySize No
company Company[] No
_count CompanyInfosCountOutputType Yes

Document

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

Status

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

Mri

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

Assignee

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

AssigneeInfos

Name Type Nullable
id String Yes
assigneeId String Yes
age Int Yes
promotion Int Yes
hasScholarship Boolean Yes
oldJet Boolean Yes
assignee Assignee Yes

AssigneeDocs

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

StudyAssignee

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

MriForm

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

FormInterviews

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

Study

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

StudyInfos

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

StudyProceedings

Name Type Nullable
id String Yes
studyId String Yes
studyProcessStep StudyProgressStep Yes
phases Phase[] No
study Study Yes
_count StudyProceedingsCountOutputType Yes

Phase

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

Deliverable

Name Type Nullable
id String Yes
description String Yes
status DeliverableStatus Yes
phaseId String Yes
phase Phase Yes

CreateManyPersonAndReturnOutputType

Name Type Nullable
id String Yes
email String No
firstName String Yes
lastName String Yes
number String No

UpdateManyPersonAndReturnOutputType

Name Type Nullable
id String Yes
email String No
firstName String Yes
lastName String Yes
number String No

CreateManyUserAndReturnOutputType

Name Type Nullable
id String Yes
personId String Yes
userSettingsId String No
person Person Yes
settings UserSettings No

UpdateManyUserAndReturnOutputType

Name Type Nullable
id String Yes
personId String Yes
userSettingsId String No
person Person Yes
settings UserSettings No

CreateManyAdminAndReturnOutputType

Name Type Nullable
id String Yes
userId String Yes
position String No
image String No
user User Yes

UpdateManyAdminAndReturnOutputType

Name Type Nullable
id String Yes
userId String Yes
position String No
image String No
user User Yes

CreateManyUserSettingsAndReturnOutputType

Name Type Nullable
id String Yes
theme String Yes
notificationLevel NotificationLevel Yes
gui Boolean Yes

UpdateManyUserSettingsAndReturnOutputType

Name Type Nullable
id String Yes
theme String Yes
notificationLevel NotificationLevel Yes
gui Boolean Yes

CreateManyAddressAndReturnOutputType

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

UpdateManyAddressAndReturnOutputType

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

CreateManyClientAndReturnOutputType

Name Type Nullable
id String Yes
privateIndividual Boolean Yes
companyId String No
personId String Yes
job String Yes
company Company No
person Person Yes

UpdateManyClientAndReturnOutputType

Name Type Nullable
id String Yes
privateIndividual Boolean Yes
companyId String No
personId String Yes
job String Yes
company Company No
person Person Yes

CreateManyStudyClientAndReturnOutputType

Name Type Nullable
id String Yes
studyId String Yes
clientId String Yes
study Study Yes
client Client Yes

UpdateManyStudyClientAndReturnOutputType

Name Type Nullable
id String Yes
studyId String Yes
clientId String Yes
study Study Yes
client Client Yes

CreateManySatisfactionAndReturnOutputType

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

UpdateManySatisfactionAndReturnOutputType

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

CreateManyCompanyAndReturnOutputType

Name Type Nullable
id String Yes
name String Yes
companyInfosId String Yes
companyInfos CompanyInfos Yes

UpdateManyCompanyAndReturnOutputType

Name Type Nullable
id String Yes
name String Yes
companyInfosId String Yes
companyInfos CompanyInfos Yes

CreateManyCompanyInfosAndReturnOutputType

Name Type Nullable
id String Yes
domains Domain[] No
ca Int No
size CompanySize No

UpdateManyCompanyInfosAndReturnOutputType

Name Type Nullable
id String Yes
domains Domain[] No
ca Int No
size CompanySize No

CreateManyDocumentAndReturnOutputType

Name Type Nullable
id String Yes
title String Yes
googleId String Yes
type String Yes
studyDocsId String No
statusId String No
status Status No

UpdateManyDocumentAndReturnOutputType

Name Type Nullable
id String Yes
title String Yes
googleId String Yes
type String Yes
studyDocsId String No
statusId String No
status Status No

CreateManyStatusAndReturnOutputType

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

UpdateManyStatusAndReturnOutputType

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

CreateManyMriAndReturnOutputType

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

UpdateManyMriAndReturnOutputType

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

CreateManyAssigneeAndReturnOutputType

Name Type Nullable
id String Yes
nbApplications Int Yes
peopleId String Yes
person Person Yes

UpdateManyAssigneeAndReturnOutputType

Name Type Nullable
id String Yes
nbApplications Int Yes
peopleId String Yes
person Person Yes

CreateManyAssigneeInfosAndReturnOutputType

Name Type Nullable
id String Yes
assigneeId String Yes
age Int Yes
promotion Int Yes
hasScholarship Boolean Yes
oldJet Boolean Yes
assignee Assignee Yes

UpdateManyAssigneeInfosAndReturnOutputType

Name Type Nullable
id String Yes
assigneeId String Yes
age Int Yes
promotion Int Yes
hasScholarship Boolean Yes
oldJet Boolean Yes
assignee Assignee Yes

CreateManyAssigneeDocsAndReturnOutputType

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

UpdateManyAssigneeDocsAndReturnOutputType

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

CreateManyStudyAssigneeAndReturnOutputType

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

UpdateManyStudyAssigneeAndReturnOutputType

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

CreateManyMriFormAndReturnOutputType

Name Type Nullable
id String Yes
mriId String Yes
experience String Yes
knowledge String Yes
ideas String Yes
jeExperience Int Yes
mri Mri Yes

UpdateManyMriFormAndReturnOutputType

Name Type Nullable
id String Yes
mriId String Yes
experience String Yes
knowledge String Yes
ideas String Yes
jeExperience Int Yes
mri Mri Yes

CreateManyFormInterviewsAndReturnOutputType

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

UpdateManyFormInterviewsAndReturnOutputType

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

CreateManyStudyAndReturnOutputType

Name Type Nullable
id String Yes
informationId String Yes
studyProceedingsId String No
information StudyInfos Yes

UpdateManyStudyAndReturnOutputType

Name Type Nullable
id String Yes
informationId String Yes
studyProceedingsId String No
information StudyInfos Yes

CreateManyStudyInfosAndReturnOutputType

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

UpdateManyStudyInfosAndReturnOutputType

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

CreateManyStudyProceedingsAndReturnOutputType

Name Type Nullable
id String Yes
studyId String Yes
studyProcessStep StudyProgressStep Yes
study Study Yes

UpdateManyStudyProceedingsAndReturnOutputType

Name Type Nullable
id String Yes
studyId String Yes
studyProcessStep StudyProgressStep Yes
study Study Yes

CreateManyPhaseAndReturnOutputType

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

UpdateManyPhaseAndReturnOutputType

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

CreateManyDeliverableAndReturnOutputType

Name Type Nullable
id String Yes
description String Yes
status DeliverableStatus Yes
phaseId String Yes
phase Phase Yes

UpdateManyDeliverableAndReturnOutputType

Name Type Nullable
id String Yes
description String Yes
status DeliverableStatus Yes
phaseId String Yes
phase Phase Yes

AggregatePerson

Name Type Nullable
_count PersonCountAggregateOutputType No
_min PersonMinAggregateOutputType No
_max PersonMaxAggregateOutputType No

PersonGroupByOutputType

Name Type Nullable
id String Yes
email String No
firstName String Yes
lastName String Yes
number String No
_count PersonCountAggregateOutputType No
_min PersonMinAggregateOutputType No
_max PersonMaxAggregateOutputType No

AggregateUser

Name Type Nullable
_count UserCountAggregateOutputType No
_min UserMinAggregateOutputType No
_max UserMaxAggregateOutputType No

UserGroupByOutputType

Name Type Nullable
id String Yes
personId String Yes
userSettingsId String No
_count UserCountAggregateOutputType No
_min UserMinAggregateOutputType No
_max UserMaxAggregateOutputType No

AggregateAdmin

Name Type Nullable
_count AdminCountAggregateOutputType No
_min AdminMinAggregateOutputType No
_max AdminMaxAggregateOutputType No

AdminGroupByOutputType

Name Type Nullable
id String Yes
userId String Yes
position String No
image String No
_count AdminCountAggregateOutputType No
_min AdminMinAggregateOutputType No
_max AdminMaxAggregateOutputType No

AggregateUserSettings

Name Type Nullable
_count UserSettingsCountAggregateOutputType No
_min UserSettingsMinAggregateOutputType No
_max UserSettingsMaxAggregateOutputType No

UserSettingsGroupByOutputType

Name Type Nullable
id String Yes
theme String Yes
notificationLevel NotificationLevel Yes
gui Boolean Yes
_count UserSettingsCountAggregateOutputType No
_min UserSettingsMinAggregateOutputType No
_max UserSettingsMaxAggregateOutputType No

AggregateAddress

Name Type Nullable
_count AddressCountAggregateOutputType No
_min AddressMinAggregateOutputType No
_max AddressMaxAggregateOutputType No

AddressGroupByOutputType

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

AggregateClient

Name Type Nullable
_count ClientCountAggregateOutputType No
_min ClientMinAggregateOutputType No
_max ClientMaxAggregateOutputType No

ClientGroupByOutputType

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

AggregateStudyClient

Name Type Nullable
_count StudyClientCountAggregateOutputType No
_min StudyClientMinAggregateOutputType No
_max StudyClientMaxAggregateOutputType No

StudyClientGroupByOutputType

Name Type Nullable
id String Yes
studyId String Yes
clientId String Yes
_count StudyClientCountAggregateOutputType No
_min StudyClientMinAggregateOutputType No
_max StudyClientMaxAggregateOutputType No


SatisfactionGroupByOutputType

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

AggregateCompany

Name Type Nullable
_count CompanyCountAggregateOutputType No
_min CompanyMinAggregateOutputType No
_max CompanyMaxAggregateOutputType No

CompanyGroupByOutputType

Name Type Nullable
id String Yes
name String Yes
companyInfosId String Yes
_count CompanyCountAggregateOutputType No
_min CompanyMinAggregateOutputType No
_max CompanyMaxAggregateOutputType No


CompanyInfosGroupByOutputType

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

AggregateDocument

Name Type Nullable
_count DocumentCountAggregateOutputType No
_min DocumentMinAggregateOutputType No
_max DocumentMaxAggregateOutputType No

DocumentGroupByOutputType

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

AggregateStatus

Name Type Nullable
_count StatusCountAggregateOutputType No
_min StatusMinAggregateOutputType No
_max StatusMaxAggregateOutputType No

StatusGroupByOutputType

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


MriGroupByOutputType

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


AssigneeGroupByOutputType

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


AssigneeInfosGroupByOutputType

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

AggregateAssigneeDocs

Name Type Nullable
_count AssigneeDocsCountAggregateOutputType No
_min AssigneeDocsMinAggregateOutputType No
_max AssigneeDocsMaxAggregateOutputType No

AssigneeDocsGroupByOutputType

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

AggregateStudyAssignee

Name Type Nullable
_count StudyAssigneeCountAggregateOutputType No
_min StudyAssigneeMinAggregateOutputType No
_max StudyAssigneeMaxAggregateOutputType No

StudyAssigneeGroupByOutputType

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


MriFormGroupByOutputType

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


FormInterviewsGroupByOutputType

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

AggregateStudy

Name Type Nullable
_count StudyCountAggregateOutputType No
_min StudyMinAggregateOutputType No
_max StudyMaxAggregateOutputType No

StudyGroupByOutputType

Name Type Nullable
id String Yes
informationId String Yes
studyProceedingsId String No
_count StudyCountAggregateOutputType No
_min StudyMinAggregateOutputType No
_max StudyMaxAggregateOutputType No


StudyInfosGroupByOutputType

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


StudyProceedingsGroupByOutputType

Name Type Nullable
id String Yes
studyId String Yes
studyProcessStep StudyProgressStep Yes
_count StudyProceedingsCountAggregateOutputType No
_min StudyProceedingsMinAggregateOutputType No
_max StudyProceedingsMaxAggregateOutputType No


PhaseGroupByOutputType

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

AggregateDeliverable

Name Type Nullable
_count DeliverableCountAggregateOutputType No
_min DeliverableMinAggregateOutputType No
_max DeliverableMaxAggregateOutputType No

DeliverableGroupByOutputType

Name Type Nullable
id String Yes
description String Yes
status DeliverableStatus Yes
phaseId String Yes
_count DeliverableCountAggregateOutputType No
_min DeliverableMinAggregateOutputType No
_max DeliverableMaxAggregateOutputType No

AffectedRowsOutput

Name Type Nullable
count Int Yes

PersonCountAggregateOutputType

Name Type Nullable
id Int Yes
email Int Yes
firstName Int Yes
lastName Int Yes
number Int Yes
_all Int Yes

PersonMinAggregateOutputType

Name Type Nullable
id String No
email String No
firstName String No
lastName String No
number String No

PersonMaxAggregateOutputType

Name Type Nullable
id String No
email String No
firstName String No
lastName String No
number String No

UserCountAggregateOutputType

Name Type Nullable
id Int Yes
personId Int Yes
userSettingsId Int Yes
_all Int Yes

UserMinAggregateOutputType

Name Type Nullable
id String No
personId String No
userSettingsId String No

UserMaxAggregateOutputType

Name Type Nullable
id String No
personId String No
userSettingsId String No

AdminCountOutputType

Name Type Nullable
studies Int Yes
auditedStudies Int Yes

AdminCountAggregateOutputType

Name Type Nullable
id Int Yes
userId Int Yes
position Int Yes
image Int Yes
_all Int Yes

AdminMinAggregateOutputType

Name Type Nullable
id String No
userId String No
position String No
image String No

AdminMaxAggregateOutputType

Name Type Nullable
id String No
userId String No
position String No
image String No

UserSettingsCountOutputType

Name Type Nullable
User Int Yes

UserSettingsCountAggregateOutputType

Name Type Nullable
id Int Yes
theme Int Yes
notificationLevel Int Yes
gui Int Yes
_all Int Yes

UserSettingsMinAggregateOutputType

Name Type Nullable
id String No
theme String No
notificationLevel NotificationLevel No
gui Boolean No

UserSettingsMaxAggregateOutputType

Name Type Nullable
id String No
theme String No
notificationLevel NotificationLevel No
gui Boolean No

AddressCountAggregateOutputType

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

AddressMinAggregateOutputType

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

AddressMaxAggregateOutputType

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

ClientCountOutputType

Name Type Nullable
studyClients Int Yes

ClientCountAggregateOutputType

Name Type Nullable
id Int Yes
privateIndividual Int Yes
companyId Int Yes
personId Int Yes
job Int Yes
_all Int Yes

ClientMinAggregateOutputType

Name Type Nullable
id String No
privateIndividual Boolean No
companyId String No
personId String No
job String No

ClientMaxAggregateOutputType

Name Type Nullable
id String No
privateIndividual Boolean No
companyId String No
personId String No
job String No

StudyClientCountAggregateOutputType

Name Type Nullable
id Int Yes
studyId Int Yes
clientId Int Yes
_all Int Yes

StudyClientMinAggregateOutputType

Name Type Nullable
id String No
studyId String No
clientId String No

StudyClientMaxAggregateOutputType

Name Type Nullable
id String No
studyId String No
clientId String No

SatisfactionCountAggregateOutputType

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

SatisfactionAvgAggregateOutputType

Name Type Nullable
satisfactionObjectives Float No
easiness Float No
timeElapsed Float No
recommendUs Float No

SatisfactionSumAggregateOutputType

Name Type Nullable
satisfactionObjectives Int No
easiness Int No
timeElapsed Int No
recommendUs Int No

SatisfactionMinAggregateOutputType

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

SatisfactionMaxAggregateOutputType

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

CompanyCountOutputType

Name Type Nullable
members Int Yes

CompanyCountAggregateOutputType

Name Type Nullable
id Int Yes
name Int Yes
companyInfosId Int Yes
_all Int Yes

CompanyMinAggregateOutputType

Name Type Nullable
id String No
name String No
companyInfosId String No

CompanyMaxAggregateOutputType

Name Type Nullable
id String No
name String No
companyInfosId String No

CompanyInfosCountOutputType

Name Type Nullable
company Int Yes

CompanyInfosCountAggregateOutputType

Name Type Nullable
id Int Yes
domains Int Yes
ca Int Yes
size Int Yes
_all Int Yes

CompanyInfosAvgAggregateOutputType

Name Type Nullable
ca Float No

CompanyInfosSumAggregateOutputType

Name Type Nullable
ca Int No

CompanyInfosMinAggregateOutputType

Name Type Nullable
id String No
ca Int No
size CompanySize No

CompanyInfosMaxAggregateOutputType

Name Type Nullable
id String No
ca Int No
size CompanySize No

DocumentCountAggregateOutputType

Name Type Nullable
id Int Yes
title Int Yes
googleId Int Yes
type Int Yes
studyDocsId Int Yes
statusId Int Yes
_all Int Yes

DocumentMinAggregateOutputType

Name Type Nullable
id String No
title String No
googleId String No
type String No
studyDocsId String No
statusId String No

DocumentMaxAggregateOutputType

Name Type Nullable
id String No
title String No
googleId String No
type String No
studyDocsId String No
statusId String No

StatusCountOutputType

Name Type Nullable
document Int Yes

StatusCountAggregateOutputType

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

StatusMinAggregateOutputType

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

StatusMaxAggregateOutputType

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

MriCountOutputType

Name Type Nullable
formMRIs Int Yes

MriCountAggregateOutputType

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

MriAvgAggregateOutputType

Name Type Nullable
wageLowerBound Float No
wageUpperBound Float No

MriSumAggregateOutputType

Name Type Nullable
wageLowerBound Int No
wageUpperBound Int No

MriMinAggregateOutputType

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

MriMaxAggregateOutputType

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

AssigneeCountOutputType

Name Type Nullable
docs Int Yes
studyAssign Int Yes

AssigneeCountAggregateOutputType

Name Type Nullable
id Int Yes
nbApplications Int Yes
peopleId Int Yes
_all Int Yes

AssigneeAvgAggregateOutputType

Name Type Nullable
nbApplications Float No

AssigneeSumAggregateOutputType

Name Type Nullable
nbApplications Int No

AssigneeMinAggregateOutputType

Name Type Nullable
id String No
nbApplications Int No
peopleId String No

AssigneeMaxAggregateOutputType

Name Type Nullable
id String No
nbApplications Int No
peopleId String No

AssigneeInfosCountAggregateOutputType

Name Type Nullable
id Int Yes
assigneeId Int Yes
age Int Yes
promotion Int Yes
hasScholarship Int Yes
oldJet Int Yes
_all Int Yes

AssigneeInfosAvgAggregateOutputType

Name Type Nullable
age Float No
promotion Float No

AssigneeInfosSumAggregateOutputType

Name Type Nullable
age Int No
promotion Int No

AssigneeInfosMinAggregateOutputType

Name Type Nullable
id String No
assigneeId String No
age Int No
promotion Int No
hasScholarship Boolean No
oldJet Boolean No

AssigneeInfosMaxAggregateOutputType

Name Type Nullable
id String No
assigneeId String No
age Int No
promotion Int No
hasScholarship Boolean No
oldJet Boolean No

AssigneeDocsCountAggregateOutputType

Name Type Nullable
id Int Yes
assigneeId Int Yes
cniId Int Yes
socialSecurityId Int Yes
studentCardId Int Yes
_all Int Yes

AssigneeDocsMinAggregateOutputType

Name Type Nullable
id String No
assigneeId String No
cniId String No
socialSecurityId String No
studentCardId String No

AssigneeDocsMaxAggregateOutputType

Name Type Nullable
id String No
assigneeId String No
cniId String No
socialSecurityId String No
studentCardId String No

StudyAssigneeCountAggregateOutputType

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

StudyAssigneeMinAggregateOutputType

Name Type Nullable
id String No
studyId String No
assigneeId String No
formInterviewId String No
mriFormId String No
selectionNotes String No
taken Boolean No

StudyAssigneeMaxAggregateOutputType

Name Type Nullable
id String No
studyId String No
assigneeId String No
formInterviewId String No
mriFormId String No
selectionNotes String No
taken Boolean No

MriFormCountAggregateOutputType

Name Type Nullable
id Int Yes
mriId Int Yes
experience Int Yes
knowledge Int Yes
ideas Int Yes
jeExperience Int Yes
_all Int Yes

MriFormAvgAggregateOutputType

Name Type Nullable
jeExperience Float No

MriFormSumAggregateOutputType

Name Type Nullable
jeExperience Int No

MriFormMinAggregateOutputType

Name Type Nullable
id String No
mriId String No
experience String No
knowledge String No
ideas String No
jeExperience Int No

MriFormMaxAggregateOutputType

Name Type Nullable
id String No
mriId String No
experience String No
knowledge String No
ideas String No
jeExperience Int No

FormInterviewsCountAggregateOutputType

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

FormInterviewsMinAggregateOutputType

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

FormInterviewsMaxAggregateOutputType

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

StudyCountOutputType

Name Type Nullable
cdps Int Yes
auditors Int Yes
clients Int Yes
studyAssignees Int Yes

StudyCountAggregateOutputType

Name Type Nullable
id Int Yes
informationId Int Yes
studyProceedingsId Int Yes
_all Int Yes

StudyMinAggregateOutputType

Name Type Nullable
id String No
informationId String No
studyProceedingsId String No

StudyMaxAggregateOutputType

Name Type Nullable
id String No
informationId String No
studyProceedingsId String No

StudyInfosCountAggregateOutputType

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

StudyInfosAvgAggregateOutputType

Name Type Nullable
applicationFee Float No
estimatedDuration Float No

StudyInfosSumAggregateOutputType

Name Type Nullable
applicationFee Float No
estimatedDuration Int No

StudyInfosMinAggregateOutputType

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

StudyInfosMaxAggregateOutputType

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

StudyProceedingsCountOutputType

Name Type Nullable
phases Int Yes

StudyProceedingsCountAggregateOutputType

Name Type Nullable
id Int Yes
studyId Int Yes
studyProcessStep Int Yes
_all Int Yes

StudyProceedingsMinAggregateOutputType

Name Type Nullable
id String No
studyId String No
studyProcessStep StudyProgressStep No

StudyProceedingsMaxAggregateOutputType

Name Type Nullable
id String No
studyId String No
studyProcessStep StudyProgressStep No

PhaseCountAggregateOutputType

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

PhaseAvgAggregateOutputType

Name Type Nullable
jehs Float No
unitPrice Float No

PhaseSumAggregateOutputType

Name Type Nullable
jehs Int No
unitPrice Float No

PhaseMinAggregateOutputType

Name Type Nullable
id String No
jehs Int No
title String No
unitPrice Float No
startDate DateTime No
endDate DateTime No
studyProceedingsId String No

PhaseMaxAggregateOutputType

Name Type Nullable
id String No
jehs Int No
title String No
unitPrice Float No
startDate DateTime No
endDate DateTime No
studyProceedingsId String No

DeliverableCountAggregateOutputType

Name Type Nullable
id Int Yes
description Int Yes
status Int Yes
phaseId Int Yes
_all Int Yes

DeliverableMinAggregateOutputType

Name Type Nullable
id String No
description String No
status DeliverableStatus No
phaseId String No

DeliverableMaxAggregateOutputType

Name Type Nullable
id String No
description String No
status DeliverableStatus No
phaseId String No