Skip to main content

Arguments

number : String! required

The number of the contract journey.

Returns

ContractCreationJourneyType

Represents a Contract Creation Journey.

Allowed Viewers

Customer Partner User Third party

Required Permissions

Can query contracts AND Can query contract journeys

Query Complexity

1

Examples

The example data in the variables and responses below are autogenerated values designed to resemble real inputs. They do not represent actual customer data, and in some cases may require additional validation.

Query

query ContractCreationJourney($number: String!) { contractCreationJourney(number: $number) { context { ...ContractCreationContextFragment } contractDetails { ...ContractDetailsFragment } journeyType notes { ...ContractNoteTypeFragment } number orderReference requestedAt status } }

Variables

{ "number": "party-common-develop-do-last" }

Response

{ "data": { "contractCreationJourney": { "context": ContractCreationContext, "contractDetails": ContractDetails, "journeyType": "CONTRACT_CREATION", "notes": [ContractNoteType], "number": "seek-wind-dog-exist-natural", "orderReference": "hope-later-election-many-book", "requestedAt": "1982-02-06T11:48:44.529284+00:00", "status": "IN_PROGRESS" } } }