epexDayAheadPrices
Get EPEX Day Ahead electricity prices for Germany. Returns price data in 15-minute intervals for the specified time period. Prices are in EUR/MWh.
Arguments
Returns
EpexDayAheadPriceConnectionTypeConnectionConnection type for EPEX Day Ahead prices in Germany.
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 EpexDayAheadPrices(
$after: String,
$before: String,
$first: Int,
$last: Int,
$periodEnd: DateTime!,
$periodStart: DateTime!
) {
epexDayAheadPrices(
after: $after,
before: $before,
first: $first,
last: $last,
periodEnd: $periodEnd,
periodStart: $periodStart
) {
edgeCount
edges {
...EpexDayAheadPriceConnectionTypeEdgeFragment
}
pageInfo {
...PageInfoFragment
}
totalCount
}
}
Variables
{
"after": "YXJyYXljb25uZWN0aW9uOjEw=",
"before": "YXJyYXljb25uZWN0aW9uOjEw=",
"first": 10,
"last": 10,
"periodEnd": "1977-07-21T14:49:11.144228+00:00",
"periodStart": "2001-11-06T03:41:20.156990+00:00"
}
Response
{
"data": {
"epexDayAheadPrices": {
"edgeCount": 41,
"edges": [EpexDayAheadPriceConnectionTypeEdge],
"pageInfo": PageInfo,
"totalCount": 99
}
}
}