Differential D7424 Diff 36193 python_modules/dagster-graphql/dagster_graphql/client/client_queries.py
Changeset View
Changeset View
Standalone View
Standalone View
python_modules/dagster-graphql/dagster_graphql/client/client_queries.py
Show All 33 Lines | launchPipelineExecution(executionParams: $executionParams) { | ||||
} | } | ||||
... on PythonError { | ... on PythonError { | ||||
message | message | ||||
} | } | ||||
} | } | ||||
} | } | ||||
""" | """ | ||||
CLIENT_GET_REPO_LOCATIONS_NAMES_AND_PIPELINES_QUERY = """ | |||||
query { | |||||
repositoriesOrError { | |||||
__typename | |||||
... on RepositoryConnection { | |||||
nodes { | |||||
name | |||||
location { | |||||
name | |||||
} | |||||
pipelines { | |||||
name | |||||
} | |||||
} | |||||
} | |||||
... on PythonError { | |||||
message | |||||
} | |||||
} | |||||
} | |||||
""" | |||||
RELOAD_REPOSITORY_LOCATION_MUTATION = """ | RELOAD_REPOSITORY_LOCATION_MUTATION = """ | ||||
mutation ($repositoryLocationName: String!) { | mutation ($repositoryLocationName: String!) { | ||||
reloadRepositoryLocation(repositoryLocationName: $repositoryLocationName) { | reloadRepositoryLocation(repositoryLocationName: $repositoryLocationName) { | ||||
__typename | __typename | ||||
... on RepositoryLocation { | ... on RepositoryLocation { | ||||
name | name | ||||
repositories { | repositories { | ||||
name | name | ||||
Show All 29 Lines |