I am working with a Propel query that is similar to the situation below. Can someone explain what joinSubTopic() is? I'm guessing this is an auto-generated Propel method, but I'm not quite sure how to make sense of it because I cannot find anything in the documentation with a method like that.
Query:
LectureQuery::create()->joinSubTopic()->find()
Relationship: Lecture can have more than 1 SubTopic.
SubTopic.lecture_id is a Foreign Key to Lecture.id