{"id":14985579,"url":"https://github.com/truevoid-development/dagster-composable-graphs","last_synced_at":"2026-02-16T16:02:17.791Z","repository":{"id":246782695,"uuid":"822168793","full_name":"truevoid-development/dagster-composable-graphs","owner":"truevoid-development","description":"Library to create Dagster jobs from YAML","archived":false,"fork":false,"pushed_at":"2024-07-02T21:30:12.000Z","size":245,"stargazers_count":1,"open_issues_count":4,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-07T15:46:03.982Z","etag":null,"topics":["dagster","graphs","orchestration","python","yaml"],"latest_commit_sha":null,"homepage":"https://docs.truevoid.dev","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/truevoid-development.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-06-30T13:23:13.000Z","updated_at":"2024-07-02T19:41:01.000Z","dependencies_parsed_at":null,"dependency_job_id":"605c5038-3cb7-4df4-94c1-e042b4b71141","html_url":"https://github.com/truevoid-development/dagster-composable-graphs","commit_stats":null,"previous_names":["truevoid-development/dagster-composable-graphs"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/truevoid-development/dagster-composable-graphs","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/truevoid-development%2Fdagster-composable-graphs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/truevoid-development%2Fdagster-composable-graphs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/truevoid-development%2Fdagster-composable-graphs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/truevoid-development%2Fdagster-composable-graphs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/truevoid-development","download_url":"https://codeload.github.com/truevoid-development/dagster-composable-graphs/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/truevoid-development%2Fdagster-composable-graphs/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29512235,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-16T09:05:14.864Z","status":"ssl_error","status_checked_at":"2026-02-16T08:55:59.364Z","response_time":115,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["dagster","graphs","orchestration","python","yaml"],"created_at":"2024-09-24T14:11:14.405Z","updated_at":"2026-02-16T16:02:17.759Z","avatar_url":"https://github.com/truevoid-development.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n    \u003cimg width=\"256\" height=\"256\" src=\"docs/src/assets/logo.svg\"\u003e\n\u003c/p\u003e\n\n# Dagster Composable Graphs\n\n[Dagster](https://github.com/dagster-io/dagster) is a cloud-native data\npipeline orchestrator for the whole development lifecycle, with integrated\nlineage and observability, a declarative programming model, and best-in-class\ntestability.\n\nThis library provides additional functionality to define dagster jobs from a\nfile in `.yaml` format and may be used with any other package that integrates\nwith dagster.\n\nVisit [the documentation here](https://docs.truevoid.dev).\n\nPartially inspired by post *Abstracting Pipelines for Analysts with a YAML DSL*\n[on the dagster blog](https://dagster.io/blog/simplisafe-case-study).\n\n## Example\n\nConsider the following definition of a `ComposableGraph`. Notice in particular\nsections `inputs`, `operations` and `dependencies`. Respectively these define\nthe graph inputs, which dagster\n[ops](https://docs.dagster.io/concepts/ops-jobs-graphs/ops#ops) or\n[graphs](https://docs.dagster.io/concepts/ops-jobs-graphs/graphs#op-graphs) are\npart of the job, and their dependencies.\n\n```yaml\napiVersion: truevoid.dev/v1alpha1\nkind: ComposableGraph\nmetadata:\n  name: concatenate-graphs\nspec:\n  inputs:\n    x: 2.0\n    y: 5.0\n  operations:\n    - name: add_and_multiply\n      function: example.jobs.add_and_multiply\n    - name: add\n      function: example.jobs.add\n    - name: multiply\n      function: example.jobs.multiply\n  dependencies:\n    - name: add_and_multiply\n      inputs:\n        - x\n        - y\n    - name: add\n      inputs:\n        - node: add_and_multiply\n          pointer: /add\n        - x\n    - name: multiply\n      inputs:\n        - y\n        - node: add_and_multiply\n          pointer: /multiply\n```\n\nResults in the following job, visualized using dagster webserver UI:\n\n\u003cp align=\"center\"\u003e\n    \u003cimg width=\"512\" src=\"docs/src/assets/graph.png\"\u003e\n\u003c/p\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftruevoid-development%2Fdagster-composable-graphs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftruevoid-development%2Fdagster-composable-graphs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftruevoid-development%2Fdagster-composable-graphs/lists"}