Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

GraphQLError: Syntax Error: Expected Name, found <EOF>

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

like image 276
Malik Bagwala Avatar asked Jul 02 '19 08:07

Malik Bagwala


1 Answers

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 `; 
like image 148
Marco Daniel Avatar answered Sep 17 '22 16:09

Marco Daniel