neo4j-graphql-java
neo4j-graphql-java copied to clipboard
Adjust generated delete method
The delete method for Nodes will have the following schema:
type Mutation {
deleteMovies(where: MovieWhere): DeleteInfo!
}
type DeleteInfo {
nodesDeleted: Int!
relationshipsDeleted: Int!
}
Changes to the current implementation:
- Return value is no longer the Deleted Entity
- Multiple nodes can be deleted via the
where
-filter