Graphql - Image resizing, filter by URL

I am trying to filter the below GRAPHQL Image resizing requests by path, I want to filter the response to specific URLs but can’t find how to do that. Can someone assist please? Or is there another way to filter https requests by something like “path contains …”.

{
viewer {
zones(filter: { zoneTag: “**” })
{
imageResizingRequests1mGroups(
orderBy: [date_ASC]
limit: 1000
filter: { date_gt: “2022-01-15” }
)
{
date: dimensions {
date
}
sum {
requests
originalBytes
resizedBytes
}
dimensions{
date
}
}
}
}
}

This topic was automatically closed 15 days after the last reply. New replies are no longer allowed.