Skip to main content

Step

An individual action item within a stage that the seller and customer track to completion; also used to model the steps of a playbook template.

type Step implements Node {
nodeId: ID!
id: String!
stageId: String
title: String
dueDate: Datetime
description: String
resources: String
status: StepStatus
order: BigFloat
version: Int!
deletedAt: Datetime
updatedAt: Datetime!
createdAt: Datetime!
internal: Boolean!
workspaceId: String
ownerId: String
type: String
playbookId: String
createdById: String
archivedAt: Datetime
recentlyUsedAt: Datetime
dueDateWithoutTime: Date
relativeInterval: Interval
relativeStepId: String
designation: String
completedAt: Datetime
parentStepId: String
startDateWithoutTime: Date
ownerWorkspacePlaceholderRoleId: String
libraryStepId: String
libraryStageStepId: String
stage: Stage
ownerAccount: Account
ownerProfile: Profile
playbook: Playbook
createdBy: WorkspaceAccount
parentStep: Step
libraryStep: Step
accordCalendarEventsConnection(
first: Int
last: Int
offset: Int
before: Cursor
after: Cursor
orderBy: [AccordCalendarEventsOrderBy!] = [PRIMARY_KEY_ASC]
condition: AccordCalendarEventCondition
filter: AccordCalendarEventFilter
): AccordCalendarEventsConnection!
accordCalendarEvents(
first: Int
offset: Int
orderBy: [AccordCalendarEventsOrderBy!]
condition: AccordCalendarEventCondition
filter: AccordCalendarEventFilter
): [AccordCalendarEvent!]!
activitiesConnection(
first: Int
last: Int
offset: Int
before: Cursor
after: Cursor
orderBy: [ActivitiesOrderBy!] = [PRIMARY_KEY_ASC]
condition: ActivityCondition
filter: ActivityFilter
): ActivitiesConnection! @deprecated
activities(
first: Int
offset: Int
orderBy: [ActivitiesOrderBy!]
condition: ActivityCondition
filter: ActivityFilter
): [Activity!]! @deprecated
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!]!
stepsByParentStepIdConnection(
first: Int
last: Int
offset: Int
before: Cursor
after: Cursor
orderBy: [StepsOrderBy!] = [PRIMARY_KEY_ASC]
condition: StepCondition
filter: StepFilter
): StepsConnection!
stepsByParentStepId(
first: Int
offset: Int
orderBy: [StepsOrderBy!]
condition: StepCondition
filter: StepFilter
): [Step!]!
stepsByLibraryStepIdConnection(
first: Int
last: Int
offset: Int
before: Cursor
after: Cursor
orderBy: [StepsOrderBy!] = [PRIMARY_KEY_ASC]
condition: StepCondition
filter: StepFilter
): StepsConnection!
stepsByLibraryStepId(
first: Int
offset: Int
orderBy: [StepsOrderBy!]
condition: StepCondition
filter: StepFilter
): [Step!]!
stepApproval: StepApproval
stepDependenciesConnection(
first: Int
last: Int
offset: Int
before: Cursor
after: Cursor
orderBy: [StepDependenciesOrderBy!] = [PRIMARY_KEY_ASC]
condition: StepDependencyCondition
filter: StepDependencyFilter
): StepDependenciesConnection!
stepDependencies(
first: Int
offset: Int
orderBy: [StepDependenciesOrderBy!]
condition: StepDependencyCondition
filter: StepDependencyFilter
): [StepDependency!]!
stepDependenciesByDependentStepIdConnection(
first: Int
last: Int
offset: Int
before: Cursor
after: Cursor
orderBy: [StepDependenciesOrderBy!] = [PRIMARY_KEY_ASC]
condition: StepDependencyCondition
filter: StepDependencyFilter
): StepDependenciesConnection!
stepDependenciesByDependentStepId(
first: Int
offset: Int
orderBy: [StepDependenciesOrderBy!]
condition: StepDependencyCondition
filter: StepDependencyFilter
): [StepDependency!]!
stepInternalProcess: StepInternalProcess
stepMeeting: StepMeeting
stepResourcesConnection(
first: Int
last: Int
offset: Int
before: Cursor
after: Cursor
orderBy: [StepResourcesOrderBy!] = [PRIMARY_KEY_ASC]
condition: StepResourceCondition
filter: StepResourceFilter
): StepResourcesConnection!
stepResources(
first: Int
offset: Int
orderBy: [StepResourcesOrderBy!]
condition: StepResourceCondition
filter: StepResourceFilter
): [StepResource!]!
stepStakeholdersConnection(
first: Int
last: Int
offset: Int
before: Cursor
after: Cursor
orderBy: [StepStakeholdersOrderBy!] = [PRIMARY_KEY_ASC]
condition: StepStakeholderCondition
filter: StepStakeholderFilter
): StepStakeholdersConnection!
stepStakeholders(
first: Int
offset: Int
orderBy: [StepStakeholdersOrderBy!]
condition: StepStakeholderCondition
filter: StepStakeholderFilter
): [StepStakeholder!]!
stepToDo: StepToDo
effectiveOwnerAccountId: String
effectiveTitle: String
subStepsCount: BigInt
accordCalendarEvent: AccordCalendarEvent
}

Fields

Step.nodeId ● ID! non-null scalar

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

Step.id ● String! non-null scalar

Step.stageId ● String scalar

Step.title ● String scalar

Step.dueDate ● Datetime scalar

Step.description ● String scalar

Step.resources ● String scalar

Step.status ● StepStatus enum

Progress status of the step: new, in-progress, or completed.

Step.order ● BigFloat scalar

Sort position of the step within its stage.

Step.version ● Int! non-null scalar

Step.deletedAt ● Datetime scalar

Step.updatedAt ● Datetime! non-null scalar

Step.createdAt ● Datetime! non-null scalar

Step.internal ● Boolean! non-null scalar

When true, the step is visible only to the internal seller side, not the customer.

Step.workspaceId ● String scalar

Step.ownerId ● String scalar

Step.type ● String scalar

The kind of step, which drives its behavior: step_approval, step_internal_process, or step_meeting. step_to_do is deprecated — existing steps keep it, but new steps cannot be created with it.

Step.playbookId ● String scalar

When set, the playbook (template) this step belongs to rather than a live accord.

Step.createdById ● String scalar

Step.archivedAt ● Datetime scalar

Soft-archive timestamp; archived steps are hidden from active lists but not deleted.

Step.recentlyUsedAt ● Datetime scalar

For a library/template step, when it was last used to build an accord.

Step.dueDateWithoutTime ● Date scalar

Due date for steps due on a calendar day rather than a specific time.

Step.relativeInterval ● Interval object

Offset from the accord's milestone step: setting that milestone's due date reschedules every new step in the accord that has an interval, to the milestone date plus its own offset. Clearing it clears theirs.

Step.relativeStepId ● String scalar

Not read or written by the application. Relative scheduling anchors on the accord's milestone step (see relative_interval), not on this column.

Step.designation ● String scalar

Special classification for the step. milestone marks it as the accord's single milestone — setting it clears the designation on any other milestone step in the same accord — and its due date drives the relative scheduling described on relative_interval.

Step.completedAt ● Datetime scalar

When the step was marked completed; null while incomplete.

Step.parentStepId ● String scalar

Parent step, for sub-steps.

Step.startDateWithoutTime ● Date scalar

Start date (calendar day) of the step.

Step.ownerWorkspacePlaceholderRoleId ● String scalar

Placeholder role that owns the step, when ownership is assigned to a role rather than a specific person. Mutually exclusive with owner_id — a check constraint rejects setting both, though leaving both null is allowed.

Step.libraryStepId ● String scalar

The library step this step was instantiated from.

Step.libraryStageStepId ● String scalar

The library stage/step association this step was created from.

Step.stage ● Stage object

Reads a single Stage that is related to this Step.

Step.ownerAccount ● Account object

Reads a single Account that is related to this Step.

Step.ownerProfile ● Profile object

Reads a single Profile that is related to this Step.

Step.playbook ● Playbook object

Reads a single Playbook that is related to this Step.

Step.createdBy ● WorkspaceAccount object

Reads a single WorkspaceAccount that is related to this Step.

Step.parentStep ● Step object

Reads a single Step that is related to this Step.

Step.libraryStep ● Step object

Reads a single Step that is related to this Step.

Step.accordCalendarEventsConnection ● AccordCalendarEventsConnection! non-null object

Reads and enables pagination through a set of AccordCalendarEvent.

Step.accordCalendarEventsConnection.first ● Int scalar

Only read the first n values of the set.

Step.accordCalendarEventsConnection.last ● Int scalar

Only read the last n values of the set.

Step.accordCalendarEventsConnection.offset ● Int scalar

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

Step.accordCalendarEventsConnection.before ● Cursor scalar

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

Step.accordCalendarEventsConnection.after ● Cursor scalar

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

Step.accordCalendarEventsConnection.orderBy ● [AccordCalendarEventsOrderBy!] list enum

The method to use when ordering AccordCalendarEvent.

Step.accordCalendarEventsConnection.condition ● AccordCalendarEventCondition input

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

Step.accordCalendarEventsConnection.filter ● AccordCalendarEventFilter input

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

Step.accordCalendarEvents ● [AccordCalendarEvent!]! non-null object

Reads and enables pagination through a set of AccordCalendarEvent.

Step.accordCalendarEvents.first ● Int scalar

Only read the first n values of the set.

Step.accordCalendarEvents.offset ● Int scalar

Skip the first n values.

Step.accordCalendarEvents.orderBy ● [AccordCalendarEventsOrderBy!] list enum

The method to use when ordering AccordCalendarEvent.

Step.accordCalendarEvents.condition ● AccordCalendarEventCondition input

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

Step.accordCalendarEvents.filter ● AccordCalendarEventFilter input

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

Step.commentsConnection ● CommentsConnection! non-null object

Reads and enables pagination through a set of Comment.

Step.commentsConnection.first ● Int scalar

Only read the first n values of the set.

Step.commentsConnection.last ● Int scalar

Only read the last n values of the set.

Step.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.

Step.commentsConnection.before ● Cursor scalar

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

Step.commentsConnection.after ● Cursor scalar

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

Step.commentsConnection.orderBy ● [CommentsOrderBy!] list enum

The method to use when ordering Comment.

Step.commentsConnection.condition ● CommentCondition input

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

Step.commentsConnection.filter ● CommentFilter input

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

Step.comments ● [Comment!]! non-null object

Reads and enables pagination through a set of Comment.

Step.comments.first ● Int scalar

Only read the first n values of the set.

Step.comments.offset ● Int scalar

Skip the first n values.

Step.comments.orderBy ● [CommentsOrderBy!] list enum

The method to use when ordering Comment.

Step.comments.condition ● CommentCondition input

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

Step.comments.filter ● CommentFilter input

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

Step.stepsByParentStepIdConnection ● StepsConnection! non-null object

Reads and enables pagination through a set of Step.

Step.stepsByParentStepIdConnection.first ● Int scalar

Only read the first n values of the set.

Step.stepsByParentStepIdConnection.last ● Int scalar

Only read the last n values of the set.

Step.stepsByParentStepIdConnection.offset ● Int scalar

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

Step.stepsByParentStepIdConnection.before ● Cursor scalar

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

Step.stepsByParentStepIdConnection.after ● Cursor scalar

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

Step.stepsByParentStepIdConnection.orderBy ● [StepsOrderBy!] list enum

The method to use when ordering Step.

Step.stepsByParentStepIdConnection.condition ● StepCondition input

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

Step.stepsByParentStepIdConnection.filter ● StepFilter input

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

Step.stepsByParentStepId ● [Step!]! non-null object

Reads and enables pagination through a set of Step.

Step.stepsByParentStepId.first ● Int scalar

Only read the first n values of the set.

Step.stepsByParentStepId.offset ● Int scalar

Skip the first n values.

Step.stepsByParentStepId.orderBy ● [StepsOrderBy!] list enum

The method to use when ordering Step.

Step.stepsByParentStepId.condition ● StepCondition input

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

Step.stepsByParentStepId.filter ● StepFilter input

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

Step.stepsByLibraryStepIdConnection ● StepsConnection! non-null object

Reads and enables pagination through a set of Step.

Step.stepsByLibraryStepIdConnection.first ● Int scalar

Only read the first n values of the set.

Step.stepsByLibraryStepIdConnection.last ● Int scalar

Only read the last n values of the set.

Step.stepsByLibraryStepIdConnection.offset ● Int scalar

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

Step.stepsByLibraryStepIdConnection.before ● Cursor scalar

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

Step.stepsByLibraryStepIdConnection.after ● Cursor scalar

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

Step.stepsByLibraryStepIdConnection.orderBy ● [StepsOrderBy!] list enum

The method to use when ordering Step.

Step.stepsByLibraryStepIdConnection.condition ● StepCondition input

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

Step.stepsByLibraryStepIdConnection.filter ● StepFilter input

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

Step.stepsByLibraryStepId ● [Step!]! non-null object

Reads and enables pagination through a set of Step.

Step.stepsByLibraryStepId.first ● Int scalar

Only read the first n values of the set.

Step.stepsByLibraryStepId.offset ● Int scalar

Skip the first n values.

Step.stepsByLibraryStepId.orderBy ● [StepsOrderBy!] list enum

The method to use when ordering Step.

Step.stepsByLibraryStepId.condition ● StepCondition input

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

Step.stepsByLibraryStepId.filter ● StepFilter input

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

Step.stepApproval ● StepApproval object

Reads a single StepApproval that is related to this Step.

Step.stepDependenciesConnection ● StepDependenciesConnection! non-null object

Reads and enables pagination through a set of StepDependency.

Step.stepDependenciesConnection.first ● Int scalar

Only read the first n values of the set.

Step.stepDependenciesConnection.last ● Int scalar

Only read the last n values of the set.

Step.stepDependenciesConnection.offset ● Int scalar

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

Step.stepDependenciesConnection.before ● Cursor scalar

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

Step.stepDependenciesConnection.after ● Cursor scalar

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

Step.stepDependenciesConnection.orderBy ● [StepDependenciesOrderBy!] list enum

The method to use when ordering StepDependency.

Step.stepDependenciesConnection.condition ● StepDependencyCondition input

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

Step.stepDependenciesConnection.filter ● StepDependencyFilter input

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

Step.stepDependencies ● [StepDependency!]! non-null object

Reads and enables pagination through a set of StepDependency.

Step.stepDependencies.first ● Int scalar

Only read the first n values of the set.

Step.stepDependencies.offset ● Int scalar

Skip the first n values.

Step.stepDependencies.orderBy ● [StepDependenciesOrderBy!] list enum

The method to use when ordering StepDependency.

Step.stepDependencies.condition ● StepDependencyCondition input

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

Step.stepDependencies.filter ● StepDependencyFilter input

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

Step.stepDependenciesByDependentStepIdConnection ● StepDependenciesConnection! non-null object

Reads and enables pagination through a set of StepDependency.

Step.stepDependenciesByDependentStepIdConnection.first ● Int scalar

Only read the first n values of the set.

Step.stepDependenciesByDependentStepIdConnection.last ● Int scalar

Only read the last n values of the set.

Step.stepDependenciesByDependentStepIdConnection.offset ● Int scalar

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

Step.stepDependenciesByDependentStepIdConnection.before ● Cursor scalar

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

Step.stepDependenciesByDependentStepIdConnection.after ● Cursor scalar

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

Step.stepDependenciesByDependentStepIdConnection.orderBy ● [StepDependenciesOrderBy!] list enum

The method to use when ordering StepDependency.

Step.stepDependenciesByDependentStepIdConnection.condition ● StepDependencyCondition input

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

Step.stepDependenciesByDependentStepIdConnection.filter ● StepDependencyFilter input

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

Step.stepDependenciesByDependentStepId ● [StepDependency!]! non-null object

Reads and enables pagination through a set of StepDependency.

Step.stepDependenciesByDependentStepId.first ● Int scalar

Only read the first n values of the set.

Step.stepDependenciesByDependentStepId.offset ● Int scalar

Skip the first n values.

Step.stepDependenciesByDependentStepId.orderBy ● [StepDependenciesOrderBy!] list enum

The method to use when ordering StepDependency.

Step.stepDependenciesByDependentStepId.condition ● StepDependencyCondition input

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

Step.stepDependenciesByDependentStepId.filter ● StepDependencyFilter input

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

Step.stepInternalProcess ● StepInternalProcess object

Reads a single StepInternalProcess that is related to this Step.

Step.stepMeeting ● StepMeeting object

Reads a single StepMeeting that is related to this Step.

Step.stepResourcesConnection ● StepResourcesConnection! non-null object

Reads and enables pagination through a set of StepResource.

Step.stepResourcesConnection.first ● Int scalar

Only read the first n values of the set.

Step.stepResourcesConnection.last ● Int scalar

Only read the last n values of the set.

Step.stepResourcesConnection.offset ● Int scalar

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

Step.stepResourcesConnection.before ● Cursor scalar

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

Step.stepResourcesConnection.after ● Cursor scalar

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

Step.stepResourcesConnection.orderBy ● [StepResourcesOrderBy!] list enum

The method to use when ordering StepResource.

Step.stepResourcesConnection.condition ● StepResourceCondition input

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

Step.stepResourcesConnection.filter ● StepResourceFilter input

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

Step.stepResources ● [StepResource!]! non-null object

Reads and enables pagination through a set of StepResource.

Step.stepResources.first ● Int scalar

Only read the first n values of the set.

Step.stepResources.offset ● Int scalar

Skip the first n values.

Step.stepResources.orderBy ● [StepResourcesOrderBy!] list enum

The method to use when ordering StepResource.

Step.stepResources.condition ● StepResourceCondition input

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

Step.stepResources.filter ● StepResourceFilter input

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

Step.stepStakeholdersConnection ● StepStakeholdersConnection! non-null object

Reads and enables pagination through a set of StepStakeholder.

Step.stepStakeholdersConnection.first ● Int scalar

Only read the first n values of the set.

Step.stepStakeholdersConnection.last ● Int scalar

Only read the last n values of the set.

Step.stepStakeholdersConnection.offset ● Int scalar

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

Step.stepStakeholdersConnection.before ● Cursor scalar

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

Step.stepStakeholdersConnection.after ● Cursor scalar

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

Step.stepStakeholdersConnection.orderBy ● [StepStakeholdersOrderBy!] list enum

The method to use when ordering StepStakeholder.

Step.stepStakeholdersConnection.condition ● StepStakeholderCondition input

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

Step.stepStakeholdersConnection.filter ● StepStakeholderFilter input

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

Step.stepStakeholders ● [StepStakeholder!]! non-null object

Reads and enables pagination through a set of StepStakeholder.

Step.stepStakeholders.first ● Int scalar

Only read the first n values of the set.

Step.stepStakeholders.offset ● Int scalar

Skip the first n values.

Step.stepStakeholders.orderBy ● [StepStakeholdersOrderBy!] list enum

The method to use when ordering StepStakeholder.

Step.stepStakeholders.condition ● StepStakeholderCondition input

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

Step.stepStakeholders.filter ● StepStakeholderFilter input

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

Step.stepToDo ● StepToDo object

Reads a single StepToDo that is related to this Step.

Step.effectiveOwnerAccountId ● String scalar

Step.effectiveTitle ● String scalar

Step.subStepsCount ● BigInt scalar

Step.accordCalendarEvent ● AccordCalendarEvent object

The single most relevant calendar event for this step. Prefers the original recurring event (a calendar_event_id without an occurrence suffix) over expanded occurrences, then the oldest by creation date. Null when the step has no calendar events.

Show deprecated

Step.activitiesConnection ● ActivitiesConnection! deprecated non-null object

DEPRECATED

Use GET https://api.inaccord.com/1/analytics/activities instead. Same Bearer API key; cursor-paginated and ordered by updatedAt. It exports the whole workspace and takes no accordId filter, so a per-accord read pages the export and filters on each node accordId. See https://developers.inaccord.com/activity-export. This table is removed once every consumer has migrated.

Reads and enables pagination through a set of Activity.

Step.activitiesConnection.first ● Int scalar

Only read the first n values of the set.

Step.activitiesConnection.last ● Int scalar

Only read the last n values of the set.

Step.activitiesConnection.offset ● Int scalar

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

Step.activitiesConnection.before ● Cursor scalar

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

Step.activitiesConnection.after ● Cursor scalar

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

Step.activitiesConnection.orderBy ● [ActivitiesOrderBy!] list enum

The method to use when ordering Activity.

Step.activitiesConnection.condition ● ActivityCondition input

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

Step.activitiesConnection.filter ● ActivityFilter input

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

Step.activities ● [Activity!]! deprecated non-null object

DEPRECATED

Use GET https://api.inaccord.com/1/analytics/activities instead. Same Bearer API key; cursor-paginated and ordered by updatedAt. It exports the whole workspace and takes no accordId filter, so a per-accord read pages the export and filters on each node accordId. See https://developers.inaccord.com/activity-export. This table is removed once every consumer has migrated.

Reads and enables pagination through a set of Activity.

Step.activities.first ● Int scalar

Only read the first n values of the set.

Step.activities.offset ● Int scalar

Skip the first n values.

Step.activities.orderBy ● [ActivitiesOrderBy!] list enum

The method to use when ordering Activity.

Step.activities.condition ● ActivityCondition input

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

Step.activities.filter ● ActivityFilter 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

accordLibrarySteps query ● step query ● stepByNodeId query ● steps query

Member Of

AccordCalendarEvent object ● Account object ● Activity object ● AddLibraryStepToStagePayload object ● Comment object ● CopyStepToPlaybookPayload object ● CopyStepToStagePayload object ● CreateAccordCalendarEventPayload object ● CreateCommentPayload object ● CreateStepApprovalPayload object ● CreateStepDependencyPayload object ● CreateStepInternalProcessPayload object ● CreateStepMeetingPayload object ● CreateStepPayload object ● CreateStepResourcePayload object ● CreateStepStakeholderPayload object ● CreateStepToDoPayload object ● DeleteAccordCalendarEventPayload object ● DeleteCommentPayload object ● DeleteStepApprovalPayload object ● DeleteStepDependencyPayload object ● DeleteStepInternalProcessPayload object ● DeleteStepMeetingPayload object ● DeleteStepPayload object ● DeleteStepResourcePayload object ● DeleteStepStakeholderPayload object ● DeleteStepToDoPayload object ● DetachLibraryStepPayload object ● Playbook object ● Profile object ● RecoverCommentPayload object ● RecoverStepPayload object ● RecoverStepResourcePayload object ● ReorderStepsPayload object ● Stage object ● Step object ● StepApproval object ● StepDependency object ● StepInternalProcess object ● StepMeeting object ● StepResource object ● StepsConnection object ● StepsEdge object ● StepStakeholder object ● StepToDo object ● UpdateAccordCalendarEventPayload object ● UpdateCommentPayload object ● UpdateStepApprovalPayload object ● UpdateStepDependencyPayload object ● UpdateStepInternalProcessPayload object ● UpdateStepMeetingPayload object ● UpdateStepPayload object ● UpdateStepResourcePayload object ● UpdateStepStakeholderPayload object ● UpdateStepToDoPayload object ● UpdateStepTypePayload object ● UpsertAccordCalendarEventPayload object ● UpsertStepDependencyPayload object ● UpsertStepInternalProcessPayload object ● UpsertStepStakeholderPayload object ● WorkspaceAccount object