from fireo.fields import TextField
from fireo.models import Model
class Foo(Model):
name = TextField()
Foo(name="bar").save()
Foo.query(name="bar").get()
I obtain the warning :
venv/lib/python3.10/site-packages/google/cloud/firestore_v1/base_collection.py:290: UserWarning: Detected filter using positional arguments. Prefer using the 'filter' keyword argument instead.
I suppose that maybe the FilterQuery in the lib does not use the new api .where(filter=).
Thanks a lot for your attention,
Hi, when I do such query:
I obtain the warning :
I suppose that maybe the FilterQuery in the lib does not use the new api .where(filter=).
Thanks a lot for your attention,