dc-delivery-sdk-js
    Preparing search index...

    Interface ContentClientHierarchyRequest

    wrapping object for the content client request

    rootId the deliveryId of the root item

    rootItem (optional) to pass the root item if it has already been fetched

    maximumDepth (optional) specifies the maximum depth of the hierarchy query

    maximumPageSize (optional) specifies the maximum page size for each page of the hierarchy,

    sortOrder (optional) specifies the sort the service should use when retrieving content from the database

    sortKey (optional) specifies the name of the sort parameter used to retrieve content, this can effect what content is returned note: maximumDepth and maximumPageSize will not override the limits set by the delivery service.

    interface ContentClientHierarchyRequest {
        maximumDepth?: number;
        maximumPageSize?: number;
        rootItem?: ContentItem;
        sortKey?: string;
        sortOrder?: IOrder;
    }

    Hierarchy (View Summary)

    Index

    Properties

    maximumDepth?: number
    maximumPageSize?: number
    rootItem?: ContentItem
    sortKey?: string
    sortOrder?: IOrder