Changeset View
Changeset View
Standalone View
Standalone View
js_modules/dagit/src/PipelineRunsRoot.tsx
Show First 20 Lines • Show All 123 Lines • ▼ Show 20 Lines | const Filters = styled.div` | ||||
margin-bottom: 14px; | margin-bottom: 14px; | ||||
`; | `; | ||||
export const PIPELINE_RUNS_ROOT_QUERY = gql` | export const PIPELINE_RUNS_ROOT_QUERY = gql` | ||||
query PipelineRunsRootQuery($limit: Int, $cursor: String, $filter: PipelineRunsFilter!) { | query PipelineRunsRootQuery($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 | ||||
} | } | ||||
} | } | ||||
} | } | ||||
${RunTable.fragments.RunTableRunFragment} | ${RunTable.fragments.RunTableRunFragment} | ||||
`; | `; |