I got the above error on a graphql query, I am using apollo-react by the way and using the Query component for rendering the data
this is my code
const GET_VEHICLE_CHECKS = gql` query getVehicleChecks($uuid: String!) { tripDetails(uuid: $uuid){ departmentAssigned{ vehicleChecks{ conditions{ id name standard valueType spinnerItems } } } } `;
and this is what my actual query looks like
{ tripDetails(uuid: "c0e7233093b14afa96f39e2b70c047d8"){ departmentAssigned{ vehicleChecks{ conditions{ id name standard valueType spinnerItems } } } vehicleConditions{ id condition{ id standard } value } } }
I tried changing variable names, but that didn't work
You are missing a closing bracket }
at the end of your query.
const GET_VEHICLE_CHECKS = gql` query getVehicleChecks($uuid: String!) { tripDetails(uuid: $uuid){ departmentAssigned{ vehicleChecks{ conditions{ id name standard valueType spinnerItems } } } } } <- THIS `;
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With