Austin Turner
Austin Turner
>..You SHOULD NOT commit the "src-tauri/target" folder or any of its contents. > It is managed automatically, there is a .gitignore file in the src-tauri dir, the comment is there...
You have two options: 1. Use import aliases (as my example below shows) * https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/import 1. Create multiple files for library imports (e.x. `solid-icons.js` `reg-icons.js`) so the import names can...
I have this same use-case +1
You can cobble together a SOAP request using `jsforce` as is, just like you can do any SOAP request with a fair amount of elbow grease. ## Request ```javascript const...
In the mean time, you can always use jsforce to make any arbitrary API request to Salesforce - you can read my details on this comment https://github.com/jsforce/jsforce/issues/922#issuecomment-546715026 I attempted a...
AFAIK this is not possible. JSForce uses the REST API and the docs linked in the ticket appear to only apply to the SOAP API > The query() or queryMore()...
You could possibly look into the UI API, which might provide better responses for this (but might still have other complications): https://developer.salesforce.com/docs/atlas.en-us.uiapi.meta/uiapi/ui_api_features_records_dependent_picklist.htm Since there are no built ins for calling...
Depending on how you are authorizing, if your accessToken is expired and you are not storing the updated token after a refresh, then you might fall into this flow: 1....
Hmm, that does seem odd. I have tested with username+password as well as oauth and see generally consistent results with query() and hitting the endpoint directly. Sorry I couldn't have...
Salesforce will ALWAYS paginate data depending on how expensive the request is. Since you are getting all fields, depending on the type of fields will change what Salesforce deems expensive....