@labkey/api
    Preparing search index...

    Interface ValidateQueryOptions

    interface ValidateQueryOptions {
        containerPath?: string;
        failure?: RequestFailure<any>;
        scope?: any;
        success?: RequestSuccess<{ valid: boolean }>;
        validateQueryMetadata?: boolean;
    }

    Hierarchy (View Summary)

    Index

    Properties

    containerPath?: string

    A container path in which to execute this command. If not supplied, the current container will be used.

    failure?: RequestFailure<any>

    This will be called upon failure to complete a request.

    scope?: any

    A scoping object for the success and failure callback functions (default to this).

    success?: RequestSuccess<{ valid: boolean }>

    This will be called upon successfully completing a request.

    validateQueryMetadata?: boolean

    If true, the query metadata and custom views will also be validated.