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
Hello Is There Any Actual Way To Modify


Yes i see it, but where's the endpoint to modify a config? TaskScheduler doesn't have any getters or setters for that

Getting id of the TaskScheduler doesn't lead to anything, since you dont have a getter like TaskScheduler.get_task(), you only have Task.get_task(), but there's no way to do .add_step() or .remove_step() because Task doesn't have such methods

User config is no-op, the schedule appears to be contained in some json configuration object created under the hood. Maybe this could work: creating Task, instantiating some config via Task.connect(), instantiating TaskScheduler, tying behavior like create_step to that config and modifying said config in runtime by accessing it through Task.get_task. But i'd like to hear what the authors say.

  
  
Posted one year ago
91 Views
0 Answers
one year ago
one year ago