mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2025-06-05 07:02:13 +01:00
* fetch subs and accounts via graph * fixed subscription rendering * add feature flag enableResourceGraph * add feature flag enableResourceGraph --------- Co-authored-by: Asier Isayas <aisayas@microsoft.com>
14 lines
248 B
TypeScript
14 lines
248 B
TypeScript
export interface QueryRequestOptions {
|
|
$skipToken?: string;
|
|
$top?: number;
|
|
subscriptions: string[];
|
|
}
|
|
|
|
export interface QueryResponse {
|
|
$skipToken: string;
|
|
count: number;
|
|
data: any;
|
|
resultTruncated: boolean;
|
|
totalRecords: number;
|
|
}
|