Changeset View
Changeset View
Standalone View
Standalone View
js_modules/dagit/src/workspace/WorkspaceContext.tsx
Show First 20 Lines • Show All 45 Lines • ▼ Show 20 Lines | |||||
export const ROOT_REPOSITORIES_QUERY = gql` | export const ROOT_REPOSITORIES_QUERY = gql` | ||||
query RootRepositoriesQuery { | query RootRepositoriesQuery { | ||||
repositoryLocationsOrError { | repositoryLocationsOrError { | ||||
__typename | __typename | ||||
... on RepositoryLocationConnection { | ... on RepositoryLocationConnection { | ||||
nodes { | nodes { | ||||
__typename | __typename | ||||
... on RepositoryLocation { | ... on RepositoryLocation { | ||||
id | |||||
isReloadSupported | isReloadSupported | ||||
name | name | ||||
repositories { | repositories { | ||||
id | id | ||||
name | name | ||||
pipelines { | pipelines { | ||||
id | |||||
name | name | ||||
pipelineSnapshotId | pipelineSnapshotId | ||||
} | } | ||||
partitionSets { | partitionSets { | ||||
pipelineName | pipelineName | ||||
} | } | ||||
...RepositoryInfoFragment | ...RepositoryInfoFragment | ||||
} | } | ||||
} | } | ||||
... on RepositoryLocationLoadFailure { | ... on RepositoryLocationLoadFailure { | ||||
id | |||||
name | name | ||||
error { | error { | ||||
message | message | ||||
} | } | ||||
} | } | ||||
} | } | ||||
} | } | ||||
...PythonErrorFragment | ...PythonErrorFragment | ||||
▲ Show 20 Lines • Show All 217 Lines • Show Last 20 Lines |