Search Results for

    Show / Hide Table of Contents

    QueryDefinition

    Defines a WebApi Query for records. See official documentation for additional detail on how these properties are used.

    See official documentation for details on how these are used.

    • filter
    • orderby

    See ExpandDefinition

        export interface QueryDefinition {
            /** Either comma separated list of columns to query out OR array of columns to query out. */
            select: string | string[];
            /** One or more odata filters to apply. Multiple filters will be ANDed together. */
            filter?: string | string[];
            /** Either comma separated list of columns to order by OR array of columns to order by. */
            orderby?: string | string[];
            /** Number of records to return */
            top?: number;
            /** Whether to return the total record count. */
            count?: boolean;
            /** Definition of related entities to expand. */
            expand?: ExpandDefinition;
        }
    
    In This Article
    Back to top Hitachi Solutions JS Library