Naval Bhandari
Naval Bhandari
``` class Task(Document): meta = {"collection": "tasks", "strict": False} dateStarted = DateTimeField(default=datetime.now) state = StringField() ``` ``` class CustomNode(Node): class Meta: name = 'Node' @staticmethod def to_global_id(type, id): return id...
A custom resolver defeats the purpose of the `MongoengineConnectionField`. I like being able to expose the model and filter on any item without explicitly defining them in resolver. The `get_node_from_global_id`...
I've got both in mine actually! You're very correct! I tried filtering ids on an embedded document w/ a different field name. I've modified it to this to work generically:...
You're right. This does not work on filtering EmbeddedDocuents. I needed to look at the last several records of an EmbeddedDocument, and it kept complaining about not having a `pk`...
Any more news on this? Would be super useful for our CI, too.
Is there any reason `proto_library` needs to compile `protoc`? It's defined in `rules_proto` but can it not be monkey patched (or something) to use the precompiled binary as well?