-
-
Notifications
You must be signed in to change notification settings - Fork 94
Closed
Description
Hello,
Query to execute :
RETURN
trim(LEADING 'x' FROM 'xxhelloxx') AS lead,
trim(TRAILING 'x' FROM 'xxhelloxx') AS trail,
trim(BOTH 'x' FROM 'xxhelloxx') AS bothneo4j returns :
╒═════════╤═════════╤═══════╕
│lead │trail │both │
╞═════════╪═════════╪═══════╡
│"helloxx"│"xxhello"│"hello"│
└─────────┴─────────┴───────┘
arcadedb returns :
ArcadeDB - The Next Generation Multi-Model DBMS
trail lead both
<null> <null> <null>
Reactions are currently unavailable