Neo4j CQL Functions and Data Types


Neo4j CQL Functions

A list of Neo4jCQL Function:

IndexFunctionUsage
1.STRINGThey are used to work with string literals.
2.AggregationThey are used to perform some aggregation operations on CQL query results.
3.RelationshipThey are used to get details of relationships such as startnode, endnode, etc.

Neo4j CQL Data Types

The Neo4j CQL data types are similar to Java language data types. They are used to define properties of a node or a relationship.

A list of Neo4j CQL data types:

IndexCQL Data TypeUsage
1.BooleanIt is used to represent Boolean literals: True, False.
2.byteIt is used to represent 8-bit integers.
3.shortIt is used to represent 16-bit integers.
4.intIt is used to represent 32-bit integers.
5.longIt is used to represent 64-bit integers.
6.floatFloat is used to represent 32-bit floating-point numbers.
7.doubleDouble is used to represent 64-bit floating-point numbers.
8.charChar is used to represent 16-bit characters.
9.StringString is used to represent strings.

Next TopicNeo4j Operators




Latest Courses