File tree Expand file tree Collapse file tree 3 files changed +10
-0
lines changed
Expand file tree Collapse file tree 3 files changed +10
-0
lines changed Original file line number Diff line number Diff line change 2222from objectbox .c import NotFoundException , version_core , DebugFlags
2323from objectbox .version import Version
2424from objectbox .condition import PropertyQueryCondition
25+ from objectbox .query import Query
26+ from objectbox .query_builder import QueryBuilder
2527from objectbox .builder import Builder
2628from objectbox .objectbox import ObjectBox
2729
7072 'DebugFlags' ,
7173 'PropertyQueryCondition' ,
7274 'HnswFlags' ,
75+ 'Query' ,
76+ 'QueryBuilder'
7377]
7478
7579# Python binding version
Original file line number Diff line number Diff line change 1616
1717
1818class Query :
19+ """
20+ Query expression
21+ """
1922 def __init__ (self , c_query , box : 'Box' ):
2023 self ._c_query = c_query
2124 self ._box = box
Original file line number Diff line number Diff line change 1010
1111
1212class QueryBuilder :
13+ """
14+ Query builder
15+ """
1316 def __init__ (self , store : Store , box : 'Box' ):
1417 self ._box = box
1518 self ._entity = box ._entity
You can’t perform that action at this time.
0 commit comments