Changeset View
Changeset View
Standalone View
Standalone View
js_modules/dagit/src/schema.graphql
Show All 36 Lines | type Repository { | ||||
pipelines: [Pipeline!]! | pipelines: [Pipeline!]! | ||||
usedSolids: [UsedSolid!]! | usedSolids: [UsedSolid!]! | ||||
usedSolid(name: String!): UsedSolid | usedSolid(name: String!): UsedSolid | ||||
origin: RepositoryOrigin! | origin: RepositoryOrigin! | ||||
partitionSets: [PartitionSet!]! | partitionSets: [PartitionSet!]! | ||||
} | } | ||||
type RepositoryLocation { | type RepositoryLocation { | ||||
id: ID! | |||||
name: String! | name: String! | ||||
isReloadSupported: Boolean! | isReloadSupported: Boolean! | ||||
environmentPath: String | environmentPath: String | ||||
repositories: [Repository!]! | repositories: [Repository!]! | ||||
} | } | ||||
type Pipeline implements SolidContainer & IPipelineSnapshot { | type Pipeline implements SolidContainer & IPipelineSnapshot { | ||||
solids: [Solid!]! | solids: [Solid!]! | ||||
name: String! | name: String! | ||||
description: String | description: String | ||||
pipelineSnapshotId: String! | pipelineSnapshotId: String! | ||||
dagsterTypes: [DagsterType!]! | dagsterTypes: [DagsterType!]! | ||||
dagsterTypeOrError(dagsterTypeName: String!): DagsterTypeOrError! | dagsterTypeOrError(dagsterTypeName: String!): DagsterTypeOrError! | ||||
modes: [Mode!]! | modes: [Mode!]! | ||||
solidHandles(parentHandleID: String): [SolidHandle!]! | solidHandles(parentHandleID: String): [SolidHandle!]! | ||||
solidHandle(handleID: String!): SolidHandle | solidHandle(handleID: String!): SolidHandle | ||||
tags: [PipelineTag!]! | tags: [PipelineTag!]! | ||||
id: ID! | |||||
runs: [PipelineRun!]! | runs: [PipelineRun!]! | ||||
schedules: [ScheduleDefinition!]! | schedules: [ScheduleDefinition!]! | ||||
parentSnapshotId: String | parentSnapshotId: String | ||||
id: ID! | |||||
presets: [PipelinePreset!]! | presets: [PipelinePreset!]! | ||||
} | } | ||||
interface SolidContainer { | interface SolidContainer { | ||||
solids: [Solid!]! | solids: [Solid!]! | ||||
} | } | ||||
type Solid { | type Solid { | ||||
▲ Show 20 Lines • Show All 165 Lines • ▼ Show 20 Lines | |||||
} | } | ||||
type PipelineTag { | type PipelineTag { | ||||
key: String! | key: String! | ||||
value: String! | value: String! | ||||
} | } | ||||
type PipelineRun { | type PipelineRun { | ||||
id: ID! | |||||
runId: String! | runId: String! | ||||
pipelineSnapshotId: String | pipelineSnapshotId: String | ||||
status: PipelineRunStatus! | status: PipelineRunStatus! | ||||
pipeline: PipelineReference! | pipeline: PipelineReference! | ||||
pipelineName: String! | pipelineName: String! | ||||
solidSelection: [String!] | solidSelection: [String!] | ||||
stats: PipelineRunStatsOrError! | stats: PipelineRunStatsOrError! | ||||
stepStats: [PipelineRunStepStats!]! | stepStats: [PipelineRunStepStats!]! | ||||
▲ Show 20 Lines • Show All 171 Lines • ▼ Show 20 Lines | |||||
union PipelineRunOrError = PipelineRun | PipelineRunNotFoundError | PythonError | union PipelineRunOrError = PipelineRun | PipelineRunNotFoundError | PythonError | ||||
type PipelineRunNotFoundError implements Error { | type PipelineRunNotFoundError implements Error { | ||||
message: String! | message: String! | ||||
runId: String! | runId: String! | ||||
} | } | ||||
type ScheduleDefinition { | type ScheduleDefinition { | ||||
id: ID! | |||||
name: String! | name: String! | ||||
cronSchedule: String! | cronSchedule: String! | ||||
pipelineName: String! | pipelineName: String! | ||||
solidSelection: [String] | solidSelection: [String] | ||||
mode: String! | mode: String! | ||||
executionTimezone: String | executionTimezone: String | ||||
scheduleState: ScheduleState | scheduleState: ScheduleState | ||||
runConfigOrError: ScheduleRunConfigOrError | runConfigOrError: ScheduleRunConfigOrError | ||||
▲ Show 20 Lines • Show All 166 Lines • ▼ Show 20 Lines | |||||
type RepositoryLocationConnection { | type RepositoryLocationConnection { | ||||
nodes: [RepositoryLocationOrLoadFailure!]! | nodes: [RepositoryLocationOrLoadFailure!]! | ||||
} | } | ||||
union RepositoryLocationOrLoadFailure = RepositoryLocation | RepositoryLocationLoadFailure | union RepositoryLocationOrLoadFailure = RepositoryLocation | RepositoryLocationLoadFailure | ||||
type RepositoryLocationLoadFailure { | type RepositoryLocationLoadFailure { | ||||
id: ID! | |||||
name: String! | name: String! | ||||
error: PythonError! | error: PythonError! | ||||
} | } | ||||
union PipelineOrError = Pipeline | PipelineNotFoundError | InvalidSubsetError | PythonError | union PipelineOrError = Pipeline | PipelineNotFoundError | InvalidSubsetError | PythonError | ||||
type InvalidSubsetError implements Error { | type InvalidSubsetError implements Error { | ||||
message: String! | message: String! | ||||
Show All 16 Lines | type PipelineSnapshot implements IPipelineSnapshot & PipelineReference { | ||||
dagsterTypes: [DagsterType!]! | dagsterTypes: [DagsterType!]! | ||||
dagsterTypeOrError(dagsterTypeName: String!): DagsterTypeOrError! | dagsterTypeOrError(dagsterTypeName: String!): DagsterTypeOrError! | ||||
solids: [Solid!]! | solids: [Solid!]! | ||||
modes: [Mode!]! | modes: [Mode!]! | ||||
solidHandles(parentHandleID: String): [SolidHandle!]! | solidHandles(parentHandleID: String): [SolidHandle!]! | ||||
solidHandle(handleID: String!): SolidHandle | solidHandle(handleID: String!): SolidHandle | ||||
tags: [PipelineTag!]! | tags: [PipelineTag!]! | ||||
solidSelection: [String!] | solidSelection: [String!] | ||||
id: ID! | |||||
runs(cursor: String, limit: Int): [PipelineRun!]! | runs(cursor: String, limit: Int): [PipelineRun!]! | ||||
schedules: [ScheduleDefinition!]! | schedules: [ScheduleDefinition!]! | ||||
parentSnapshotId: String | parentSnapshotId: String | ||||
} | } | ||||
type PipelineSnapshotNotFoundError implements Error { | type PipelineSnapshotNotFoundError implements Error { | ||||
message: String! | message: String! | ||||
snapshotId: String! | snapshotId: String! | ||||
▲ Show 20 Lines • Show All 845 Lines • Show Last 20 Lines |