London Dev Meetup Rescheduled! Due to unavoidable reasons, the event has been moved to 21st May. Speakers remain the same—any changes will be communicated. Seats are limited—register here to secure your spot!
AI OnAI Off
London Dev Meetup Rescheduled! Due to unavoidable reasons, the event has been moved to 21st May. Speakers remain the same—any changes will be communicated. Seats are limited—register here to secure your spot!
Sometimes categories are indexed differently, our categories looks like this in the index.
"category": [
{
"name": "TestCategory",
"description": "TestCategory",
"id": 12
}
],
In this case the query should not include the value path
https://localhost:8080/api/episerver/v3.0/search/content?filter=category/name eq 'TestCategory'
I have this request that I am trying to fetch data with but I always get no records when calling the api.
https://localhost:8080/api/episerver/v3.0/search/content?filter=category/value/name eq 'TestCategory'
I followed the api documentation where it says to have the following format:
?filter=category/value/name eq 'Category Name'
Am I doing something wrong in the query above? Any help is appreciated.