fix: Change ChargingStations_order_by/bool_exp to camelCase in all queries

This commit is contained in:
Eric F
2026-06-16 00:20:29 -04:00
parent 051fc3cb22
commit 8510f680da
2 changed files with 5 additions and 5 deletions

View File

@@ -8,8 +8,8 @@ export const CHARGING_STATIONS_LIST_QUERY = gql`
query ChargingStationsList(
$offset: Int
$limit: Int
$order_by: [ChargingStations_order_by!]
$where: ChargingStations_bool_exp
$order_by: [chargingStations_order_by!]
$where: chargingStations_bool_exp
) {
chargingStations(offset: $offset, limit: $limit, order_by: $order_by, where: $where) {
id
@@ -101,8 +101,8 @@ export const FAULTED_CHARGING_STATIONS_LIST_QUERY = gql`
query ChargingStationsFaultedList(
$offset: Int!
$limit: Int!
$order_by: [ChargingStations_order_by!]
$where: ChargingStations_bool_exp = {}
$order_by: [chargingStations_order_by!]
$where: chargingStations_bool_exp = {}
) {
chargingStations(
offset: $offset

View File

@@ -10,7 +10,7 @@ export const LOCATIONS_LIST_QUERY = gql`
$limit: Int!
$order_by: [Locations_order_by!]
$where: Locations_bool_exp
$chargingStationsWhere: ChargingStations_bool_exp
$chargingStationsWhere: chargingStations_bool_exp
) {
Locations(offset: $offset, limit: $limit, order_by: $order_by, where: $where) {
id