I can't search for signatures with status all in the stripe wrapper's foreign table, by default the api only returns signatures with status "active", so we need to have the option to filter by status "all", the code says we can filter by id, costumer and status, but status is inside attrs and doesn't work in reality.
If we do a search on Supabase, it does not return subscriptions with a status other than "active":
select * from stripe.subscriptions where status = 'all';
returns the error:
ERROR: 42703: column "status" does not exist
LINE 1: select * from stripe.subscriptions where status = 'all' limit 100;
^
HINT: Perhaps you meant to reference the column "subscriptions.attrs".
I can't search for signatures with status all in the stripe wrapper's foreign table, by default the api only returns signatures with status "active", so we need to have the option to filter by status "all", the code says we can filter by id, costumer and status, but status is inside attrs and doesn't work in reality.
If we do a search on Supabase, it does not return subscriptions with a status other than "active":
select * from stripe.subscriptions where status = 'all';
returns the error: ERROR: 42703: column "status" does not exist LINE 1: select * from stripe.subscriptions where status = 'all' limit 100; ^ HINT: Perhaps you meant to reference the column "subscriptions.attrs".