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 {}
writes to the db as expected.