Created
April 12, 2023 21:43
-
-
Save AshV/08b9e4edfe8ab3b39a1772f987d01272 to your computer and use it in GitHub Desktop.
FetchXml query to list out all cloud flows in an environment along with solutions where they are added
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<fetch> | |
<entity name="solutioncomponent"> | |
<link-entity name="solution" to="solutionid" from="solutionid" alias="solution" link-type="inner"> | |
<attribute name="solutionid"/> | |
<attribute name="friendlyname"/> | |
</link-entity> | |
<link-entity name="workflow" to="objectid" from="workflowid" alias="flow" link-type="inner"> | |
<attribute name="workflowid"/> | |
<attribute name="name"/> | |
<filter> | |
<condition attribute="category" operator="eq" value="5"/> | |
</filter> | |
</link-entity> | |
<filter> | |
<condition attribute="componenttype" operator="eq" value="29"/> | |
</filter> | |
</entity> | |
</fetch> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment