ga4gh / task-execution-schemas

Apache License 2.0
80 stars 28 forks source link

Consider filtering options for the ListTasks endpoint #57

Closed buchanae closed 1 year ago

buchanae commented 7 years ago

Currently the ListTasksRequest contains a couple fields for filtering

message ListTasksRequest {

  // OPTIONAL
  //
  // Filter the task list to include tasks in this project.
  string project = 1;

  // OPTIONAL
  //
  // Filter the list to include tasks where the name matches this prefix.
  // If unspecified, no task name filtering is done.
string name_prefix = 2;

...

There have been suggestions for changing this:

buchanae commented 6 years ago

92 is where most of the work is happening

adamstruck commented 4 years ago

The current proposal is reflected in #104. This approach would require a switch to OpenApi 3.0

vsmalladi commented 1 year ago

@kellrott has this been addressed by #170