Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
03-22-2019 06:52 AM
Hey,
I have a enum flag e.g.
[Flag]
public enum MyFlagEnum{
None = 0,
Flag1 = 1,
Flag2 = 2
Flag3 = 4
}
So you can do bitshift operations and combine flags.
How would you store/model such a construct in Neo4j? I want to be able to remove/add flags on thousands of nodes/data at once.
Solved! Go to Solution.
04-08-2019 11:25 AM
Maybe you can use the APOC library which has bitwise operators:
https://neo4j-contrib.github.io/neo4j-apoc-procedures/#bitwise-operations
Yours kindly
Omer
04-04-2019 12:50 AM
If you have only a few options, I would use Labels.
Which you can add/remove at will.
04-08-2019 11:25 AM
Maybe you can use the APOC library which has bitwise operators:
https://neo4j-contrib.github.io/neo4j-apoc-procedures/#bitwise-operations
Yours kindly
Omer
All the sessions of the conference are now available online