Hi all,

I'm running the Neo4j Community 3.0.12 on docker.

First of all: there still is the old panel using to running queries instead 
of using the browser (speaking around v2.2)????

Second: I have some troubles running the following query:


    :param nome: "Di Pietro Chiara"       /* as suggested by Michael Hunger 
in an answer on a post

    merge (_cal_445:`calendario` { :`X-VR-CALNAME` = '$nome' 
})-[:`appartiene a`]->(_per_445:`persona`) 
    WHERE $nome = concat(_per_445.cognome," ",_per_445.nome) 
            OR $nome = concat(_per_445.nome," ",_per_445.cognome)
    return _cal_445, _per_445

well, I made some changes and some attempts to run the query, with no 
result.

    {
       "nome" : 'Di Pietro Chiara'
    }    

    Merge (_cal_445:`calendario` { :`X-VR-CALNAME` = '$nome' 
})-[:`appartiene a`]->(_per_445:`persona`) 
        WHERE $nome = concat(_per_445.cognome," ",_per_445.nome) 
            OR $nome = concat(_per_445.nome," ",_per_445.cognome)
    return _cal_445, _per_445

and in this case the error is as follow:

    Invalid input '{': expected <init> (line 1, column 1 (offset: 0))
    "{ "nome" : 'Di Pietro Chiara' }    "
     ^

Has someone an idea?

BTW, the :help param|params returns an error


-- 
You received this message because you are subscribed to the Google Groups 
"Neo4j" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to neo4j+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to