Re: Execute a SOQL Query Limitation
An update to this issue. It seems that there is a limit with the SOQL widget and the size of the returned data.
Here is my original SOQL that is truncated to 250 records:
SELECT
Id ,
Opportunity__c ,
User__c ,
Assigned_To__c ,
AccountId ,
CaseNumber ,
LastModifiedDate ,
Preferred_Platform__c ,
Cloud_Design_Start_Date__c ,
Cloud_Design_Completion_Date__c ,
XXXX_Qualification_Completion_Date__c,
Kickoff_Meeting_Date__c ,
Status ,
Comments__c ,
XXX_Team_Notes__c ,
Subject ,
Description ,
Request_Type_Internal__c ,
CreatedDate
FROM
Case
WHERE
( Record_Type_Name__c = 'Unique Record Type' )
If I remove the 'Description' or any of the other Text fields, all 383 records are returned.
Suggestions, Fixes, Any Guidance?