DEV
Query.
cartByLandedCostId
Returns the most recent
Cart
that references the given landed cost ID (matched against the cart's references). Null when no cart references it. Used to resolve a collect quote's payment deadline (cart expiration).
Arguments
landedCostId
•
ID!
Required
The
LandedCost
ID stored in the cart's references.
Returns:
Cart
GraphQL
1
2
3
type
Query
{
cartByLandedCostId
(
landedCostId
:
ID
!
)
:
Cart
}
🇺🇸
en
Book a demo
Was this page helpful?
Yes
No
Query.
cartByLandedCostId
Returns the most recent
Cartthat references the given landed cost ID (matched against the cart's references). Null when no cart references it. Used to resolve a collect quote's payment deadline (cart expiration).Arguments
landedCostId
ID!
Required
LandedCostID stored in the cart's references.Returns:
Cart
type Query { cartByLandedCostId(landedCostId: ID!): Cart }