cancel
Showing results for 
Search instead for 
Did you mean: 

Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.

Add Delete Graph nodes with UI

Can someone help finding any tool to Add / delete nodes using Graph UI (non query), just visually change (add/delete/modify) and apply the changes?

We have imported large amount of data from xls, and needs lots of correction after visual inspection. No expertise available to write a query to do this operation, hence the request for graph edit/add.

Thanks,

Gopi

1 REPLY 1

@gopi

If you're using Neo4j Desktop or Neo4j Browser,
you can hide nodes after the result by clicking on the desired node and then on eye icon:


Moreover, you could also use grass, that is a pseudo css for neo4j browser,
to hide, for instance, every node with label "Test", executing this command:

:style {
    "node.Test": {
        "color": "transparent",
        "border-color": "transparent"
    }
}

See here: css - Where can I find an overview of the syntax of the Neo4j GRASS language? - Stack Overflow