-
Please tell me, does tools like django-debug-toolbar or django-silk exists for tortoise-orm?
-
Hello, how I can a similar SQL request be sampled via Tortoise ORM? Read the documentation, but it doesn’t give examples of working with date and time
```sql
SELECT uid, SUM(posts) AS post, SUM(fi…
-
**Describe the bug**
Not a bug, but noting a disappearance of the Tortoise documentation on ReadTheDocs
**To Reproduce**
Visit the Tortoise section in ReadTheDocs.io
https://tortoise-orm.readthe…
-
由于多个使用`tortoise-orm`库的插件会导致冲突不能正确建立数据库连接,`tortoise-orm`又迟迟不发版修复该问题,所以考虑将orm换成`sqlalchemy`来解决该问题,不过不确定已学数据能否无缝迁移。
-
Thinking longer term:
It's likely that we will need a reflection in the graphql schema to a database.... There are options out there such as https://github.com/graphql-python/graphene-sqlalchemy ho…
-
**Describe the bug**
I've setup a ForeignKey field and appropriate model. When fetching the object I can't access the object under the ForeignKey field. Using .fetch_related says relation not found.
…
-
**Problem Definition**
I'm trying to use `tortoise-orm` to build a multi-tenant application using [postgres schema](https://www.postgresqltutorial.com/postgresql-administration/postgresql-schema/).
…
-
I had a ForeignKey `m2` in a model `M` and wanted to `M.filter(m2__id__isnull=None)`, but got the above error message. It took me some time to understand that I had to use `.order_by(...)`, where ... …
-
I'm adapting my project from Django to fastapi + tortoise orm.
All the logic is in the signals.
My task is to catch the event of adding an m2m field.
I'm looking for an m2m_changed analog, but I can't…
-
modify from example:
https://github.com/tortoise/tortoise-orm/blob/develop/examples/fastapi/models.py
show full_name and hide name:
```
class PydanticMeta:
computed = ["full_name"]
…