Skip to contents

Retrieves the nodes in a graph that have no parents

Usage

get_all_roots(graph, ...)

Arguments

graph

A graph object

...

Unused

Value

A character vector of nodes

Examples

graph <- graph_builder() |>
  add_path(c("A", "B", "C")) |>
  add_path(c("A", "D", "C")) |>
  add_path(c("Z", "B", "C")) |>
  build_directed()

get_all_roots(graph)
#> # of nodes: 2
#> |           Nodes           |
#> |             A             |
#> |             Z             |
#>