diff --git a/packages/comms/src/ecl/graph.ts b/packages/comms/src/ecl/graph.ts index 381942f088..2b196ea315 100644 --- a/packages/comms/src/ecl/graph.ts +++ b/packages/comms/src/ecl/graph.ts @@ -48,9 +48,11 @@ export class ECLGraph extends StateObject implements ECL ScopeTypes: ["graph", "subgraph", "activity", "edge"] }, PropertiesToReturn: { - AllProperties: true, AllStatistics: true, - AllHints: true + AllAttributes: true, + AllHints: true, + AllProperties: true, + AllScopes: true }, ScopeOptions: { IncludeId: true, diff --git a/packages/comms/src/services/wsWorkunits.ts b/packages/comms/src/services/wsWorkunits.ts index a52368755f..7b8d20bce7 100644 --- a/packages/comms/src/services/wsWorkunits.ts +++ b/packages/comms/src/services/wsWorkunits.ts @@ -2250,6 +2250,10 @@ export namespace WUDetails { id: string[]; } + export interface ScopeTypes { + ScopeType: string[]; + } + export interface PropertyFilter { Name?: string; ExactValue?: string; @@ -2297,8 +2301,10 @@ export namespace WUDetails { export interface PropertiesToReturn { AllStatistics?: boolean; - AllProperties?: boolean; + AllAttributes?: boolean; AllHints?: boolean; + AllScopes?: boolean; + AllProperties?: boolean; MinVersion?: string; Measure?: string; Properties?: string[];