yoanbernabeu / Airtable-Client-Bundle

Simple Client for Airtable API
MIT License
33 stars 12 forks source link

[Feature request] Add support for Metadata API #28

Closed yoanbernabeu closed 2 years ago

yoanbernabeu commented 2 years ago

I think it would be interesting to add support for AirTable's Metadata API (https://airtable.com/api/meta) to allow users to simply retrieve information from their database.

The use could be something like that :

public function bar(AirtableClientInterface $airtableClient)
    {
        $tables = $airtableClient->getTables();

        $views =  $airtableClient->getViewsFromOneTable('Foo');

        $fields =  $airtableClient->getFieldsFromOneTable('Bar');

    // ...
}