django-async-orm icon indicating copy to clipboard operation
django-async-orm copied to clipboard

comply with official django async orm syntax

Open rednaks opened this issue 3 years ago • 0 comments
trafficstars

when we patch models, we prefix the methods with async_ but the new official django api prefixes the methods with a ex:

patched api : sync objects.get => async objects.async_get official api: sync objects.get => async objects.aget

so to make it forward compatible we need to comply to django's new api.

be aware to keep our api so we don't break the internet

rednaks avatar Oct 12 '22 14:10 rednaks