wilded
4/5/2019 - 2:47 PM

Apollo GraphQL Vue.js error Missing attribute on result

the Query name should match in the document.gql and 
-------- document.gql ---------
query QueryName($inputVariable: Type) {
  entyty(fieldName: $inputVariable) {
....
-------- document..vue ---------
<component-name :bind-variable="variable"/>
...      
@Component<ComponentName>({
  apollo: {
    QueryName: {
    ....
-------------