String
A UTF-8 character string type.
In expressions
Strings can be concatenated using the + operator.
"Hello," + " world!" == "Hello, world!"
Literals, string values, and string attributes can be combined:
#!test[schema]
#{{
define
attribute name, value string;
entity person, owns name;
#}}
#!test[write]
#{{
insert $p isa person, has name "John";
#}}
#!test[read, count=1]
match
$name isa name;
let $greeting = "Hello, " + $name + "!";
select $greeting;