Hello.
I need to convert a field in my Cypher query, from boolean to string.
Now, I execute this query:
MATCH (pref:XmlTag)
WHERE pref._name="orm_PreferredIdentifierFor"
RETURN DISTINCT COUNT(pref.ref) >0 AS isPreferred
Pref.ref has a value like a bunch of letters, or it's null. I'm just interested in priting "true" where pref.ref is set with a value no matter what, or "false" when is null.
I already solved this with the above query, but
with this workaround I obtain a java boolean type, but I need string. So, "true" or "false" in my result must be strings instead of boolean type.
Is there a way to do this?
Thanks in advance.