Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Status
colourBlue
titleSINCE VERSION 1.0

Table of Contents

What is a Pipeline Util?

Inside a Pipeline Expression you can access a huge library of built-in PEL Utils (= Pipeline Expression Language Utils), which can additionally simplify your integration and automation tasks.

...

Code Block
languageyaml
pipeline:  
  - log:  
      message: "The current date is: #${@date.now()}"  

Output:

Code Block
The current date is: 24.07.2023, 16:11:33

Examples for @list

Code Block
languageyaml
vars:
  cities: "Munich, Bratislava, New York"
pipeline:
  - log: 
      message: "#${@list.size(vars.cities)}"

Output:

Code Block
3

Examples for @text

Code Block
languageyaml
pipeline:
  - log: 
      message: "#${@text.lang('Hallo, Herr Meier!')}"

Output:

Code Block
GERMAN

Auto-completion

...