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
Quick Question: How Can I Clone A Task And Change The Cloned Task Type? I See No Task.Set_Type() Function

Quick question: How can I clone a task and change the cloned task type? I see no Task.set_type() function

  
  
Posted 3 years ago
Votes Newest

Answers 5


yes

  
  
Posted 3 years ago

I came up with the same code, thanks for the fast answer (yes having a setter for that would be cool!)

  
  
Posted 3 years ago

JitteryCoyote63 you mean from code?

  
  
Posted 3 years ago

t = Task.get_task('aabbcc') t.update_task(task_data={'task_type': "optimizer"})

  
  
Posted 3 years ago

We should probably add (set_task_type :))

  
  
Posted 3 years ago