sklaiber.bsky.social
@sklaiber.bsky.social
2. Used the Supabase table name in the query.

If the table name is `week_start_date`, you should use the Dart field name `weekStartDate`.

```
final query = Query.where('weekStartDate', DateFormat('yyyy-MM-dd').format(currentWeekStartDate));

```
November 27, 2024 at 10:03 AM
Some mistakes I made during the configuration.
1. forgot to specify the table name in the model
```
@ConnectOfflineFirstWithSupabase(
supabaseConfig: SupabaseSerializable(tableName: 'weekly_meal_plan'),
)
```
November 27, 2024 at 10:03 AM