Play Games

Search This Blog

Showing posts with label How to know the user who created or modified the Lightning component salesforce. Show all posts
Showing posts with label How to know the user who created or modified the Lightning component salesforce. Show all posts

Saturday, May 1, 2021

How to know the user who created or modified the Lightning component salesforce

 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.