mirror of
https://github.com/standardnotes/server
synced 2026-07-14 00:01:54 -04:00
17 lines
387 B
TypeScript
17 lines
387 B
TypeScript
export type ItemQuery = {
|
|
userUuid?: string
|
|
sortBy?: string
|
|
sortOrder?: 'ASC' | 'DESC'
|
|
uuids?: Array<string>
|
|
lastSyncTime?: number
|
|
syncTimeComparison?: '>' | '>='
|
|
contentType?: string | string[]
|
|
includeGroupUuids?: string[]
|
|
exclusiveGroupUuids?: string[] | null
|
|
deleted?: boolean
|
|
offset?: number
|
|
limit?: number
|
|
createdBetween?: Date[]
|
|
selectString?: string
|
|
}
|