digraph G {
  questions_db [ label = "Stored questions in JSON." ]
  if_no_db [ label = "Upsert the questions in pouch." ]
  get_random [ label = "Method to get N random questions." ]

  in_repo -> questions_db
  on_start -> if_no_db
  in_runtime -> get_random
}
