Skip to main content
Version: 2023.3

Document Queries

Supported Document Types

  • Email
  • Hardlink
  • Link
  • Page
  • Snippet

Supported Page Element Types

  • Areablock
  • Checkbox
  • Date
  • Embed
  • Image
  • Input
  • Link
  • Multiselect
  • Numeric
  • Pdf
  • Relation
  • Relations
  • Scheduled Block
  • Select
  • Table
  • Textarea
  • Video
  • Wysiwyg
  • ...

Document Query Samples

Fetch Document Page and Get Date Editable

{
getDocument(id: 25) {
... on document_page {
fullpath
editables {
...on document_editableDate {
_editableName
# unix timestamp
timestamp
# as formatted string
formatted(format:"Y-m-d")
}
}
}
}
}

Fetch Document Page and Get All Editables, Including the Inherited Editables

{
getDocument(id: 207) {
... on document_page {
id,
editables(getInheritedValues: true ){
__typename
}
}
}
}

Fetch Document Page via Data Object Relation and Get More Editable Data

  • get data object ID 61
  • get many-to-one relation
  • get target page document
  • get link editable
  • get referenced page document / or news object
  • get input editables of referenced page document / or shorttext of news object
{
getTest3(id: 61) {
manytoone {
... on document_page {
fullpath
editables {
... on document_editableLink {
_editableType
_editableName
data {
internal
path
target {
__typename
... on document_page {
id
fullpath
editables {
... on document_editableInput {
name
text
}
}
}
... on object_news {
shortText
}
}
}
}
}
}
}
}
}

Get Link Document and resolve the target news text.

{
getDocument(id: 76) {
... on document_link {
fullpath
object {
...on object_news {
shortText
}
}
}
}
}

Fetch Document Properties

see Element Properties

{
getDocument(id: 76) {
... on document_page {
id
translations {
id
language
target {
... on document_headlessdocument {
fullpath
}
}
}
}
}
}

{
getDocument(id: 76) {
... on document_page {
id
translations(defaultLanguage: "de") {
...
}
}
}
}