fix build
Build and Deploy / build-and-deploy (push) Successful in 12m48s

This commit is contained in:
2026-05-04 20:11:43 +02:00
parent 982178bff7
commit 4787f2d98b
12 changed files with 471 additions and 563 deletions
+55
View File
@@ -1,3 +1,58 @@
query user($relativePath: String!) {
user(relativePath: $relativePath) {
... on Document {
_sys {
filename
basename
hasReferences
breadcrumbs
path
relativePath
extension
}
id
}
...UserParts
}
}
query userConnection($before: String, $after: String, $first: Float, $last: Float, $sort: String, $filter: UserFilter) {
userConnection(
before: $before
after: $after
first: $first
last: $last
sort: $sort
filter: $filter
) {
pageInfo {
hasPreviousPage
hasNextPage
startCursor
endCursor
}
totalCount
edges {
cursor
node {
... on Document {
_sys {
filename
basename
hasReferences
breadcrumbs
path
relativePath
extension
}
id
}
...UserParts
}
}
}
}
query post($relativePath: String!) {
post(relativePath: $relativePath) {
... on Document {