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, What Is The Correct Way To Get All The Failed And Aborted Experiments?

Hi, what is the correct way to get all the failed and aborted experiments?

client = APIClient() tasks = client.tasks.get_all( system_tags=["failed", "aborted"], only_fields=["id"], order_by=["-last_update"], page_size=page_size, page=page, status_changed=["<{}".format(datetime.utcfromtimestamp(timestamp))], )Are "failed" and "aborted" valid system tags? I do not get any tasks by this query, while I expect some

  
  
Posted 2 years ago
Votes Newest

Answers 2


instead of system_tags use:

  
  
Posted 2 years ago

stopped is the client's name for aborted

  
  
Posted 2 years ago