Our nodes now have three more properties – wcc, pr, and lv – which we want to extract on top of the pre-existing properties. We can do so with the following Cypher code:
MATCH (u:User)
RETURN
u.contributed_to_neo4j as contributed_to_neo4j,
u.followers as followers,
u.publicRepos as publicRepos,
u.wcc as wcc,
u.pr as pr,
u.lv as lv
The result of this query can be downloaded as CSV directly from the browser.
This is useful when trying to build a model; however, this is not viable in a production environment. That's why the following section is dedicated to the automation of these steps, using the Neo4j Python driver.