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
What

What is the best way to retrieve the name of a pipeline within one of the tasks it runs? I know I can retrieve the parent task and get its name but that will include the run number like my pipeline #1 . I can write a regex to remove the run number but is there a cleaner way?

  
  
Posted one year ago
Votes Newest

Answers


Hi HugeLion86 , I think that's the way

  
  
Posted one year ago