-
Model example:
```python
from neomodel.core import StructuredNode
class User(StructuredNode):
permissions = ArrayProperty(StringProperty(choices=['view', 'add', 'edit', 'delete']), required=Tr…
-
This was initially raised as a question in the community forum: https://community.neo4j.com/t/how-to-handle-3-or-more-labels-in-neomodel/63767
Full details below:
I've got a Neo4J database where…
-
Not sure whose issue this is, but just putting it out here. [Graphene](https://github.com/graphql-python/graphene-django) provides Python library for providing graphql interfaces.
Graphene-django …
-
Is there a way to use django-signals every time a new relationship is created?
Thanks.
-
Nodeset provides useful filtering functions. Would it be possible to use Nodeset with a list of nodes (Neomodel nodes) obtained with, say, a cypher query?
It would be useful to document how a Nodes…
-
```python
class RelA(StructuredRel):
pass
class RelB(StructuredRel):
pass
class NodeA(StructuredNode):
b = RelationshipTo('NodeB', 'REL_X', model=RelA)
class NodeB(Struc…
-
## Expected Behavior (Mandatory)
As per https://neomodel.readthedocs.io/en/latest/getting_started.html#retrieving-additional-relations, you can search on relations using, e.g.,
`germany.inhabitan…
-
A few small working ideas to test and implement once we have a first iteration in production:
* Generate indices on searchable non-ID items like labels and variation sequence_id, interval values
*…
-
The API should receive the following JSON request:
```
{
friends:
[
'andy@example.com',
'john@example.com'
]
}
```
The API should return the following JSON response…
-
Neomodel's date property types (`DateProperty`, `DateTimeProperty` and `DateTimeFormatProperty`) are inflated and stored as string values in neo4j instead of temporal values (https://neo4j.com/docs/cy…