I'm a bit stuck. Why this pipeline returns nothing
Get-Content -Path C:\file.json | ConvertFrom-Json | Where-Object -Property FullName -Like "*somefilter*"
But when I split in into two pipelines it acually returns what I want - content of the json file (which is an array of objects) filtered by FullName
$t = Get-Content -Path C:\file.json | ConvertFrom-Json
$t | Where-Object -Property FullName -Like "*somefilter*"