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 bb385c4 commit c3b1ad0Copy full SHA for c3b1ad0
src/RestQuery.js
@@ -676,7 +676,10 @@ RestQuery.prototype.handleIncludeAll = function () {
676
const includeFields = [];
677
const keyFields = [];
678
for (const field in schema.fields) {
679
- if (schema.fields[field].type && schema.fields[field].type === 'Pointer') {
+ if (
680
+ (schema.fields[field].type && schema.fields[field].type === 'Pointer') ||
681
+ (schema.fields[field].type && schema.fields[field].type === 'Array')
682
+ ) {
683
includeFields.push([field]);
684
keyFields.push(field);
685
}
0 commit comments