library(magrittr)
# Create an empty graph and add 5 nodes to it; these
# nodes will be given ID values from 1 to 5
graph <-
create_graph() %>%
add_n_nodes(5)
# Get the graph's nodes
graph %>% get_nodes
#> [1] "1" "2" "3" "4" "5"
Run the code above in your browser using DataLab