Hello everyone,
I am actually building a carousel using the Web API. I am going over the documentation and I cannot find a way to do what I want. I am trying to get the previous and next row with an id of one row in a filtered table.
For exemple, I have the following data:
ID | Name | Category
1 | D | CategoryZ
2 | B | CategoryZ
3 | C | CategoryL
If I want to get the previous element and next element of B when the table is filtered by the Category column and Name column. In this case, the previous element is C and the next one is D, How do I do that using the Web API?
The only thing I could maybe think of is a way playing with the "offset" parameter. Maybe I am missing something in the documentation.
Thank you in advance
