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.
The
export interface IQueryPagesFilter
is defining the structure of the filters that can be applied when querying clientside pages. It has a single propertyTitle
which is optional and of typestring
. This property is used to filter the pages based on their title. If aTitle
filter is provided, only the pages with matching titles will be returned in the query results. If noTitle
filter is provided, all pages will be returned.