neo4j-contrib / neo4j-graph-algorithms

Efficient Graph Algorithms for Neo4j
https://github.com/neo4j/graph-data-science/
GNU General Public License v3.0
769 stars 195 forks source link

feature request: don't require node ids provided separately when using projections #862

Open sarmbruster opened 5 years ago

sarmbruster commented 5 years ago

When running any algo on a projection we have to supply

  1. a list of node ids
  2. a list of source id, end id and weight for the relationships

The need for providing node ids separately seems to be redundant. They are already given by source and end ids.

This is esp. helpful if your projection is rather complex so need to run the same projection statement twice.