function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Jayaramu T 9Jayaramu T 9 

i need to query to fetch Account Name,Contact Name,Subject,Issue Summary,Case Record Type from case object can any one please help me on this?

Vaishali Nanda 10Vaishali Nanda 10
select AccountId,ContactId,Subject,Type from case 
Try this one i dont understand the issue summary thing but above query will work.
DevADSDevADS
Hey Jayaramu,

You can do something like - "SELECT Id, Account.Name, Contact.Name,Subject,RecordType.Name FROM Case".

Even, I didn't understand your challenge. Please elaborate.

Happy Coding!!