supplyPoints
Get list of supply points.
Deprecation
The 'supplyPoints' field is deprecated.Please use 'supplyPointsInterface' instead. It returns SupplyPointInterfaceConnection, whose node is CommonSupplyPointInterface, and supports inline fragments (e.g. `... on WaterSupplyPointType`, `... on ElectricitySupplyPointType`).
- Marked as deprecated on 2026-07-23.
- Scheduled for removal on or after 2027-01-23.
Arguments
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 SupplyPoints(
$accountNumber: String,
$after: String,
$before: String,
$first: Int,
$last: Int,
$portfolioNumber: String
) {
supplyPoints(
accountNumber: $accountNumber,
after: $after,
before: $before,
first: $first,
last: $last,
portfolioNumber: $portfolioNumber
) {
edgeCount
edges {
...SupplyPointConnectionTypeEdgeFragment
}
pageInfo {
...PageInfoFragment
}
totalCount
}
}
Variables
{
"accountNumber": "A-9BFD4E49",
"after": "YXJyYXljb25uZWN0aW9uOjEw=",
"before": "YXJyYXljb25uZWN0aW9uOjEw=",
"first": 10,
"last": 10,
"portfolioNumber": "P-2683D2FF"
}
Response
{
"data": {
"supplyPoints": {
"edgeCount": 99,
"edges": [SupplyPointConnectionTypeEdge],
"pageInfo": PageInfo,
"totalCount": 43
}
}
}