User Story
As a sales representative at XYZ Company, I want to view a list of contacts associated with a particular account so that I can manage and maintain accurate customer records. Using the "Contact Lookup" feature, I can quickly and easily retrieve a list of contacts for a specific account.
SOQL
List<Contact> contacts = [SELECT Id, FirstName, LastName, Email FROM Contact WHERE AccountId = '0010x00001abcde'];