Changeset View
Changeset View
Standalone View
Standalone View
js_modules/dagit/src/partitions/PartitionRunMatrix.tsx
Show First 20 Lines • Show All 359 Lines • ▼ Show 20 Lines | const Divider = styled.div` | ||||
height: 1px; | height: 1px; | ||||
width: 100%; | width: 100%; | ||||
margin-top: 5px; | margin-top: 5px; | ||||
border-top: 1px solid ${Colors.GRAY5}; | border-top: 1px solid ${Colors.GRAY5}; | ||||
`; | `; | ||||
export const PARTITION_RUN_MATRIX_RUN_FRAGMENT = gql` | export const PARTITION_RUN_MATRIX_RUN_FRAGMENT = gql` | ||||
fragment PartitionRunMatrixRunFragment on PipelineRun { | fragment PartitionRunMatrixRunFragment on PipelineRun { | ||||
id | |||||
runId | runId | ||||
tags { | tags { | ||||
key | key | ||||
value | value | ||||
} | } | ||||
stats { | stats { | ||||
__typename | __typename | ||||
... on PipelineRunStatsSnapshot { | ... on PipelineRunStatsSnapshot { | ||||
Show All 13 Lines | fragment PartitionRunMatrixRunFragment on PipelineRun { | ||||
} | } | ||||
} | } | ||||
`; | `; | ||||
export const PARTITION_RUN_MATRIX_PIPELINE_QUERY = gql` | export const PARTITION_RUN_MATRIX_PIPELINE_QUERY = gql` | ||||
query PartitionRunMatrixPipelineQuery($pipelineSelector: PipelineSelector) { | query PartitionRunMatrixPipelineQuery($pipelineSelector: PipelineSelector) { | ||||
pipelineSnapshotOrError(activePipelineSelector: $pipelineSelector) { | pipelineSnapshotOrError(activePipelineSelector: $pipelineSelector) { | ||||
... on PipelineSnapshot { | ... on PipelineSnapshot { | ||||
id | |||||
name | name | ||||
solidHandles { | solidHandles { | ||||
handleID | handleID | ||||
solid { | solid { | ||||
name | name | ||||
definition { | definition { | ||||
name | name | ||||
} | } | ||||
Show All 20 Lines |