MongoEngine / MongoEngine/mongoengine
QuerySet for related, undefined yet Document?
Open
Nobody has claimed this yet.
- Dominant language
- Python
- Stars
- 4.3k
- Forks
- 1.2k
- Avg merge
- 4h 41m
- Merged PRs (30d)
- 11
Description
Hello. I try to figure out, how to achieve this kind of task:
class Cart(Document):
# some fields
@queryset_manager
def items(self, queryset):
return QuerySet('CartItem').objects(cart=self)
class CartItem(Document):
# some fields
cart = ReferenceField(Cart)
without changing an order of class definition? Like it works with ReferenceField('DocumentStringName')
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Start by tracing the queryset_manager and ReferenceField behavior shown in the issue, especially how each resolves document classes and string references. Determine whether the requested class-order independence is supported or requires a design decision; done means the documented example works without changing the class definition order, with coverage for the forward reference case.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- mongodb, python
- Domain
- databases
- Issue type
- Feature
- Difficulty
- 5/5
- Estimated time
- Over a week
- Activity status
- Stale
- Clarity
- Needs clarification
- Newbie friendliness
- 20/100