Search a specific keyword in all the aura components

Search a specific keyword in all the aura components


Approach is mentioned here - https://salesforcevirtualmentor.blogspot.com/2022/04/search-anything-or-everything-in.html


Instead of retrieving all those components just retrieve AuraDefinitionBundle -


<?xml version="1.0" encoding="UTF-8" standalone="yes"?>

<Package xmlns="http://soap.sforce.com/2006/04/metadata">

    <types>

        <members>*</members>

        <name>AuraDefinitionBundle</name>

    </types>

    <version>52.0</version>

</Package>



Comments