Changeset View
Changeset View
Standalone View
Standalone View
js_modules/dagit/packages/core/src/graphql/schema.graphql
Show First 20 Lines • Show All 1,390 Lines • ▼ Show 20 Lines | type Mutation { | ||||
startSchedule(scheduleSelector: ScheduleSelector!): ScheduleMutationResult! | startSchedule(scheduleSelector: ScheduleSelector!): ScheduleMutationResult! | ||||
stopRunningSchedule(scheduleOriginId: String!): ScheduleMutationResult! | stopRunningSchedule(scheduleOriginId: String!): ScheduleMutationResult! | ||||
startSensor(sensorSelector: SensorSelector!): SensorOrError! | startSensor(sensorSelector: SensorSelector!): SensorOrError! | ||||
stopSensor(jobOriginId: String!): StopSensorMutationResultOrError! | stopSensor(jobOriginId: String!): StopSensorMutationResultOrError! | ||||
terminatePipelineExecution(runId: String!, terminatePolicy: TerminatePipelinePolicy): TerminatePipelineExecutionResult! | terminatePipelineExecution(runId: String!, terminatePolicy: TerminatePipelinePolicy): TerminatePipelineExecutionResult! | ||||
deletePipelineRun(runId: String!): DeletePipelineRunResult! | deletePipelineRun(runId: String!): DeletePipelineRunResult! | ||||
reloadRepositoryLocation(repositoryLocationName: String!): ReloadRepositoryLocationMutationResult! | reloadRepositoryLocation(repositoryLocationName: String!): ReloadRepositoryLocationMutationResult! | ||||
reloadWorkspace: ReloadWorkspaceMutationResult! | reloadWorkspace: ReloadWorkspaceMutationResult! | ||||
shutdownRepositoryLocation(repositoryLocationName: String!): ShutdownRepositoryLocationMutationResult! | |||||
wipeAssets(assetKeys: [AssetKeyInput!]!): AssetWipeMutationResult! | wipeAssets(assetKeys: [AssetKeyInput!]!): AssetWipeMutationResult! | ||||
launchPartitionBackfill(backfillParams: LaunchBackfillParams!): LaunchBackfillResult! | launchPartitionBackfill(backfillParams: LaunchBackfillParams!): LaunchBackfillResult! | ||||
resumePartitionBackfill(backfillId: String!): ResumeBackfillResult! | resumePartitionBackfill(backfillId: String!): ResumeBackfillResult! | ||||
cancelPartitionBackfill(backfillId: String!): CancelBackfillResult! | cancelPartitionBackfill(backfillId: String!): CancelBackfillResult! | ||||
} | } | ||||
union LaunchPipelineExecutionResult = LaunchPipelineRunSuccess | InvalidStepError | InvalidOutputError | PipelineConfigValidationInvalid | PipelineNotFoundError | PipelineRunConflict | ReadOnlyError | PythonError | PresetNotFoundError | ConflictingExecutionParamsError | union LaunchPipelineExecutionResult = LaunchPipelineRunSuccess | InvalidStepError | InvalidOutputError | PipelineConfigValidationInvalid | PipelineNotFoundError | PipelineRunConflict | ReadOnlyError | PythonError | PresetNotFoundError | ConflictingExecutionParamsError | ||||
▲ Show 20 Lines • Show All 88 Lines • ▼ Show 20 Lines | |||||
} | } | ||||
type RepositoryLocationNotFound implements Error { | type RepositoryLocationNotFound implements Error { | ||||
message: String! | message: String! | ||||
} | } | ||||
union ReloadWorkspaceMutationResult = Workspace | ReadOnlyError | PythonError | union ReloadWorkspaceMutationResult = Workspace | ReadOnlyError | PythonError | ||||
union ShutdownRepositoryLocationMutationResult = ShutdownRepositoryLocationSuccess | RepositoryLocationNotFound | ReadOnlyError | PythonError | |||||
type ShutdownRepositoryLocationSuccess { | |||||
repositoryLocationName: String! | |||||
} | |||||
union AssetWipeMutationResult = AssetNotFoundError | ReadOnlyError | PythonError | AssetWipeSuccess | union AssetWipeMutationResult = AssetNotFoundError | ReadOnlyError | PythonError | AssetWipeSuccess | ||||
type AssetWipeSuccess { | type AssetWipeSuccess { | ||||
assetKeys: [AssetKey!]! | assetKeys: [AssetKey!]! | ||||
} | } | ||||
union LaunchBackfillResult = LaunchBackfillSuccess | PartitionSetNotFoundError | InvalidStepError | InvalidOutputError | PipelineConfigValidationInvalid | PipelineNotFoundError | PipelineRunConflict | ReadOnlyError | PythonError | PresetNotFoundError | ConflictingExecutionParamsError | union LaunchBackfillResult = LaunchBackfillSuccess | PartitionSetNotFoundError | InvalidStepError | InvalidOutputError | PipelineConfigValidationInvalid | PipelineNotFoundError | PipelineRunConflict | ReadOnlyError | PythonError | PresetNotFoundError | ConflictingExecutionParamsError | ||||
▲ Show 20 Lines • Show All 213 Lines • ▼ Show 20 Lines | |||||
type ReloadRepositoryLocationMutation { | type ReloadRepositoryLocationMutation { | ||||
Output: ReloadRepositoryLocationMutationResult! | Output: ReloadRepositoryLocationMutationResult! | ||||
} | } | ||||
type ReloadWorkspaceMutation { | type ReloadWorkspaceMutation { | ||||
Output: ReloadWorkspaceMutationResult! | Output: ReloadWorkspaceMutationResult! | ||||
} | } | ||||
type ShutdownRepositoryLocationMutation { | |||||
Output: ShutdownRepositoryLocationMutationResult! | |||||
} | |||||
type TerminatePipelineExecutionMutation { | type TerminatePipelineExecutionMutation { | ||||
Output: TerminatePipelineExecutionResult! | Output: TerminatePipelineExecutionResult! | ||||
} | } | ||||
type ReconcileSchedulerStateMutation { | type ReconcileSchedulerStateMutation { | ||||
Output: ReconcileSchedulerStateMutationResult! | Output: ReconcileSchedulerStateMutationResult! | ||||
} | } | ||||
▲ Show 20 Lines • Show All 190 Lines • Show Last 20 Lines |