Salesforce Field Service Tricks - Filter records based on a list of Ids.
Salesforce FSL has several limitations to consider. One of them is the IN operator not supported in the Get Records operation for FSMobile flows. As a workaround, you can use a combination of the filter and retrieve functions to filter records based on a list of IDs. For example:
Alternatively, you can also use a loop to iterate through the list of IDs and use the Get Record operation to retrieve each record individually. This approach may be more efficient if you have a large number of IDs to filter by.