Skip to content

Commit

Permalink
fix: EntityDefinition does not support QueryMore
Browse files Browse the repository at this point in the history
  • Loading branch information
VinceFINET committed Jul 26, 2024
1 parent aa26802 commit 5cb18f5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ export class OrgCheckSalesforceManager {
}
localLogger?.log(`Statistics of ${queries.length} SOQL ${queries.length>1?'queries':'query'}: ${nbQueryMore} queryMore done, ${nbQueriesPending} pending, ${nbQueriesDone} done, ${nbQueriesByPassed} by-passed, ${nbQueriesError} in error...`);
}
conn.query(query.string, recursive_query);
conn.query(query.string, { autoFetch: query.queryMore === true ? true : false }, recursive_query);
});
}));
}
Expand Down

0 comments on commit 5cb18f5

Please sign in to comment.