Virtual1ty
Virtual1ty
Hi @martincpt, would you mind submitting an MRE so we can easily reproduce your issue? I'm not able to reproduce it with something like this: ```python async def get_executions_paginated(limit: int,...
Hi @martincpt, thanks for the update. I won't go through and try to run this again since you did not provide a minimally reproducible (runnable) example. With that said, I'll...
Hi @martincpt, again, we're sorry that this change broke your use case. MongoDB documentation specifies the correct behavior when .limit() is applied, which we now follow: https://www.mongodb.com/docs/languages/python/pymongo-driver/current/crud/query/specify-documents-to-return/#limit I have given...
Hi. I can confirm that I get the same error as you do with your reproducer. What I'm struggling to understand is what exactly are you trying to hunt down...
I would technically not characterize this as a bug as this was simply never implemented. My guess is that DBRef comes from PyMongo right? https://github.com/mongodb/mongo-python-driver/blob/master/bson/dbref.py The thing is, `Link` objects...
I see. That may be very useful but would probably complicate the design or overall logic. If I'm understanding this correctly, we can have any additional fields under the $ref...
Hi, thank you for reporting this issue. I would say that in a way, this is similar to #1017. At least what I commented there about the aliases usage. The...
Hi, this is mentioned in the documentation: `Only top-level fields are fully supported for now.` https://beanie-odm.dev/tutorial/relations/ I can reopen this as a feature request.
Hi @ldorigo, I am unable to reproduce with the code provided in #965. Please provide a minimum reproducible example (MRE). In the Beanie [Relations documentation](https://beanie-odm.dev/tutorial/relations/) it states that 'BackLink' is...
Thanks for reporting back. I agree that some error/warning message could be added when attempting to use any method on an un-initialized Document model.