quoteConfigurationsByOpportunityNumber
Get all quote configurations for an opportunity.
Arguments
Number of the opportunity to retrieve quote configurations for.
Returns
[QuoteConfigurationType!]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 QuoteConfigurationsByOpportunityNumber($opportunityNumber: String) {
quoteConfigurationsByOpportunityNumber(opportunityNumber: $opportunityNumber) {
contractEnd
contractStart
createdBy
expiresAt
extraDetailsItems {
...QuoteConfigurationExtraDetailItemTypeFragment
}
extraQuotingParams {
...ExtraQuotingParamsTypeFragment
}
number
opportunityNumber
status
terms {
...QuoteTermInterfaceFragment
}
}
}
Variables
{
"opportunityNumber": "commercial-task-finally-into-nearly"
}
Response
{
"data": {
"quoteConfigurationsByOpportunityNumber": [
{
"contractEnd": "2020-03-16T15:04:10.484536+00:00",
"contractStart": "2021-11-27T21:45:35.942687+00:00",
"createdBy": "suddenly-range-attorney-cost-movement",
"expiresAt": "2025-10-20T06:36:43.047889+00:00",
"extraDetailsItems": [QuoteConfigurationExtraDetailItemType],
"extraQuotingParams": ExtraQuotingParamsType,
"number": "risk-court-green-while-meet",
"opportunityNumber": "that-teach-site-phone-program",
"status": "DRAFT",
"terms": QuoteTermInterface
}
]
}
}