Im using soql to fetch data from saleforce, its working fine, but after moving to prod, we found it is giving only top 200 rows. Also tried get records and soql queries. Can some one give some info or provide any workarounds. Checked with IT team, they have kept this 200 limit , and not ready to change.
In Salesforce, SOQL returns only 200 records per batch by default. Since the limit canât be changed, use paginationâloop with queryMore or split queries (e.g., by date or ID) to fetch all records in multiple calls.