Hello, I’m interested in manually building assets ...
# ask-community
y
Hello, I’m interested in manually building assets via the GraphQL API whenever certain configurations are updated. I have discovered an API that allows for manual job execution, but I haven’t found one for running a single asset. I believe it’s feasible to create an individual job for each asset to accomplish this task, although it seems somewhat burdensome. Is there an efficient method to manually run a partial job for asset creation via the API? Thank you in advance.
v
https://docs.dagster.io/concepts/assets/graph-backed-assets#advanced-subsetting-graph-backed-assets This page might be useful. It is possible to run only a part of graph, but your code should be able to support it by checking:
Copy code
context.selected_output_names
y
Thank you for your response, I’ll check it!