fix: Change ChargingStations_order_by/bool_exp to camelCase in all queries
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user