Minor Changes
-
#4183
0c1d4944397
Thanks @yildirayunlu! - fix: update custom id column name on meta paramsBREAKING CHANGE:
meta.idColumnName
is used instead ofmeta.id
when the primary key column name of your data table is different fromid
.useMany({ resource: "posts", ids: [1, 2], meta: { - id: "post_id", + idColumnName: "post_id", }, });
-
#4182
a58e9a0f1b0
Thanks @alicanerdurmaz! - feat: added refine.config.js to support swizzling. Now with swizzle support, you can easily customize supabase data provider for your needs.feat: tests added for utility functions.
chore: utility functions have been moved to their own files.