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
I would like to get data from a view using this view's field set. I can get the records using .select({view: "nameOfView"}), but this gets me all the fields, independently whether they are activated in the view or not.
I can also get only selected fields using .select({view: "nameOfView", fields: ["FieldName1", "FieldName2"]}), but in this case I need to pass in a hard-coded list.
When I make select with "view" parameter, it seems more intuitive to me that only the fields selected in the view would be exported.
I would like to get data from a view using this view's field set. I can get the records using .select({view: "nameOfView"}), but this gets me all the fields, independently whether they are activated in the view or not.
I can also get only selected fields using .select({view: "nameOfView", fields: ["FieldName1", "FieldName2"]}), but in this case I need to pass in a hard-coded list.
When I make select with "view" parameter, it seems more intuitive to me that only the fields selected in the view would be exported.
AirTable exposes metadata of its bases, in particular, for example, that of views : https://api.airtable.com/v0/meta/bases/{baseId}/views/{viewId}, so this could be used to retrieve information about active fields in view.
This is somewhere between a bug and a feature request :)
The text was updated successfully, but these errors were encountered: