pages Query
List of the shop's pages.
pages(
sortBy: PageSortingInput
filter: PageFilterInput
search: String
where: PageWhereInput
channel: String
before: String
after: String
first: Int
last: Int
): PageCountableConnection
Show return type
Arguments
sortBy ● PageSortingInput
Sort pages.
search ● String
Search pages. Overrides filter.search input.
Added in Saleor 3.22where ● PageWhereInput
Where filtering options for pages.
Added in Saleor 3.22channel ● String
Slug of a channel for which the data should be returned.
Added in Saleor 3.22before ● String
Return the elements in the list that come before the specified cursor.
after ● String
Return the elements in the list that come after the specified cursor.
first ● Int
Retrieve the first n elements from the list. Note that the system only allows fetching a maximum of 100 objects in a single query.
last ● Int
Retrieve the last n elements from the list. Note that the system only allows fetching a maximum of 100 objects in a single query.