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
Unanswered
Is There Any Known Issue In Pipeline Decorator Where Lambda Function Call Another Function(Say


Hi @<1523701205467926528:profile|AgitatedDove14>
first of all many thanks to you for always replying promptly 🙂

Initially I thought function is defined outside that is why I was getting that error. However I am using this way and that also gives error:

@PipelineDecorator.component(return_values=["op"])
def step1():
op = "I am in step-1"
return op

@PipelineDecorator.component(return_values=["op"])
def step2(op):
return ( lambda op:step1(op))

While executing step2, I get error that step1 is not defined.

Hope this example is helpful.

  
  
Posted 2 months ago
30 Views
0 Answers
2 months ago
2 months ago