laravel-airtable
laravel-airtable copied to clipboard
How can you use `filterByFormula`?
am trying to filterByFormula
but am getting success.
could you please guide my how to use?
Airtable::table('default')->all(500000)
;
I would be interested in this also. filterByFormula
I have a column that uses a multiple select on airtable.
column name = Discipline and possible values are Architect, Builder, Designer.
One row could just have Builder selected and then row 2 has Builder and Designer selected.
If I use where('Discipline', 'Builder') it will only return the 1st row (I would also like it to pull the 2nd row also). Would a filterByFormula function fix this or would it be more like a whereIn() function that would call the API differently?