Skip to main content

Arguments

externalIdentifier : String! required

The market specific supply point id.

marketName : String! required

The name of the market in which this supply point exists.

Returns

SupplyPointType

Represents a SupplyPoint.

Allowed Viewers

Customer Partner User Third party

Query Complexity

1

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

query SupplyPoint( $externalIdentifier: String!, $marketName: String! ) { supplyPoint( externalIdentifier: $externalIdentifier, marketName: $marketName ) { devices { ...DevicesConnectionFragment } externalIdentifier id marketName meterPoint { ... on ElectricityMeterPointType { ...ElectricityMeterPointTypeFragment } ... on GasMeterPointType { ...GasMeterPointTypeFragment } } property { ...PropertyTypeFragment } readings { ...ReadingsFragment } } }

Variables

{ "externalIdentifier": "72334911", "marketName": "however-plant-save-tree-Mrs" }

Response

{ "data": { "supplyPoint": { "devices": DevicesConnection, "externalIdentifier": "62451267", "id": "10714577", "marketName": "name-economic-institution-city-condition", "meterPoint": ElectricityMeterPointType, "property": PropertyType, "readings": Readings } } }