Rick Reynolds
Rick Reynolds
Installing APOC plugin installs apoc5plus-5.11.0.jar that does not have TTL support. Dropping in the plugin from https://github.com/neo4j-contrib/neo4j-apoc-procedures/releases/download/5.11.0/apoc-5.11.0-extended.jar will sort of work but it doesn't run the task that actually does...
version: 0.6.2 `client.execute(query("create (n:MyNode {p: 'prop})")).await.unwrap(); ` returns with no error but also does nothing. ``` let mut result = client.execute(query("create (n:MyNode {p: 'prop})")).await.unwrap(); while let Ok(Some(row)) = result.next().await {}...
Neo Desktop Version: 1.5.8.105 Database Version 5.11 APOC Version 5.11 on MacOS 12.4 I installed the APOC plugin using the Desktop UI. Default APOC functionality loads fine. I created a...