Anton Lydike
Anton Lydike
As per #533 I added support for multiple relation labels in relationship traversal. It's used like this: ```python definition = dict(node_class=Person, direction=INCOMING, relation_type=('FATHER','MOTHER'), model=None) relations_traversal = Traversal(jim, Person.__label__, definition) all_jims_children...
As per [documentation](https://neomodel.readthedocs.io/en/latest/relationships.html#explicit-traversal) you can supply the explicit relationship traversal settings with `relation_type` of `None|*|`: > ```python > definition = dict(node_class=Person, direction=OUTGOING, > relation_type=None, model=None) >relations_traversal = Traversal(jim, Person.__label__, >...
I just noticed, that having the first line of a file indented, causes meteor to crash (so that it has to be restarted). I get the following error: => Client...
This is an attempt at fixing #277. I am not sure if such a breaking change would be justified though. Looking at the code, I definitely get the feeling, that...
The linked gitter chat is set to private. Please open it up if you want people to join.
This PR wants to introduce `.reversed()` as a shortcut to get a new relationship manager for edges in the reversed direction of the original manager. For example: ```python class Animal(StructuredNode):...
I want to add support for multiple-hop relationship definitions. For example: ```python class Person(StructuredNode): name = StringProperty() parent = RelationshipTo('Person', 'PARENT') ancenstors = RelationshipTo('Person', 'PARENT', n_hops='*') decendants = RelationshipFrom('Person', 'PARENT',...
This is the first step as outlined in #633 to reach feature parity between StructuredNode.cypher and db.cypher_query. I added a test, although I am not quite sure if I did...
I noticed that `StructuredNode.cypher` is missing the `resolve_objects` argument. I looked around and found no reason why it should be missing. While adding support for it, I noticed that there...
Hi, I stumbled across your project looking for a python riscv decoder. I wanted to use some of your tools you created here in my own project, but you don't...