tl;dr What is an appropriate replacement for "MATCH (n1: UserID)-[r1*]-(n2) RETURN n1, n2, r1" where I want to return all relationships & nodes.
We are using Neo4j to store complex POJOs.
@NodeEntity
class User (
var id: UserID
var text: Narr...
We currently have only 10 User with about 50-100/per user. We won't need all the user in the database at once generally speaking but we would need to be able to return 10-100 users at once. The current timing is 12000 ms with relationships and 330 ms...
There are no interconnected nodes and the average depth may be something like 5.
An intake may be something like this
{
"resourceType": "User",
"id": "example",
"text": {
"status": "generated",
}
],
"active": true,
"name": [
{...
We intake large JSONs that are deeply nested.
For example, one JSON that has all the demographic information on a user. It will have name, address, text, names of children, etc... We store this object as a graph (so its not connected to other people ...