Salesforce introduced one of its most powerful and developer-friendly features in Winter ’23 : the FIELDS() function in SOQL . This feature completely changes how we write queries—especially for debugging, API testing, dynamic data exploration, and admin/developer productivity. Before this feature, retrieving “all fields” from an object required: manually listing every field generating describe calls writing dynamic SOQL using tool-generated queries (Workbench, VS Code, etc.) Now, with FIELDS() , you can retrieve standard fields, custom fields, or ALL fields in one line. Click here to watch video on how it works What is the FIELDS() Function? FIELDS() is a SOQL function that dynamically expands into the fields of an SObject at query runtime. It supports three modes : Mode Description FIELDS(STANDARD) Retrieves all standard fields of the object. FIELDS(CUSTOM) Retrieves only the custom fields (fields ending in __c). FIELDS(ALL) Retrieves both standard + custom field...