[Vuejs]-Vue-apollo. Queries don't work return 400 Bad Request

0👍

after to install the extension Graphql in Firefox and found my mistake.

{
  "errors": [
    {
      "message": "Cannot query field \"is_active\" on type \"UserType\". Did you mean \"isActive\"?",
      "locations": [
        {
          "line": 4,
          "column": 5
        }
      ]
    }
  ]
}

Changing to isActive the query worked fine.

Leave a comment