Matt and Neil
Matt and Neil
Winter '23 enables Apex to run Invocable Actions dynamically. Here are the docs for the Invocable.Action classes and methods: [developer.salesforce.com/docs/atlas.en-us.apexref.meta/apexref/apex_class_Invocable_Action](https://developer.salesforce.com/docs/atlas.en-us.apexref.meta/apexref/apex_class_Invocable_Action.htm) This will work with the Nebula managed package because the...
SOAP equivalent like so: ``` QueryResult result = client.query(strQuery); List customFields = result.records; while (!result.done) customFields.addAll((result = client.queryMore(result.queryLocator)).records); ``` (The `queryMore` method is already there, it just need to be...