Mithun Thomas

Results 6 issues of Mithun Thomas

Can add an admin panel to this application that displays all user, posts etc?

enhancement

sqlalchemy.exc.DBAPIError: (sqlalchemy.dialects.postgresql.asyncpg.Error) : invalid input for query argument $3: datetime.datetime(2024, 5, 22, 8, 11, 40... (can't subtract offset-naive and offset-aware datetimes) [SQL: UPDATE platform SET is_active=$1::BOOLEAN, is_live=$2::BOOLEAN, updated_at=$3::TIMESTAMP WITHOUT TIME...

events = await crud_events.get_multi( db, offset=compute_offset(page, items_per_page), return_as_model=True, limit=items_per_page, sort_columns="id", sort_orders="desc", schema_to_select=EventRead, **conditions, ) I want to filter data that are starting user_id

enhancement
FastCRUD Methods

I create a client-side row model table and add pinned row data at the bottom. In that table, I create a cell renderer to create a serial number but that...

managed-by-community

``` data = crud_user.get_multi( db, nest_joins=True, joins_config=[ JoinConfig( model=Portions, join_on=User.portion_id == Portion.id, join_prefix='portions', join_type="left", relationship_type='one-to-many' ), JoinConfig( model=Category, join_on=User.created_id == Category.id, ), ], ) ``` the above code is what...

[Incorrect Package error](https://i.sstatic.net/GWqVmaQE.png) **Problem:** Even when my Java package names match the folder structure, VS Code shows an “Incorrect Package” error. For example, my structure is: src/ └── Model/ ├──...

bug
ai-triaged