**Directed Acyclic Graph** is a type of [[Graph]] which is directed, and there is no *cycles* in the graph. This makes the graph useful for representing *dependencies* to prevent circular dependencies.
DAGs are used in representing workflows in workflow orchestrators.
****
# More
## Source
- Wikipedia
## Related
- [[Graph Theory]]