I am using browser 4.3.1. I have a problem in setting parameters. If I want to set the parameter as a long query with multiple lines. There is error "\n". How to deal with this?
I want to create node based on snowflake query result. Snowflake query needs double quotes around the column name, for example,
"select "grade" from table where "name" = 'amy' "
I want to do it in apoc.periodic. iterate and double quotes cannot be es...
I am trying to create nodes based on snowflake query result to neo4j. The snowflake query needs to have double quotes around columns. For example,
select "grade" from table where "name" = 'amy'. I want to do it in apoc. periodic.iterate and double qu...
stefan.armbruster:
:param Select_In => "select variables
from (
select variables_in
from table_a a
join table_b b
on a.id=b.id
where conditions)"
Hi, I run into problem when setti...