-
Notifications
You must be signed in to change notification settings - Fork 29
Description
Hello, it's me (again :) ).
I have a new problem:
My records have several fields with type "Link to another record", and I would like keep the manual reorder when I retrieve them, but this isn't the case today :'(
The manual reorder explanation: https://support.airtable.com/hc/en-us/articles/217521267
I started to research where the problem comes from and I viewed that related_field are retrieved by a new API call with a filterByFormula on RECORD_ID() in OR, example:
OR(RECORD_ID() = 'recdpDDhXpoZOhvny', RECORD_ID() = 'recNwuDQa3evOLZnm')
The full API call:
https://api.airtable.com/v0/app75XXX/Team%20Members?filterByFormula=OR%28RECORD_ID%28%29+%3D+%27recdpDDhXpoZOhvny%27%2C+RECORD_ID%28%29+%3D+%27recNwuDQa3evOLZnm%27%29
So the sort order is lost here, because the API return records without considering the sort order in parent table :/