removed write rights from query where its not needed

This commit is contained in:
Ulf Gebhardt 2023-05-22 16:58:04 +02:00
parent 2204b29c0a
commit 8223024c30
Signed by: ulfgebhardt
GPG Key ID: DA6B843E748679C9

View File

@ -9,7 +9,7 @@ const neo4jConfigs = {
}
const neodeInstance = getNeode(neo4jConfigs)
beforeEach(() => cy.then(() => neodeInstance.cypher('MATCH (everything) DETACH DELETE everything;')))
beforeEach(() => cy.then(() => neodeInstance.writeCypher('MATCH (everything) DETACH DELETE everything;')))
Cypress.Commands.add('neode', () => {
return neodeInstance