First off, Neo4jClient is amazing! Thank you!
Was reading how to delete nodes and inbound relationships here but got stuck for a while: https://github.com/Readify/Neo4jClient/wiki/cypher-examples#delete-a-user-and-all-inbound-relationships
graphClient.Cypher
.Match("(user:User)<-[?:r]-()")
.Where((User user) => user.Id == 123)
.Delete("r, user")
.ExecuteWithoutResults();
Anytime i tried executing the code above, i'd always get an error of "?" has been depreciated and use an alternate Cypher query.