supplyProducts
Available supply products.
Arguments
Returns
ProductConnectionTypeConnectionThis field is a connection type. Connections are used to implement cursor based pagination.
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 SupplyProducts(
$after: String,
$before: String,
$first: Int,
$last: Int,
$marketName: String,
$productCode: String
) {
supplyProducts(
after: $after,
before: $before,
first: $first,
last: $last,
marketName: $marketName,
productCode: $productCode
) {
edgeCount
edges {
...ProductConnectionTypeEdgeFragment
}
pageInfo {
...PageInfoFragment
}
totalCount
}
}
Variables
{
"after": "YXJyYXljb25uZWN0aW9uOjEw=",
"before": "YXJyYXljb25uZWN0aW9uOjEw=",
"first": 10,
"last": 10,
"marketName": "everybody-reveal-claim-though-truth",
"productCode": "wrong-beat-usually-time-discuss"
}
Response
{
"data": {
"supplyProducts": {
"edgeCount": 43,
"edges": [ProductConnectionTypeEdge],
"pageInfo": PageInfo,
"totalCount": 72
}
}
}