-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -214,7 +214,7 @@ async def get_by_group_ids( | |
limit: int = DEFAULT_PAGE_LIMIT, | ||
created_at: datetime = None, | ||
Check failure on line 215 in graphiti_core/nodes.py GitHub Actions / mypyassignment
Check notice on line 215 in graphiti_core/nodes.py GitHub Actions / mypyNote
Check notice on line 215 in graphiti_core/nodes.py GitHub Actions / mypyNote
|
||
): | ||
cursor_query: LiteralString = 'AND e.uuid < $created_at' if created_at else '' | ||
cursor_query: LiteralString = 'AND e.created_at < $created_at' if created_at else '' | ||
|
||
records, _, _ = await driver.execute_query( | ||
""" | ||
|
@@ -330,7 +330,7 @@ async def get_by_group_ids( | |
limit: int = DEFAULT_PAGE_LIMIT, | ||
created_at: datetime = None, | ||
Check failure on line 331 in graphiti_core/nodes.py GitHub Actions / mypyassignment
Check notice on line 331 in graphiti_core/nodes.py GitHub Actions / mypyNote
Check notice on line 331 in graphiti_core/nodes.py GitHub Actions / mypyNote
|
||
): | ||
cursor_query: LiteralString = 'AND e.uuid < $created_at' if created_at else '' | ||
cursor_query: LiteralString = 'AND n.created_at < $created_at' if created_at else '' | ||
|
||
records, _, _ = await driver.execute_query( | ||
""" | ||
|
@@ -444,7 +444,7 @@ async def get_by_group_ids( | |
limit: int = DEFAULT_PAGE_LIMIT, | ||
created_at: datetime = None, | ||
Check failure on line 445 in graphiti_core/nodes.py GitHub Actions / mypyassignment
Check notice on line 445 in graphiti_core/nodes.py GitHub Actions / mypyNote
Check notice on line 445 in graphiti_core/nodes.py GitHub Actions / mypyNote
|
||
): | ||
cursor_query: LiteralString = 'AND e.uuid < $created_at' if created_at else '' | ||
cursor_query: LiteralString = 'AND n.created_at < $created_at' if created_at else '' | ||
|
||
records, _, _ = await driver.execute_query( | ||
""" | ||
|