You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Are there any ways to add one or several labels to the node using Cypher-DSL?
funbuildAddSecondLabelStatement(): ResultStatement {
val user:User_=User_.USERreturnCypher.match(user)
.set(user.addLabels("SecondLabel")) // kinda like that
.returning(user).build()
}
match(u:User)
setu:SecondLabelreturnu
The text was updated successfully, but these errors were encountered:
Are there any ways to add one or several labels to the node using Cypher-DSL?
The text was updated successfully, but these errors were encountered: