Skip to content

New exists operator for filtering operations.#931

Merged
mariusconjeaud merged 3 commits intorc/6.1.0from
feature/new-exists-operator-in-filter
Jan 30, 2026
Merged

New exists operator for filtering operations.#931
mariusconjeaud merged 3 commits intorc/6.1.0from
feature/new-exists-operator-in-filter

Conversation

@tonioo
Copy link
Collaborator

@tonioo tonioo commented Jan 15, 2026

Using __exists operator on a path will be transformed into a WHERE EXISTS {} cypher statement.

Example:

PersonX.nodes.filter(city__exists=True)

will be transformed into this;

MATCH (personx:PersonX) WHERE EXISTS { (personx)-[:`LIVES_IN`]->(:CityX) } RETURN personx

Using __exists operator on a path will be transformed into a WHERE
EXISTS {} cypher statement.
@codecov
Copy link

codecov bot commented Jan 15, 2026

Codecov Report

❌ Patch coverage is 98.55072% with 2 lines in your changes missing coverage. Please review.
⚠️ Please upload report for BASE (rc/6.1.0@7139fc2). Learn more about missing BASE report.

Files with missing lines Patch % Lines
neomodel/async_/match.py 98.55% 1 Missing ⚠️
neomodel/sync_/match.py 98.55% 1 Missing ⚠️
Additional details and impacted files
@@             Coverage Diff             @@
##             rc/6.1.0     #931   +/-   ##
===========================================
  Coverage            ?   87.60%           
===========================================
  Files               ?       41           
  Lines               ?     6545           
  Branches            ?        0           
===========================================
  Hits                ?     5734           
  Misses              ?      811           
  Partials            ?        0           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

@mariusconjeaud mariusconjeaud changed the base branch from master to rc/6.1.0 January 15, 2026 15:08
@sonarqubecloud
Copy link

@mariusconjeaud mariusconjeaud merged commit 871334d into rc/6.1.0 Jan 30, 2026
29 checks passed
@mariusconjeaud mariusconjeaud deleted the feature/new-exists-operator-in-filter branch January 30, 2026 09:35
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.

2 participants