mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2025-03-13 05:15:30 +00:00
* add partial scopes flag * add partial scopes flag * add partial scopes flag --------- Co-authored-by: Asier Isayas <aisayas@microsoft.com>
15 lines
281 B
TypeScript
15 lines
281 B
TypeScript
export interface QueryRequestOptions {
|
|
$skipToken?: string;
|
|
$top?: number;
|
|
$allowPartialScopes: boolean;
|
|
subscriptions?: string[];
|
|
}
|
|
|
|
export interface QueryResponse {
|
|
$skipToken: string;
|
|
count: number;
|
|
data: any;
|
|
resultTruncated: boolean;
|
|
totalRecords: number;
|
|
}
|