Adding multiple graphs on the same plot

I can't be sure with out a REPRoducible EXample (reprex) but I think this could work

survey %>% 
    filter(quest_number == "1") %>% 
    ggplot()+
    geom_line(mapping = aes(x = numbered_level, y = est_percentage, color = demo_breakdown))