Get a list of the node ids of the parents of the provided node.
Examples
graph <- graph_builder() |>
add_edge(from = "A", to = "B") |>
build_directed()
graph |> parents("A")
#> # of nodes: 0
#> | Nodes |
#>
graph |> parents("B")
#> # of nodes: 1
#> | Nodes |
#> | A |
#>