Concept Flow - Where-Object for filtering
Start with a collection
Apply Where-Object filter
Evaluate condition on each item
If True
→Keep item
If False
→Discard item
Output filtered collection
The flow starts with a collection, applies a filter condition to each item, keeps items that match, and outputs the filtered collection.