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

malik bagwala picture malik bagwala · Jul 2, 2019 · Viewed 12.9k times · Source

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

Answer

Marco Daniel picture Marco Daniel · Jul 2, 2019

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
`;