I am using the GetPagedChildren method of the contentservice backoffice api. I want to return my paged children only where a property of that object is equal to a certain value, in this case where the Property “Active” is true.
I see that the last param of this method is called filter so I do this:
.contentService.GetPagedChildren(parentId, pageIndex, pageSize, out total, filter: “Active == true”)
But passing “Active == true” doesn’t work - no results come back.
Is this correct use and syntax for filter param?
Can I use it like this?
This is a companion discussion topic for the original entry at https://our.umbraco.com/forum/92070-using-filter-param-of-content-service-getpagedchildren