acrosman / electronForce

A basic Salesforce Org exploration tool written with Electron and JSForce.
MIT License
13 stars 13 forks source link

Add Result Paging #67

Open acrosman opened 3 years ago

acrosman commented 3 years ago

Summary Add the ability to pull later pages from a query result with lots of data.

Description While the application is aware of the need for paging in theory, nothing has been done to implement it in practice. Even the simplest org should return more than 10k records for: SELECT SobjectType, Field, ParentId, PermissionsEdit, PermissionsRead, Parent.Name FROM FieldPermissions

  1. Add paging controls to the interface.
  2. Add support for pulling in subsequent pages see jsforce's [QueryMore()](http://jsforce.github.io/jsforce/doc/Connection.html#queryMore) and this issue for implementation suggestions and discussion.