We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eee91e5 commit 96570a1Copy full SHA for 96570a1
src/smart-apollo.js
@@ -232,7 +232,7 @@ export class SmartQuery extends SmartApollo {
232
// No result
233
} else if (typeof this.options.update === 'function') {
234
this.vm[this.key] = this.options.update.call(this.vm, data)
235
- } else if (data[this.key] === undefined) {
+ } else if (data[this.key] === undefined && !this.options.manual) {
236
console.error(`Missing ${this.key} attribute on result`, data)
237
} else if (!this.options.manual) {
238
this.vm[this.key] = data[this.key]
0 commit comments