-
Notifications
You must be signed in to change notification settings - Fork 80
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
merge properties from multiple neo4j nodes into one elasticsearch document possible? #25
Comments
One option is just to take the source and adapt it to your needs. Then we would have to allow an additional config that creates derived properties out of a cypher query. Something like this:
would then store
would then store an |
Hi, Is possible to index the nodes which satisfies some conditions. for example: |
You could use the elasticsearch integreation of Here it would add a lot of complexity as you would have to define the Michael On Fri, Nov 18, 2016 at 9:55 AM, santosh-hegde [email protected]
|
Would the apoc approach work for you @santosh-hegde ? |
Hi Michael, I didn't try executing APOC Procedure. But elasticsearch.project_User=WITH _ as user MATCH (user)-[:WORKS_AT]->(l) RETURN {name:user.name, loc:location.address} as info is not working to me. |
Hi,
thanks for all the great work! I just tried
neo4j-elasticsearch
with the example provided in the documentation. That worked out of the box, without any problems. ;)Now I would like to do something more advaned with
neo4j-elasticsearch
and I am not really sure if that's possible.I have the following neo4j schema
User-[WORKS_AT]->Location
and I would like to merge properties from both the
User
node and theLocation
node together intoone elasticsearch document.
Is that somehow possible?
Greetings from Austria,
Bernhard
The text was updated successfully, but these errors were encountered: