Skip to content

Commit

Permalink
Feature/graphql nextjs sitemap update - fix sitemap query (#1007)
Browse files Browse the repository at this point in the history
  • Loading branch information
art-alexeyenko authored May 6, 2022
1 parent 709df7f commit 03cd844
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ const defaultQuery = /* GraphQL */ `
query SitemapQuery(
$siteName: String!,
$language: String!,
$includedPaths: String[],
$excludedPaths: String[],
$includedPaths: [String],
$excludedPaths: [String],
$pageSize: Int = 10,
$after: String
) {
Expand All @@ -29,8 +29,8 @@ query SitemapQuery(
endCursor
hasNext
}
results: routesResult{
path: routePath
results{
path: routePath
}
}
}
Expand Down

0 comments on commit 03cd844

Please sign in to comment.