Hi, question on setting up dagster using `load_ass...
# integration-airbyte
k
Hi, question on setting up dagster using
load_assets_from_airbyte_instance
via airbyte api I can see that if I do something like
Copy code
airbyte_assets = load_assets_from_airbyte_instance(airbyte_resource)
@repository
def airbyte_repo():
    return [airbyte_assets, ]
Dagster generates a list of ops, What is a good way of accessing those ops if I want to define jobs from them?
s
Are you able to talk in a little more detail about why you want to define jobs from those ops? A difficulty here is that Dagster defers the creation of these ops until the moment that the web server tries to load the asset definitions. This is to avoid calling out to Airbyte every time your Python module is imported. cc @ben