Changeset View
Changeset View
Standalone View
Standalone View
js_modules/dagit/src/partitions/PartitionRunListForStep.tsx
Show First 20 Lines • Show All 141 Lines • ▼ Show 20 Lines | |||||
`; | `; | ||||
const PARTITION_RUN_LIST_FOR_STEP_QUERY = gql` | const PARTITION_RUN_LIST_FOR_STEP_QUERY = gql` | ||||
query PartitionRunListForStepQuery($filter: PipelineRunsFilter!) { | query PartitionRunListForStepQuery($filter: PipelineRunsFilter!) { | ||||
pipelineRunsOrError(filter: $filter, limit: 500) { | pipelineRunsOrError(filter: $filter, limit: 500) { | ||||
... on PipelineRuns { | ... on PipelineRuns { | ||||
results { | results { | ||||
...RunTableRunFragment | ...RunTableRunFragment | ||||
id | |||||
runId | runId | ||||
} | } | ||||
} | } | ||||
... on InvalidPipelineRunsFilterError { | ... on InvalidPipelineRunsFilterError { | ||||
message | message | ||||
} | } | ||||
... on PythonError { | ... on PythonError { | ||||
...PythonErrorFragment | ...PythonErrorFragment | ||||
} | } | ||||
} | } | ||||
} | } | ||||
${RunTable.fragments.RunTableRunFragment} | ${RunTable.fragments.RunTableRunFragment} | ||||
${PythonErrorInfo.fragments.PythonErrorFragment} | ${PythonErrorInfo.fragments.PythonErrorFragment} | ||||
`; | `; |