Skip to content

Conversation

angrykoala
Copy link
Member

Remove .importWith from Call clauses in favor of constructor options

Before

const clause = new Cypher.Call(nestedClause).importWith(movieNode, actorNode);
CALL {
    WITH var0, var1
    // Nested clause
}

After

const clause = new Cypher.Call(nestedClause, [movieNode, actorNode]);
CALL (var0, var1){
    // Nested clause
}

Copy link

changeset-bot bot commented Aug 21, 2025

🦋 Changeset detected

Latest commit: 315de05

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 1 package
Name Type
@neo4j/cypher-builder Major

Not sure what this means? Click here to learn what changesets are.

Click here if you're a maintainer who wants to add another changeset to this PR

@angrykoala angrykoala closed this Aug 21, 2025
@angrykoala angrykoala reopened this Aug 21, 2025
Copy link

@angrykoala angrykoala mentioned this pull request Oct 14, 2025
12 tasks
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

Successfully merging this pull request may close these issues.

1 participant