function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
GirinoobGirinoob 

SOQL query to know field dependencies

Is there any know to find field dependencies using SOQL query? ....like where the field is used trigger, workflow, apex class etc.

GirinoobGirinoob
How do i use Schema method for getting field dependencies details .... can u please give me example ?
SFDC-SDSFDC-SD

Why do you need a SOQL when you can go find it in Package.

 

You can query getGlobalDescribe, getSObject and  other methods like getLabel, getChildRelationships to get all the details. 

I guess all that you can see that Packages page can be retrieved using SOQLs.