How to use the @hpcc-js/util.deepMixinT function in @hpcc-js/util

To help you get started, we’ve selected a few @hpcc-js/util examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github hpcc-systems / Visualization / packages / comms / src / ecl / workunit.ts View on Github external
protected WUResubmit(request: Partial): Promise {
        return this.connection.WUResubmit(deepMixinT({}, request, {
            Wuids: [this.Wuid]
        }));
    }
github hpcc-systems / Visualization / packages / comms / src / ecl / workunit.ts View on Github external
protected WUDetails(request: Partial): Promise {
        return this.connection.WUDetails(deepMixinT({
            ScopeFilter: {
                MaxDepth: 9999
            },
            ScopeOptions: {
                IncludeMatchedScopesInResults: true,
                IncludeScope: true,
                IncludeId: false,
                IncludeScopeType: false
            },
            PropertyOptions: {
                IncludeName: true,
                IncludeRawValue: false,
                IncludeFormatted: true,
                IncludeMeasure: true,
                IncludeCreator: false,
                IncludeCreatorType: false