I want to search the pages with GetPropertyValue(..) but I don't get any result with the below:
var results = SearchClient.Instance.Search()
.Filter(p => p.GetPropertyValue("IsEmployee").Match("true"))
.GetContentResult();
Is there a way to filter with the GetPropertyValue(..) for booleans like above?