Account
No description
type Account implements Node {
nodeId: ID!
id: String!
type: AccountTypes!
email: String!
roles: [String]!
version: Int!
lastSignInAt: Datetime
deletedAt: Datetime
updatedAt: Datetime!
createdAt: Datetime!
profile: Profile
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!]!
commentsConnection(
first: Int
last: Int
offset: Int
before: Cursor
after: Cursor
orderBy: [CommentsOrderBy!] = [PRIMARY_KEY_ASC]
condition: CommentCondition
filter: CommentFilter
): CommentsConnection!
comments(
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!]!
account: Profile
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
Account.nodeId ● ID! non-null scalar
A globally unique identifier. Can be used in various places throughout the system to identify this single value.
Account.id ● String! non-null scalar
Account.type ● AccountTypes! non-null enum
Account.email ● String! non-null scalar
Account.roles ● [String]! non-null scalar
Account.version ● Int! non-null scalar
Account.lastSignInAt ● Datetime scalar
Account.deletedAt ● Datetime scalar
Account.updatedAt ● Datetime! non-null scalar
Account.createdAt ● Datetime! non-null scalar
Account.profile ● Profile object
Reads a single Profile that is related to this Account.
Account.accordMembersByCreatedByIdConnection ● AccordMembersConnection! non-null object
Reads and enables pagination through a set of AccordMember.
Account.accordMembersByCreatedByIdConnection.first ● Int scalar
Only read the first n values of the set.
Account.accordMembersByCreatedByIdConnection.last ● Int scalar
Only read the last n values of the set.
Account.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.
Account.accordMembersByCreatedByIdConnection.before ● Cursor scalar
Read all values in the set before (above) this cursor.
Account.accordMembersByCreatedByIdConnection.after ● Cursor scalar
Read all values in the set after (below) this cursor.
Account.accordMembersByCreatedByIdConnection.orderBy ● [AccordMembersOrderBy!] list enum
The method to use when ordering AccordMember.
Account.accordMembersByCreatedByIdConnection.condition ● AccordMemberCondition input
A condition to be used in determining which values should be returned by the collection.
Account.accordMembersByCreatedByIdConnection.filter ● AccordMemberFilter input
A filter to be used in determining which values should be returned by the collection.
Account.accordMembersByCreatedById ● [AccordMember!]! non-null object
Reads and enables pagination through a set of AccordMember.
Account.accordMembersByCreatedById.first ● Int scalar
Only read the first n values of the set.
Account.accordMembersByCreatedById.offset ● Int scalar
Skip the first n values.
Account.accordMembersByCreatedById.orderBy ● [AccordMembersOrderBy!] list enum
The method to use when ordering AccordMember.
Account.accordMembersByCreatedById.condition ● AccordMemberCondition input
A condition to be used in determining which values should be returned by the collection.
Account.accordMembersByCreatedById.filter ● AccordMemberFilter input
A filter to be used in determining which values should be returned by the collection.
Account.commentsConnection ● CommentsConnection! non-null object
Reads and enables pagination through a set of Comment.
Account.commentsConnection.first ● Int scalar
Only read the first n values of the set.
Account.commentsConnection.last ● Int scalar
Only read the last n values of the set.
Account.commentsConnection.offset ● Int scalar
Skip the first n values from our after cursor, an alternative to cursor
based pagination. May not be used with last.
Account.commentsConnection.before ● Cursor scalar
Read all values in the set before (above) this cursor.
Account.commentsConnection.after ● Cursor scalar
Read all values in the set after (below) this cursor.
Account.commentsConnection.orderBy ● [CommentsOrderBy!] list enum
The method to use when ordering Comment.
Account.commentsConnection.condition ● CommentCondition input
A condition to be used in determining which values should be returned by the collection.
Account.commentsConnection.filter ● CommentFilter input
A filter to be used in determining which values should be returned by the collection.
Account.comments ● [Comment!]! non-null object
Reads and enables pagination through a set of Comment.
Account.comments.first ● Int scalar
Only read the first n values of the set.
Account.comments.offset ● Int scalar
Skip the first n values.
Account.comments.orderBy ● [CommentsOrderBy!] list enum
The method to use when ordering Comment.
Account.comments.condition ● CommentCondition input
A condition to be used in determining which values should be returned by the collection.
Account.comments.filter ● CommentFilter input
A filter to be used in determining which values should be returned by the collection.
Account.emailsByReceiverIdConnection ● EmailsConnection! non-null object
Reads and enables pagination through a set of Email.
Account.emailsByReceiverIdConnection.first ● Int scalar
Only read the first n values of the set.
Account.emailsByReceiverIdConnection.last ● Int scalar
Only read the last n values of the set.
Account.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.
Account.emailsByReceiverIdConnection.before ● Cursor scalar
Read all values in the set before (above) this cursor.
Account.emailsByReceiverIdConnection.after ● Cursor scalar
Read all values in the set after (below) this cursor.
Account.emailsByReceiverIdConnection.orderBy ● [EmailsOrderBy!] list enum
The method to use when ordering Email.
Account.emailsByReceiverIdConnection.condition ● EmailCondition input
A condition to be used in determining which values should be returned by the collection.
Account.emailsByReceiverIdConnection.filter ● EmailFilter input
A filter to be used in determining which values should be returned by the collection.
Account.emailsByReceiverId ● [Email!]! non-null object
Reads and enables pagination through a set of Email.
Account.emailsByReceiverId.first ● Int scalar
Only read the first n values of the set.
Account.emailsByReceiverId.offset ● Int scalar
Skip the first n values.
Account.emailsByReceiverId.orderBy ● [EmailsOrderBy!] list enum
The method to use when ordering Email.
Account.emailsByReceiverId.condition ● EmailCondition input
A condition to be used in determining which values should be returned by the collection.
Account.emailsByReceiverId.filter ● EmailFilter input
A filter to be used in determining which values should be returned by the collection.
Account.emailsBySenderIdConnection ● EmailsConnection! non-null object
Reads and enables pagination through a set of Email.
Account.emailsBySenderIdConnection.first ● Int scalar
Only read the first n values of the set.
Account.emailsBySenderIdConnection.last ● Int scalar
Only read the last n values of the set.
Account.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.
Account.emailsBySenderIdConnection.before ● Cursor scalar
Read all values in the set before (above) this cursor.
Account.emailsBySenderIdConnection.after ● Cursor scalar
Read all values in the set after (below) this cursor.
Account.emailsBySenderIdConnection.orderBy ● [EmailsOrderBy!] list enum
The method to use when ordering Email.
Account.emailsBySenderIdConnection.condition ● EmailCondition input
A condition to be used in determining which values should be returned by the collection.
Account.emailsBySenderIdConnection.filter ● EmailFilter input
A filter to be used in determining which values should be returned by the collection.
Account.emailsBySenderId ● [Email!]! non-null object
Reads and enables pagination through a set of Email.
Account.emailsBySenderId.first ● Int scalar
Only read the first n values of the set.
Account.emailsBySenderId.offset ● Int scalar
Skip the first n values.
Account.emailsBySenderId.orderBy ● [EmailsOrderBy!] list enum
The method to use when ordering Email.
Account.emailsBySenderId.condition ● EmailCondition input
A condition to be used in determining which values should be returned by the collection.
Account.emailsBySenderId.filter ● EmailFilter input
A filter to be used in determining which values should be returned by the collection.
Account.account ● Profile object
Reads a single Profile that is related to this Account.
Account.resourcesByOwnerIdConnection ● ResourcesConnection! non-null object
Reads and enables pagination through a set of Resource.
Account.resourcesByOwnerIdConnection.first ● Int scalar
Only read the first n values of the set.
Account.resourcesByOwnerIdConnection.last ● Int scalar
Only read the last n values of the set.
Account.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.
Account.resourcesByOwnerIdConnection.before ● Cursor scalar
Read all values in the set before (above) this cursor.
Account.resourcesByOwnerIdConnection.after ● Cursor scalar
Read all values in the set after (below) this cursor.
Account.resourcesByOwnerIdConnection.orderBy ● [ResourcesOrderBy!] list enum
The method to use when ordering Resource.
Account.resourcesByOwnerIdConnection.condition ● ResourceCondition input
A condition to be used in determining which values should be returned by the collection.
Account.resourcesByOwnerIdConnection.filter ● ResourceFilter input
A filter to be used in determining which values should be returned by the collection.
Account.resourcesByOwnerId ● [Resource!]! non-null object
Reads and enables pagination through a set of Resource.
Account.resourcesByOwnerId.first ● Int scalar
Only read the first n values of the set.
Account.resourcesByOwnerId.offset ● Int scalar
Skip the first n values.
Account.resourcesByOwnerId.orderBy ● [ResourcesOrderBy!] list enum
The method to use when ordering Resource.
Account.resourcesByOwnerId.condition ● ResourceCondition input
A condition to be used in determining which values should be returned by the collection.
Account.resourcesByOwnerId.filter ● ResourceFilter input
A filter to be used in determining which values should be returned by the collection.
Account.stepsByOwnerIdConnection ● StepsConnection! non-null object
Reads and enables pagination through a set of Step.
Account.stepsByOwnerIdConnection.first ● Int scalar
Only read the first n values of the set.
Account.stepsByOwnerIdConnection.last ● Int scalar
Only read the last n values of the set.
Account.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.
Account.stepsByOwnerIdConnection.before ● Cursor scalar
Read all values in the set before (above) this cursor.
Account.stepsByOwnerIdConnection.after ● Cursor scalar
Read all values in the set after (below) this cursor.
Account.stepsByOwnerIdConnection.orderBy ● [StepsOrderBy!] list enum
The method to use when ordering Step.
Account.stepsByOwnerIdConnection.condition ● StepCondition input
A condition to be used in determining which values should be returned by the collection.
Account.stepsByOwnerIdConnection.filter ● StepFilter input
A filter to be used in determining which values should be returned by the collection.
Account.stepsByOwnerId ● [Step!]! non-null object
Reads and enables pagination through a set of Step.
Account.stepsByOwnerId.first ● Int scalar
Only read the first n values of the set.
Account.stepsByOwnerId.offset ● Int scalar
Skip the first n values.
Account.stepsByOwnerId.orderBy ● [StepsOrderBy!] list enum
The method to use when ordering Step.
Account.stepsByOwnerId.condition ● StepCondition input
A condition to be used in determining which values should be returned by the collection.
Account.stepsByOwnerId.filter ● StepFilter input
A filter to be used in determining which values should be returned by the collection.
Account.stepApprovalsByApprovedByIdConnection ● StepApprovalsConnection! non-null object
Reads and enables pagination through a set of StepApproval.
Account.stepApprovalsByApprovedByIdConnection.first ● Int scalar
Only read the first n values of the set.
Account.stepApprovalsByApprovedByIdConnection.last ● Int scalar
Only read the last n values of the set.
Account.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.
Account.stepApprovalsByApprovedByIdConnection.before ● Cursor scalar
Read all values in the set before (above) this cursor.
Account.stepApprovalsByApprovedByIdConnection.after ● Cursor scalar
Read all values in the set after (below) this cursor.
Account.stepApprovalsByApprovedByIdConnection.orderBy ● [StepApprovalsOrderBy!] list enum
The method to use when ordering StepApproval.
Account.stepApprovalsByApprovedByIdConnection.condition ● StepApprovalCondition input
A condition to be used in determining which values should be returned by the collection.
Account.stepApprovalsByApprovedByIdConnection.filter ● StepApprovalFilter input
A filter to be used in determining which values should be returned by the collection.
Account.stepApprovalsByApprovedById ● [StepApproval!]! non-null object
Reads and enables pagination through a set of StepApproval.
Account.stepApprovalsByApprovedById.first ● Int scalar
Only read the first n values of the set.
Account.stepApprovalsByApprovedById.offset ● Int scalar
Skip the first n values.
Account.stepApprovalsByApprovedById.orderBy ● [StepApprovalsOrderBy!] list enum
The method to use when ordering StepApproval.
Account.stepApprovalsByApprovedById.condition ● StepApprovalCondition input
A condition to be used in determining which values should be returned by the collection.
Account.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
account query ● accountByEmail query ● accountByNodeId query
Member Of
AccordMember object ● ApiKey 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 ● DeleteApiKeyPayload object ● DeleteCommentPayload object ● DeleteEmailPayload object ● DeleteResourcePayload object ● DeleteStepApprovalPayload object ● DeleteStepPayload object ● DeleteWorkspaceAccountPayload object ● Email object ● Profile 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 ● UpsertAccountProfilePayload object ● UpsertProfilePayload object ● UpsertWorkspaceAccountPayload object