Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding labels using dsl #1193

Open
gexterio opened this issue Mar 5, 2025 · 0 comments
Open

Adding labels using dsl #1193

gexterio opened this issue Mar 5, 2025 · 0 comments

Comments

@gexterio
Copy link

gexterio commented Mar 5, 2025

Are there any ways to add one or several labels to the node using Cypher-DSL?

  fun buildAddSecondLabelStatement(): ResultStatement {
    val user: User_ =   User_.USER
    return Cypher.match(user)
      .set(user.addLabels("SecondLabel"))  // kinda like that
      .returning(user).build()
  }
match(u:User) 
set u:SecondLabel
return u
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant