11/* eslint-disable @typescript-eslint/no-unused-vars */
22import gql from 'graphql-tag' ;
3- import { VehicleGraphFieldsFragmentDoc } from './src/customFragments.ts ' ;
3+ import { VehicleGraphFieldsFragmentDoc } from '../ ' ;
44
55 // VehicleGraphFields GQL
66 //------------------------------------------------
@@ -10,20 +10,20 @@ import { VehicleGraphFieldsFragmentDoc } from './src/customFragments.ts';
1010 // Query: FetchById
1111 //
1212
13- const FETCH_VEHICLEGRAPHFIELDS_MODEL_BYID = gql `
13+ const FETCH_VEHICLEGRAPHFIELDS_BYID = gql `
1414 query fetchVehicleGraphFieldsById($vehicleId: String!) {
1515 vehicle_by_pk(id: $vehicleId) {
1616 ...VehicleGraphFields
1717 }
1818 }
19- ${ VehicleGraphFieldsModelFields }
19+ ${ VehicleGraphFieldsFragmentDoc }
2020 ` ;
2121
2222
2323 // Query: Fetch
2424 //
2525
26- const FETCH_VEHICLEGRAPHFIELDS_MODELS = gql `
26+ const FETCH_VEHICLEGRAPHFIELDSS = gql `
2727 query fetchVehicleGraphFields(
2828 $distinct_on: [vehicle_select_column!]
2929 $where: vehicle_bool_exp
@@ -35,14 +35,14 @@ import { VehicleGraphFieldsFragmentDoc } from './src/customFragments.ts';
3535 ...VehicleGraphFields
3636 }
3737 }
38- ${ VehicleGraphFieldsModelFields }
38+ ${ VehicleGraphFieldsFragmentDoc }
3939 ` ;
4040
4141
4242 // Mutation: Insert
4343 //
4444
45- const INSERT_VEHICLEGRAPHFIELDS_MODEL = gql `
45+ const INSERT_VEHICLEGRAPHFIELDS = gql `
4646 mutation insertVehicleGraphFields($objects: [vehicle_insert_input!]!, $onConflict: vehicle_on_conflict) {
4747 insert_vehicle(objects: $objects, on_conflict: $onConflict) {
4848 affected_rows
@@ -51,14 +51,14 @@ import { VehicleGraphFieldsFragmentDoc } from './src/customFragments.ts';
5151 }
5252 }
5353 }
54- ${ VehicleGraphFieldsModelFields }
54+ ${ VehicleGraphFieldsFragmentDoc }
5555 ` ;
5656
5757
5858 // Mutation: Update by Id
5959 //
6060
61- const UPDATE_VEHICLEGRAPHFIELDS_MODEL_BYID = gql `
61+ const UPDATE_VEHICLEGRAPHFIELDS_BYID = gql `
6262 mutation updateVehicleGraphFieldsById($id: String, $set: vehicle_set_input) {
6363 update_vehicle(_set: $set, where: { id: { _eq: $id } }) {
6464 affected_rows
@@ -67,14 +67,14 @@ import { VehicleGraphFieldsFragmentDoc } from './src/customFragments.ts';
6767 }
6868 }
6969 }
70- ${ VehicleGraphFieldsModelFields }
70+ ${ VehicleGraphFieldsFragmentDoc }
7171 ` ;
7272
7373
7474 // Mutation: Update
7575 //
7676
77- const UPDATE_VEHICLEGRAPHFIELDS_MODELS = gql `
77+ const UPDATE_VEHICLEGRAPHFIELDSS = gql `
7878 mutation updateVehicleGraphFields($set: vehicle_set_input, $where:vehicle_bool_exp!) {
7979 update_vehicle(_set: $set, where: $where) {
8080 affected_rows
@@ -83,5 +83,5 @@ import { VehicleGraphFieldsFragmentDoc } from './src/customFragments.ts';
8383 }
8484 }
8585 }
86- ${ VehicleGraphFieldsModelFields }
86+ ${ VehicleGraphFieldsFragmentDoc }
8787 ` ;
0 commit comments