dailyWholesalePrices
Get the daily wholesale prices per hour for the given dates.
Deprecation
The 'dailyWholesalePrices' field is deprecated.Migrated to OE Backend API.
- Marked as deprecated on 2025-10-27.
- Scheduled for removal on or after 2025-11-10.
Arguments
Returns
[DailyWholesalePrice]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 DailyWholesalePrices(
$end: Date,
$start: Date
) {
dailyWholesalePrices(
end: $end,
start: $start
) {
date
hour
price
}
}
Variables
{
"end": "2017-08-22",
"start": "1982-08-16"
}
Response
{
"data": {
"dailyWholesalePrices": [
{
"date": "1970-03-11",
"hour": 59,
"price": "1.0"
}
]
}
}