Fetches the adjacent row to a given row_id in the table with the given table_id. If the previous flag is set it will return the previous row, otherwise it will return the next row. You can specifya view_id and it will apply the filters and sorts of the provided view.
Path parameters
Returns the row adjacent the provided value.
Returns the row of the table related to the provided value.
Query parameters
A flag query parameter which if provided returns theprevious row to the specified row_id. If it's not setit will return the next row.
If provided, the adjacent row will be one that matchesthe search query.
If provided, allows API consumers to determine what kind of search experience they wish to have. If the default SearchMode.FT_WITH_COUNT is used, then Postgres full-text search is used. If SearchMode.COMPAT is provided then the search term will be exactly searched for including whitespace on each cell. This is the Baserow legacy search behaviour.
A flag query parameter that, if provided with one of the following values: y, yes, true, t, on, 1, or an empty value, will cause the returned JSON to use the user-specified field names instead of the internal Baserow field names (e.g., field_123).
Applies the filters and sorts of the provided view.