Assume that you have the following URL patterns:
urlpatterns = [path("candies/Fudge", FudgeView.as_view()),
path("candies", CandyView.as_view()),
re_path("", IndexView.as_view())]
Which handler will process a request to "candies"?