You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When requesting a list of dataset items without specifying the order, the default order should be by the "order" column, but instead it is sorted by audio_recording_id then order.
In other words, requesting /datasets/$dataset_id/items/ incorrectly returns the same results as
select*from dataset_items
where dataset_id = $dataset_id
order by"audio_recording_id", "order"
The text was updated successfully, but these errors were encountered:
When requesting a list of dataset items without specifying the order, the default order should be by the "order" column, but instead it is sorted by audio_recording_id then order.
In other words, requesting /datasets/$dataset_id/items/ incorrectly returns the same results as
The text was updated successfully, but these errors were encountered: