How can i filter by url?

Hey @smaiau - this is because data.url is a special computed property, that is only applied after the query happens.

You can use targeting for this - e.g. ?userAttributes.urlPath=/my-url to filter by URL, or you can query off of the query object directly, e.g. in most cases it’s ?query.query.0.value=/my-url

If you look at the query property of the response object you should see what I mean, it should look like

{ query: [ { property: 'urlPath', value: '/my-url' }] }