The export interface IQueryPagesFilter is defining the structure of the filters that can be applied when querying clientside pages. It has a single property Title which is optional and of type string. This property is used to filter the pages based on their title. If a Title filter is provided, only the pages with matching titles will be returned in the query results. If no Title filter is provided, all pages will be returned.

interface IQueryPagesFilter {
    Title?: string;
}

Properties

Properties

Title?: string