Skip to content

Commit 368ceb1

Browse files
committed
feat: include condition on
Signed-off-by: Otavio Santana <[email protected]>
1 parent b6da230 commit 368ceb1

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

jnosql-neo4j/src/main/java/org/eclipse/jnosql/databases/neo4j/communication/Neo4JQueryBuilder.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,9 @@ private String getConditionOperator(Condition condition) {
157157
case IN -> "IN";
158158
case AND -> "AND";
159159
case OR -> "OR";
160+
case STARTS_WITH -> "STARTS WITH";
161+
case ENDS_WITH -> "ENDS WITH";
162+
case CONTAINS -> "CONTAINS";
160163
default -> throw new CommunicationException("Unsupported operator: " + condition);
161164
};
162165
}

0 commit comments

Comments
 (0)