Hello everybody,
I have an index that contains documents with the following structure.
///SHOWS INDEX
{
"_id",
"artists":[ -----> NESTED OBJECT LIST
{
"id": "1",
"name": "text"
},
{
"id": "2",
"name": "text"
}
]
}
What I would like to do is get only the ID(unique) of the artist's nodes, where a simple query string matches with property "name", and then to sort by the property "name" and paginate the ID list.
It's possible?
Best regards.