nireak
nireak

Reputation: 23

Use bitwise operators in neo4j

I'm a new to neo4j and cypher and I would like to know if it is possible to use bitwise operators in neo4j as explained at this java tutorial?

because RETURN 5 AND 3 ...fails

and so does RETURN 5 & 1 or RETURN 5 && 1

Thank you

Upvotes: 0

Views: 332

Answers (1)

Kenny Bastani
Kenny Bastani

Reputation: 3308

Neo4j does not support bitwise operations as a part of Cypher. Using the Java API you could perform your own bitwise operations using Java and manage that over your database transactions.

Upvotes: 1

Related Questions