mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
get all the items updated since the last sync including archived items
This commit is contained in:
parent
736a472a86
commit
eafdd41ee1
1 changed files with 2 additions and 1 deletions
|
|
@ -47,7 +47,8 @@ export const search = async (
|
|||
first = 50,
|
||||
after = '0'
|
||||
): Promise<SearchResponse | null> => {
|
||||
const query = `updated:${updatedSince.toISOString()} ${
|
||||
// get all the items updated since the last sync including archived items
|
||||
const query = `in:all updated:${updatedSince.toISOString()} ${
|
||||
highlightOnly ? 'has:highlights' : ''
|
||||
} sort:updated-asc`
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue