How to know the user who created or modified the Lightning component salesforce
Solution: Use SOQL Query below
SELECT Id, DeveloperName, CreatedBy.Name, LastModifiedBy.Name,CreatedDate, LastModifiedDate FROM LightningComponentBundle where DeveloperName ='dynamicTabsInLWC'
where dynamicTabsInLWC is the name of the component.
Output:
Note: Keep the tooling API checkbox to true in developer console while executing the query.
No comments:
Post a Comment