Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -971,6 +971,11 @@ type ClaimIntent {
"""
displayName: String
"""
Whether this draft is resumable by the member. A draft that has been deleted (see `claimIntentDeleteDraft`)
is no longer resumable.
"""
resumable: Boolean!
"""
The created claim of this intent.
Once this value is returned, the intent is effectively over, and no steps
can be produced or interacted with.
Expand Down Expand Up @@ -3713,6 +3718,10 @@ type Mutation {
"""
claimIntentRegretStep(stepId: ID!): ClaimIntentMutationOutput!
"""
Delete a draft claim intent from the member's perspective (a soft delete) so it is no longer returned by `resumableClaimIntent`.
"""
claimIntentDeleteDraft(id: ID!): Boolean!
"""
Submit a step containing a `ClaimIntentStepContentForm`.
"""
claimIntentSubmitForm(input: ClaimIntentSubmitFormInput!): ClaimIntentMutationOutput!
Expand Down
Loading