28 lines
396 B
GraphQL
28 lines
396 B
GraphQL
query($id: Int!) {
|
|
pages {
|
|
single(id:$id) {
|
|
id
|
|
path
|
|
hash
|
|
title
|
|
description
|
|
isPrivate
|
|
isPublished
|
|
privateNS
|
|
publishStartDate
|
|
publishEndDate
|
|
contentType
|
|
createdAt
|
|
updatedAt
|
|
editor
|
|
locale
|
|
authorId
|
|
authorName
|
|
authorEmail
|
|
creatorId
|
|
creatorName
|
|
creatorEmail
|
|
}
|
|
}
|
|
}
|