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(
|
query ChargingStationsList(
|
||||||
$offset: Int
|
$offset: Int
|
||||||
$limit: Int
|
$limit: Int
|
||||||
$order_by: [ChargingStations_order_by!]
|
$order_by: [chargingStations_order_by!]
|
||||||
$where: ChargingStations_bool_exp
|
$where: chargingStations_bool_exp
|
||||||
) {
|
) {
|
||||||
chargingStations(offset: $offset, limit: $limit, order_by: $order_by, where: $where) {
|
chargingStations(offset: $offset, limit: $limit, order_by: $order_by, where: $where) {
|
||||||
id
|
id
|
||||||
@@ -101,8 +101,8 @@ export const FAULTED_CHARGING_STATIONS_LIST_QUERY = gql`
|
|||||||
query ChargingStationsFaultedList(
|
query ChargingStationsFaultedList(
|
||||||
$offset: Int!
|
$offset: Int!
|
||||||
$limit: Int!
|
$limit: Int!
|
||||||
$order_by: [ChargingStations_order_by!]
|
$order_by: [chargingStations_order_by!]
|
||||||
$where: ChargingStations_bool_exp = {}
|
$where: chargingStations_bool_exp = {}
|
||||||
) {
|
) {
|
||||||
chargingStations(
|
chargingStations(
|
||||||
offset: $offset
|
offset: $offset
|
||||||
|
|||||||
@@ -10,7 +10,7 @@ export const LOCATIONS_LIST_QUERY = gql`
|
|||||||
$limit: Int!
|
$limit: Int!
|
||||||
$order_by: [Locations_order_by!]
|
$order_by: [Locations_order_by!]
|
||||||
$where: Locations_bool_exp
|
$where: Locations_bool_exp
|
||||||
$chargingStationsWhere: ChargingStations_bool_exp
|
$chargingStationsWhere: chargingStations_bool_exp
|
||||||
) {
|
) {
|
||||||
Locations(offset: $offset, limit: $limit, order_by: $order_by, where: $where) {
|
Locations(offset: $offset, limit: $limit, order_by: $order_by, where: $where) {
|
||||||
id
|
id
|
||||||
|
|||||||
Reference in New Issue
Block a user