Skip to main content

Profile

No description

type Profile implements Node {
nodeId: ID!
id: String!
firstName: String
preferredFirstName: String
lastName: String
preferredLastName: String
picture: String
preferredPicture: String
jobTitle: String
linkedinUrl: String
version: Int!
updatedAt: Datetime!
createdAt: Datetime!
placeholder: Boolean
placeholderRole: String
deletedAt: Datetime
isSystemPlaceholder: Boolean
timezone: String
phoneNumber: String
meetingUrl: String
locale: String
account: Account
accordMembersByCreatedByIdConnection(
first: Int
last: Int
offset: Int
before: Cursor
after: Cursor
orderBy: [AccordMembersOrderBy!] = [PRIMARY_KEY_ASC]
condition: AccordMemberCondition
filter: AccordMemberFilter
): AccordMembersConnection!
accordMembersByCreatedById(
first: Int
offset: Int
orderBy: [AccordMembersOrderBy!]
condition: AccordMemberCondition
filter: AccordMemberFilter
): [AccordMember!]!
profile: Account
commentsByAccountIdConnection(
first: Int
last: Int
offset: Int
before: Cursor
after: Cursor
orderBy: [CommentsOrderBy!] = [PRIMARY_KEY_ASC]
condition: CommentCondition
filter: CommentFilter
): CommentsConnection!
commentsByAccountId(
first: Int
offset: Int
orderBy: [CommentsOrderBy!]
condition: CommentCondition
filter: CommentFilter
): [Comment!]!
emailsByReceiverIdConnection(
first: Int
last: Int
offset: Int
before: Cursor
after: Cursor
orderBy: [EmailsOrderBy!] = [PRIMARY_KEY_ASC]
condition: EmailCondition
filter: EmailFilter
): EmailsConnection!
emailsByReceiverId(
first: Int
offset: Int
orderBy: [EmailsOrderBy!]
condition: EmailCondition
filter: EmailFilter
): [Email!]!
emailsBySenderIdConnection(
first: Int
last: Int
offset: Int
before: Cursor
after: Cursor
orderBy: [EmailsOrderBy!] = [PRIMARY_KEY_ASC]
condition: EmailCondition
filter: EmailFilter
): EmailsConnection!
emailsBySenderId(
first: Int
offset: Int
orderBy: [EmailsOrderBy!]
condition: EmailCondition
filter: EmailFilter
): [Email!]!
resourcesByOwnerIdConnection(
first: Int
last: Int
offset: Int
before: Cursor
after: Cursor
orderBy: [ResourcesOrderBy!] = [PRIMARY_KEY_ASC]
condition: ResourceCondition
filter: ResourceFilter
): ResourcesConnection!
resourcesByOwnerId(
first: Int
offset: Int
orderBy: [ResourcesOrderBy!]
condition: ResourceCondition
filter: ResourceFilter
): [Resource!]!
stepsByOwnerIdConnection(
first: Int
last: Int
offset: Int
before: Cursor
after: Cursor
orderBy: [StepsOrderBy!] = [PRIMARY_KEY_ASC]
condition: StepCondition
filter: StepFilter
): StepsConnection!
stepsByOwnerId(
first: Int
offset: Int
orderBy: [StepsOrderBy!]
condition: StepCondition
filter: StepFilter
): [Step!]!
stepApprovalsByApprovedByIdConnection(
first: Int
last: Int
offset: Int
before: Cursor
after: Cursor
orderBy: [StepApprovalsOrderBy!] = [PRIMARY_KEY_ASC]
condition: StepApprovalCondition
filter: StepApprovalFilter
): StepApprovalsConnection!
stepApprovalsByApprovedById(
first: Int
offset: Int
orderBy: [StepApprovalsOrderBy!]
condition: StepApprovalCondition
filter: StepApprovalFilter
): [StepApproval!]!
}

Fields

Profile.nodeId ● ID! non-null scalar

A globally unique identifier. Can be used in various places throughout the system to identify this single value.

Profile.id ● String! non-null scalar

Profile.firstName ● String scalar

Profile.preferredFirstName ● String scalar

Profile.lastName ● String scalar

Profile.preferredLastName ● String scalar

Profile.picture ● String scalar

Profile.preferredPicture ● String scalar

Profile.jobTitle ● String scalar

Profile.linkedinUrl ● String scalar

Profile.version ● Int! non-null scalar

Profile.updatedAt ● Datetime! non-null scalar

Profile.createdAt ● Datetime! non-null scalar

Profile.placeholder ● Boolean scalar

Profile.placeholderRole ● String scalar

Profile.deletedAt ● Datetime scalar

Profile.isSystemPlaceholder ● Boolean scalar

Profile.timezone ● String scalar

Profile.phoneNumber ● String scalar

Profile.meetingUrl ● String scalar

Profile.locale ● String scalar

Profile.account ● Account object

Reads a single Account that is related to this Profile.

Profile.accordMembersByCreatedByIdConnection ● AccordMembersConnection! non-null object

Reads and enables pagination through a set of AccordMember.

Profile.accordMembersByCreatedByIdConnection.first ● Int scalar

Only read the first n values of the set.

Profile.accordMembersByCreatedByIdConnection.last ● Int scalar

Only read the last n values of the set.

Profile.accordMembersByCreatedByIdConnection.offset ● Int scalar

Skip the first n values from our after cursor, an alternative to cursor based pagination. May not be used with last.

Profile.accordMembersByCreatedByIdConnection.before ● Cursor scalar

Read all values in the set before (above) this cursor.

Profile.accordMembersByCreatedByIdConnection.after ● Cursor scalar

Read all values in the set after (below) this cursor.

Profile.accordMembersByCreatedByIdConnection.orderBy ● [AccordMembersOrderBy!] list enum

The method to use when ordering AccordMember.

Profile.accordMembersByCreatedByIdConnection.condition ● AccordMemberCondition input

A condition to be used in determining which values should be returned by the collection.

Profile.accordMembersByCreatedByIdConnection.filter ● AccordMemberFilter input

A filter to be used in determining which values should be returned by the collection.

Profile.accordMembersByCreatedById ● [AccordMember!]! non-null object

Reads and enables pagination through a set of AccordMember.

Profile.accordMembersByCreatedById.first ● Int scalar

Only read the first n values of the set.

Profile.accordMembersByCreatedById.offset ● Int scalar

Skip the first n values.

Profile.accordMembersByCreatedById.orderBy ● [AccordMembersOrderBy!] list enum

The method to use when ordering AccordMember.

Profile.accordMembersByCreatedById.condition ● AccordMemberCondition input

A condition to be used in determining which values should be returned by the collection.

Profile.accordMembersByCreatedById.filter ● AccordMemberFilter input

A filter to be used in determining which values should be returned by the collection.

Profile.profile ● Account object

Reads a single Account that is related to this Profile.

Profile.commentsByAccountIdConnection ● CommentsConnection! non-null object

Reads and enables pagination through a set of Comment.

Profile.commentsByAccountIdConnection.first ● Int scalar

Only read the first n values of the set.

Profile.commentsByAccountIdConnection.last ● Int scalar

Only read the last n values of the set.

Profile.commentsByAccountIdConnection.offset ● Int scalar

Skip the first n values from our after cursor, an alternative to cursor based pagination. May not be used with last.

Profile.commentsByAccountIdConnection.before ● Cursor scalar

Read all values in the set before (above) this cursor.

Profile.commentsByAccountIdConnection.after ● Cursor scalar

Read all values in the set after (below) this cursor.

Profile.commentsByAccountIdConnection.orderBy ● [CommentsOrderBy!] list enum

The method to use when ordering Comment.

Profile.commentsByAccountIdConnection.condition ● CommentCondition input

A condition to be used in determining which values should be returned by the collection.

Profile.commentsByAccountIdConnection.filter ● CommentFilter input

A filter to be used in determining which values should be returned by the collection.

Profile.commentsByAccountId ● [Comment!]! non-null object

Reads and enables pagination through a set of Comment.

Profile.commentsByAccountId.first ● Int scalar

Only read the first n values of the set.

Profile.commentsByAccountId.offset ● Int scalar

Skip the first n values.

Profile.commentsByAccountId.orderBy ● [CommentsOrderBy!] list enum

The method to use when ordering Comment.

Profile.commentsByAccountId.condition ● CommentCondition input

A condition to be used in determining which values should be returned by the collection.

Profile.commentsByAccountId.filter ● CommentFilter input

A filter to be used in determining which values should be returned by the collection.

Profile.emailsByReceiverIdConnection ● EmailsConnection! non-null object

Reads and enables pagination through a set of Email.

Profile.emailsByReceiverIdConnection.first ● Int scalar

Only read the first n values of the set.

Profile.emailsByReceiverIdConnection.last ● Int scalar

Only read the last n values of the set.

Profile.emailsByReceiverIdConnection.offset ● Int scalar

Skip the first n values from our after cursor, an alternative to cursor based pagination. May not be used with last.

Profile.emailsByReceiverIdConnection.before ● Cursor scalar

Read all values in the set before (above) this cursor.

Profile.emailsByReceiverIdConnection.after ● Cursor scalar

Read all values in the set after (below) this cursor.

Profile.emailsByReceiverIdConnection.orderBy ● [EmailsOrderBy!] list enum

The method to use when ordering Email.

Profile.emailsByReceiverIdConnection.condition ● EmailCondition input

A condition to be used in determining which values should be returned by the collection.

Profile.emailsByReceiverIdConnection.filter ● EmailFilter input

A filter to be used in determining which values should be returned by the collection.

Profile.emailsByReceiverId ● [Email!]! non-null object

Reads and enables pagination through a set of Email.

Profile.emailsByReceiverId.first ● Int scalar

Only read the first n values of the set.

Profile.emailsByReceiverId.offset ● Int scalar

Skip the first n values.

Profile.emailsByReceiverId.orderBy ● [EmailsOrderBy!] list enum

The method to use when ordering Email.

Profile.emailsByReceiverId.condition ● EmailCondition input

A condition to be used in determining which values should be returned by the collection.

Profile.emailsByReceiverId.filter ● EmailFilter input

A filter to be used in determining which values should be returned by the collection.

Profile.emailsBySenderIdConnection ● EmailsConnection! non-null object

Reads and enables pagination through a set of Email.

Profile.emailsBySenderIdConnection.first ● Int scalar

Only read the first n values of the set.

Profile.emailsBySenderIdConnection.last ● Int scalar

Only read the last n values of the set.

Profile.emailsBySenderIdConnection.offset ● Int scalar

Skip the first n values from our after cursor, an alternative to cursor based pagination. May not be used with last.

Profile.emailsBySenderIdConnection.before ● Cursor scalar

Read all values in the set before (above) this cursor.

Profile.emailsBySenderIdConnection.after ● Cursor scalar

Read all values in the set after (below) this cursor.

Profile.emailsBySenderIdConnection.orderBy ● [EmailsOrderBy!] list enum

The method to use when ordering Email.

Profile.emailsBySenderIdConnection.condition ● EmailCondition input

A condition to be used in determining which values should be returned by the collection.

Profile.emailsBySenderIdConnection.filter ● EmailFilter input

A filter to be used in determining which values should be returned by the collection.

Profile.emailsBySenderId ● [Email!]! non-null object

Reads and enables pagination through a set of Email.

Profile.emailsBySenderId.first ● Int scalar

Only read the first n values of the set.

Profile.emailsBySenderId.offset ● Int scalar

Skip the first n values.

Profile.emailsBySenderId.orderBy ● [EmailsOrderBy!] list enum

The method to use when ordering Email.

Profile.emailsBySenderId.condition ● EmailCondition input

A condition to be used in determining which values should be returned by the collection.

Profile.emailsBySenderId.filter ● EmailFilter input

A filter to be used in determining which values should be returned by the collection.

Profile.resourcesByOwnerIdConnection ● ResourcesConnection! non-null object

Reads and enables pagination through a set of Resource.

Profile.resourcesByOwnerIdConnection.first ● Int scalar

Only read the first n values of the set.

Profile.resourcesByOwnerIdConnection.last ● Int scalar

Only read the last n values of the set.

Profile.resourcesByOwnerIdConnection.offset ● Int scalar

Skip the first n values from our after cursor, an alternative to cursor based pagination. May not be used with last.

Profile.resourcesByOwnerIdConnection.before ● Cursor scalar

Read all values in the set before (above) this cursor.

Profile.resourcesByOwnerIdConnection.after ● Cursor scalar

Read all values in the set after (below) this cursor.

Profile.resourcesByOwnerIdConnection.orderBy ● [ResourcesOrderBy!] list enum

The method to use when ordering Resource.

Profile.resourcesByOwnerIdConnection.condition ● ResourceCondition input

A condition to be used in determining which values should be returned by the collection.

Profile.resourcesByOwnerIdConnection.filter ● ResourceFilter input

A filter to be used in determining which values should be returned by the collection.

Profile.resourcesByOwnerId ● [Resource!]! non-null object

Reads and enables pagination through a set of Resource.

Profile.resourcesByOwnerId.first ● Int scalar

Only read the first n values of the set.

Profile.resourcesByOwnerId.offset ● Int scalar

Skip the first n values.

Profile.resourcesByOwnerId.orderBy ● [ResourcesOrderBy!] list enum

The method to use when ordering Resource.

Profile.resourcesByOwnerId.condition ● ResourceCondition input

A condition to be used in determining which values should be returned by the collection.

Profile.resourcesByOwnerId.filter ● ResourceFilter input

A filter to be used in determining which values should be returned by the collection.

Profile.stepsByOwnerIdConnection ● StepsConnection! non-null object

Reads and enables pagination through a set of Step.

Profile.stepsByOwnerIdConnection.first ● Int scalar

Only read the first n values of the set.

Profile.stepsByOwnerIdConnection.last ● Int scalar

Only read the last n values of the set.

Profile.stepsByOwnerIdConnection.offset ● Int scalar

Skip the first n values from our after cursor, an alternative to cursor based pagination. May not be used with last.

Profile.stepsByOwnerIdConnection.before ● Cursor scalar

Read all values in the set before (above) this cursor.

Profile.stepsByOwnerIdConnection.after ● Cursor scalar

Read all values in the set after (below) this cursor.

Profile.stepsByOwnerIdConnection.orderBy ● [StepsOrderBy!] list enum

The method to use when ordering Step.

Profile.stepsByOwnerIdConnection.condition ● StepCondition input

A condition to be used in determining which values should be returned by the collection.

Profile.stepsByOwnerIdConnection.filter ● StepFilter input

A filter to be used in determining which values should be returned by the collection.

Profile.stepsByOwnerId ● [Step!]! non-null object

Reads and enables pagination through a set of Step.

Profile.stepsByOwnerId.first ● Int scalar

Only read the first n values of the set.

Profile.stepsByOwnerId.offset ● Int scalar

Skip the first n values.

Profile.stepsByOwnerId.orderBy ● [StepsOrderBy!] list enum

The method to use when ordering Step.

Profile.stepsByOwnerId.condition ● StepCondition input

A condition to be used in determining which values should be returned by the collection.

Profile.stepsByOwnerId.filter ● StepFilter input

A filter to be used in determining which values should be returned by the collection.

Profile.stepApprovalsByApprovedByIdConnection ● StepApprovalsConnection! non-null object

Reads and enables pagination through a set of StepApproval.

Profile.stepApprovalsByApprovedByIdConnection.first ● Int scalar

Only read the first n values of the set.

Profile.stepApprovalsByApprovedByIdConnection.last ● Int scalar

Only read the last n values of the set.

Profile.stepApprovalsByApprovedByIdConnection.offset ● Int scalar

Skip the first n values from our after cursor, an alternative to cursor based pagination. May not be used with last.

Profile.stepApprovalsByApprovedByIdConnection.before ● Cursor scalar

Read all values in the set before (above) this cursor.

Profile.stepApprovalsByApprovedByIdConnection.after ● Cursor scalar

Read all values in the set after (below) this cursor.

Profile.stepApprovalsByApprovedByIdConnection.orderBy ● [StepApprovalsOrderBy!] list enum

The method to use when ordering StepApproval.

Profile.stepApprovalsByApprovedByIdConnection.condition ● StepApprovalCondition input

A condition to be used in determining which values should be returned by the collection.

Profile.stepApprovalsByApprovedByIdConnection.filter ● StepApprovalFilter input

A filter to be used in determining which values should be returned by the collection.

Profile.stepApprovalsByApprovedById ● [StepApproval!]! non-null object

Reads and enables pagination through a set of StepApproval.

Profile.stepApprovalsByApprovedById.first ● Int scalar

Only read the first n values of the set.

Profile.stepApprovalsByApprovedById.offset ● Int scalar

Skip the first n values.

Profile.stepApprovalsByApprovedById.orderBy ● [StepApprovalsOrderBy!] list enum

The method to use when ordering StepApproval.

Profile.stepApprovalsByApprovedById.condition ● StepApprovalCondition input

A condition to be used in determining which values should be returned by the collection.

Profile.stepApprovalsByApprovedById.filter ● StepApprovalFilter input

A filter to be used in determining which values should be returned by the collection.

Interfaces

Node interface

An object with a globally unique ID.

Returned By

profile query ● profileByNodeId query

Member Of

AccordMember object ● Account object ● AvailableWorkspacesPayload object ● Comment object ● CreateAccountPayload object ● CreateCommentPayload object ● CreateEmailPayload object ● CreateProfilePayload object ● CreateResourcePayload object ● CreateStepApprovalPayload object ● CreateStepPayload object ● CreateWorkspaceAccountPayload object ● DeleteAccordMemberPayload object ● DeleteAccountPayload object ● DeleteCommentPayload object ● DeleteEmailPayload object ● DeleteResourcePayload object ● DeleteStepApprovalPayload object ● DeleteStepPayload object ● DeleteWorkspaceAccountPayload object ● Email object ● RecoverAccordMemberPayload object ● RecoverAccountPayload object ● RecoverCommentPayload object ● RecoverEmailPayload object ● RecoverResourcePayload object ● RecoverStepPayload object ● RecoverWorkspaceAccountPayload object ● Resource object ● Step object ● StepApproval object ● UpdateAccordMemberPayload object ● UpdateAccountPayload object ● UpdateCommentPayload object ● UpdateEmailPayload object ● UpdateProfilePayload object ● UpdateResourcePayload object ● UpdateStepApprovalPayload object ● UpdateStepPayload object ● UpdateWorkspaceAccountPayload object ● UpsertAccountPayload object ● UpsertProfilePayload object ● UpsertWorkspaceAccountPayload object ● WorkspaceAccount object