User Story
As a customer support representative at XYZ Corporation, I want to view a list of high priority cases that have been closed so that I can ensure that all urgent issues have been resolved to the customer's satisfaction.
SOQL
List<Case> cases = [SELECT Id, CaseNumber, Subject, Priority FROM Case WHERE IsClosed = true AND Priority = 'High'];
Video
Video does not exists.