Skip to main content
Version: Next

Concatenator

Concatenates the values of the selected fields.

Configuration

concat_config.pngconcat_config.pngconcat_config.png

  • Label: Name for the field to use in the query.
  • Glue: The string that will be used to concatenate the values.

Example

concat_example.pngconcat_example.pngconcat_example.png

Request:

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

Response:

{
"data": {
"getCar": {
"id": "82",
"ConcatYearCountry": "1966-GB"
}
}
}