Changeset View
Changeset View
Standalone View
Standalone View
js_modules/dagit/src/runs/RunActionsMenu.tsx
Show First 20 Lines • Show All 215 Lines • ▼ Show 20 Lines | ) { | ||||
} | } | ||||
} | } | ||||
// Avoid fetching envYaml on load in Runs page. It is slow. | // Avoid fetching envYaml on load in Runs page. It is slow. | ||||
const PipelineEnvironmentYamlQuery = gql` | const PipelineEnvironmentYamlQuery = gql` | ||||
query PipelineEnvironmentYamlQuery($runId: ID!) { | query PipelineEnvironmentYamlQuery($runId: ID!) { | ||||
pipelineRunOrError(runId: $runId) { | pipelineRunOrError(runId: $runId) { | ||||
... on PipelineRun { | ... on PipelineRun { | ||||
id | |||||
runConfigYaml | runConfigYaml | ||||
} | } | ||||
} | } | ||||
} | } | ||||
`; | `; |