Blogs
-
Hello World The Fundamentals of Salesforce Apex Coding And Programming
A valuable asset for a Salesforce administrator is a basic grasp of the Salesforce Apex programming language. This understanding enables administrators to comprehend an application’s functionality better. Consequently, they can elucidate the underlying logic to users and troubleshoot issues without immediate reliance on a Salesforce developer. To facilitate Salesforce administrators in delving into Apex coding,…
-
Configurable Record Picker In Lightning Web Component
Creating a configurable record picker in Lightning Web Component has been traditionally achieved through custom lookup components, like the Generic Multi-Select Lookup Component, for multi-record selection. While such components remain relevant for multiple-record selection, Salesforce introduced the lightning-record-picker control to simplify the selection of single records within custom LWC (Lightning Web Component) screens. This new…
-
GraphQL Query Generation In Salesforce Apex
GraphQL has the capability to fetch data from numerous sources within a solitary query. This diminishes the need for multiple HTTP requests, thereby lowering latency and enhancing performance, particularly on mobile devices and those with low bandwidth. To retrieve data, we need to create SQL queries in GraphQL format. In this article, we’ll construct a…