feat: add missing DAG endpoints (forward-cone, dirty subgraph, mark-dirty) #10
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Summary
The client implements
push_dagandget_dagbut is missing 3 DAG query/mutation endpoints needed for interference detection and incremental validation.Missing Methods
GET /api/items/{pn}/dag/forward-cone/{nodeKey}get_dag_forward_cone(part_number, node_key)GET /api/items/{pn}/dag/dirtyget_dag_dirty(part_number)POST /api/items/{pn}/dag/mark-dirty/{nodeKey}mark_dag_dirty(part_number, node_key)Context
validation_state != 'clean'. Input to incremental validation jobs run by runners.References