Skip to main content

UserProfile

Represents a user profile in the system, containing personal and professional information about the user.

type UserProfile {
id: ID!
email: String!
firstName: String
lastName: String
dataRoomUsers(
first: Int
after: String
last: Int
before: String
where: DataRoomUserFilterInput
): DataRoomUsersConnection
}

Fields​

UserProfile.id ● ID! non-null scalar​

Represents the unique identifier for the user profile.

UserProfile.email ● String! non-null scalar​

Represents the email address of the user profile.

UserProfile.firstName ● String scalar​

Represents the first name of the user profile.

UserProfile.lastName ● String scalar​

Represents the last name of the user profile.

UserProfile.dataRoomUsers ● DataRoomUsersConnection object​

UserProfile.dataRoomUsers.first ● Int scalar​

Returns the first _n_ elements from the list.

UserProfile.dataRoomUsers.after ● String scalar​

Returns the elements in the list that come after the specified cursor.

UserProfile.dataRoomUsers.last ● Int scalar​

Returns the last _n_ elements from the list.

UserProfile.dataRoomUsers.before ● String scalar​

Returns the elements in the list that come before the specified cursor.

UserProfile.dataRoomUsers.where ● DataRoomUserFilterInput input​

Returned By​

me query