Skip to main content
Version: Next

Trimmer

Trims the value.

Configuration

trim_config.pngtrim_config.pngtrim_config.png

  • Label: Name for the field to use in the query.
  • Trim: Where to trim, either both, left, right or disabled.

Example

trim_example.pngtrim_example.pngtrim_example.png

Request:

{
getCar(id: 82) {
id,
name,
TrimmedName
}
}

Response:

{
"data": {
"getCar": {
"id": "82",
"name": " Cobra 427 ",
"TrimmedName": " Cobra 427"
}
}
}