Unable to fetch complete records from Salesforce using Python
问题 I am trying to fetch the data from salesforce using the simple_salesforce library in python. I am able to get the correct count of records while running the count query. But while I am trying to put that results (in the form of list) into s3 as a JSON object, not as many reocrds are getting persisted as I captured from Salesforce. Here is the piece of code: result = sf.query("SELECT ID FROM Opportunity")['records'] object.put(Body=(bytes(json.dumps(result, indent=2).encode('UTF-8')))) Is the