mirror of https://github.com/requarks/wiki
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
467 B
28 lines
467 B
1 year ago
|
query blockIndexFetchPages (
|
||
|
$siteId: UUID!
|
||
|
$locale: String
|
||
|
$parentPath: String
|
||
|
$tags: [String]
|
||
|
$limit: Int
|
||
|
$orderBy: TreeOrderBy
|
||
|
$orderByDirection: OrderByDirection
|
||
|
$depth: Int
|
||
|
) {
|
||
|
tree(
|
||
|
siteId: $siteId
|
||
|
locale: $locale
|
||
|
parentPath: $parentPath
|
||
|
tags: $tags
|
||
|
limit: $limit
|
||
|
types: [page]
|
||
|
orderBy: $orderBy
|
||
|
orderByDirection: $orderByDirection
|
||
|
depth: $depth
|
||
|
) {
|
||
|
id
|
||
|
folderPath
|
||
|
fileName
|
||
|
title
|
||
|
}
|
||
|
}
|