Changeset View
Changeset View
Standalone View
Standalone View
js_modules/dagit/src/runs/RunsRoot.tsx
Show First 20 Lines • Show All 94 Lines • ▼ Show 20 Lines | export const RunsRoot: React.FunctionComponent<RouteComponentProps> = () => { | ||||
); | ); | ||||
}; | }; | ||||
export const RUNS_ROOT_QUERY = gql` | export const RUNS_ROOT_QUERY = gql` | ||||
query RunsRootQuery($limit: Int, $cursor: String, $filter: PipelineRunsFilter!) { | query RunsRootQuery($limit: Int, $cursor: String, $filter: PipelineRunsFilter!) { | ||||
pipelineRunsOrError(limit: $limit, cursor: $cursor, filter: $filter) { | pipelineRunsOrError(limit: $limit, cursor: $cursor, filter: $filter) { | ||||
... on PipelineRuns { | ... on PipelineRuns { | ||||
results { | results { | ||||
id | |||||
...RunTableRunFragment | ...RunTableRunFragment | ||||
} | } | ||||
} | } | ||||
... on InvalidPipelineRunsFilterError { | ... on InvalidPipelineRunsFilterError { | ||||
message | message | ||||
} | } | ||||
... on PythonError { | ... on PythonError { | ||||
message | message | ||||
Show All 13 Lines |