Examples: query, "exact match", wildcard*, wild?ard, wild*rd
Fuzzy search: cake~ (finds cakes, bake)
Term boost: "red velvet"^4, chocolate^2
Field grouping: tags:(+work -"fun-stuff")
Escaping: Escape characters +-&|!(){}[]^"~*?:\ with \, e.g. \+
Range search: properties.timestamp:[1587729413488 TO *] (inclusive), properties.title:{A TO Z}(excluding A and Z)
Combinations: chocolate AND vanilla, chocolate OR vanilla, (chocolate OR vanilla) NOT "vanilla pudding"
Field search: properties.title:"The Title" AND text
Answered
Hi All

Hi all 🙂

I have a pipeline.

How to add a step, that can execute finally , i.e irrespective of other step failure/pass, I want a step to execute.
(eg. clean up step)

  
  
Posted one year ago
Votes Newest

Answers 2


Hi @<1523701523954012160:profile|ShallowCormorant89> ! This is not really supported, but you could use continue_on_fail to make sure you get to your last step: None

  
  
Posted one year ago

thank you!!
continue on fail, actually makes the following step to be skipped.

  
  
Posted one year ago
583 Views
2 Answers
one year ago
one year ago
Tags