supplyPointsInterface
Get list of supply points. Node type is the CommonSupplyPointInterface; use inline fragments (e.g. ... on WaterSupplyPointType, ... on ElectricitySupplyPointType) to access concrete types.
Arguments
Returns
SupplyPointInterfaceConnectionExamples
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 SupplyPointsInterface(
$accountNumber: String,
$after: String,
$before: String,
$first: Int,
$last: Int,
$portfolioNumber: String
) {
supplyPointsInterface(
accountNumber: $accountNumber,
after: $after,
before: $before,
first: $first,
last: $last,
portfolioNumber: $portfolioNumber
) {
edgeCount
edges {
...SupplyPointInterfaceEdgeFragment
}
pageInfo {
...PageInfoFragment
}
totalCount
}
}
Variables
{
"accountNumber": "A-AFD8AD8F",
"after": "YXJyYXljb25uZWN0aW9uOjEw=",
"before": "YXJyYXljb25uZWN0aW9uOjEw=",
"first": 10,
"last": 10,
"portfolioNumber": "P-B06C196E"
}
Response
{
"data": {
"supplyPointsInterface": {
"edgeCount": 90,
"edges": [SupplyPointInterfaceEdge],
"pageInfo": PageInfo,
"totalCount": 7
}
}
}