You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/** @description Maximum number of nodes. Applied at history scope. */
39237
+
limit?: number;
39238
+
/** @description Include deleted datasets and collections. */
39239
+
include_deleted?: boolean;
39240
+
/** @description Optional: focus on subgraph reachable from this node (e.g. d<encoded_id>). */
39241
+
seed?: string | null;
39242
+
/** @description Direction for seed-based subgraph extraction. */
39243
+
direction?: "backward" | "forward" | "both";
39244
+
/** @description Max depth for seed-based subgraph extraction. */
39245
+
depth?: number;
39246
+
/** @description Center the selection window on this item. Format: d{encoded_id} or c{encoded_id}. */
39247
+
seed_scope?: string | null;
39248
+
};
39249
+
header?: {
39250
+
/** @description The user ID that will be used to effectively make this API call. Only admins and designated users can make API calls on behalf of other users. */
39251
+
"run-as"?: string | null;
39252
+
};
39253
+
path: {
39254
+
/** @description The encoded database identifier of the History. */
0 commit comments