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: {
....
-------------