apoc.meta.cypher.isType
Function
apoc.meta.cypher.isType(value Any, type String)
- returns true if the given value matches the given type.
Usage Examples
RETURN apoc.meta.cypher.isType(1, "NODE") AS output;
output |
---|
FALSE |
RETURN apoc.meta.cypher.isType(datetime(), "DATE_TIME") AS output;
output |
---|
TRUE |
Was this page helpful?