You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
apoc.periodic.repeat does not take a place, for example the below simple cypher does not execute
CALL apoc.periodic.repeat(
"create-people",
"UNWIND range(1,2) AS id CREATE (:Person {uuid: apoc.create.uuid()})",
1
);
The text was updated successfully, but these errors were encountered:
@java-eyes Your query looks correct to me. Do you mean that it is the inner create query that is never run (i.e. no nodes created) or that you get some error when you run the whole query? Which version of Neo4j and APOC are you using?
apoc.periodic.repeat does not take a place, for example the below simple cypher does not execute
CALL apoc.periodic.repeat(
"create-people",
"UNWIND range(1,2) AS id CREATE (:Person {uuid: apoc.create.uuid()})",
1
);
The text was updated successfully, but these errors were encountered: