Skip to main content
Version: 2024.3

Static Text

Adds the configured static text to the query.

Configuration

static_text_config.pngstatic_text_config.pngstatic_text_config.png

  • Text: The text to add to the query.

Example

static_text_example.pngstatic_text_example.pngstatic_text_example.png

Request:

{
getCar(id: 82) {
id,
StaticTextForQuery
}
}

Result:

{
"data": {
"getCar": {
"id": "81",
"StaticTextForQuery": "StaticTextForQuery"
}
}
}