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 52d6515f3d
commit 4cea350259
Signed by: ulfgebhardt
GPG Key ID: DA6B843E748679C9

View File

@ -3,7 +3,7 @@ import { getNeode } from '../../backend/build/db/neo4j'
const neodeInstance = getNeode()
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