You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The example for queries only shows a single query being submitted. How do you run multiple queries in one bulk call? When I follow the example in the README it runs immediately and synchronously returns the values for only the one call.
bulk = SalesforceBulkApi::Api.new(restforce_client)
response = bulk.query('Contact', "SELECT Id, AccountId FROM Contact WHERE Email = '[email protected]'")
The example for queries only shows a single query being submitted. How do you run multiple queries in one bulk call? When I follow the example in the README it runs immediately and synchronously returns the values for only the one call.
response['batches'][0]['response']
returns:What I would like to do is something like the example below, but it's unclear how:
Thanks!
The text was updated successfully, but these errors were encountered: