I'm using neo4j-to-elasticsearch plugin in order to index in ES all of my Decision
nodes with the following configuration -
<NEO4J_com_graphaware_module_ES_node>hasLabel('Decision')</NEO4J_com_graphaware_module_ES_node>
I need to exclude some of the Decision
nodes (to be indexed in ES) based on some node properties, for example I don't want to index Decision
where decision.hidden
is true. Is it possible to extend my neo4j-elasticsearch to support it ?