MCPcopy Create free account
hub / github.com/GraphLite-AI/GraphLite / where_clause

Method where_clause

sdk-python/src/graphlite_sdk/query.py:49–55  ·  view source on GitHub ↗

Add a WHERE clause to the query Can be called multiple times - conditions are AND'ed together.

(self, condition: str)

Source from the content-addressed store, hash-verified

47 return self
48
49 def where_clause(self, condition: str) -> 'QueryBuilder':
50 '''
51 Add a WHERE clause to the query
52 Can be called multiple times - conditions are AND'ed together.
53 '''
54 self._where_clauses.append(condition)
55 return self
56
57 def with_clause(self, clause: str) -> 'QueryBuilder':
58 '''

Callers 2

mainFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected