Hi - is there a way to get all Courses of an EnrollmentTerm through the api, either through REST or GraphQL?
In the GraphQL ui, for `allCourses` - there doesn't seem to be a way to apply a filter, something like:
```
query CoursesByTermQuery {
allCourses(filter: {term: [enrollmentTermId]})
...
```
The REST Search API, returns course listings, seems to only be applying the `search=[search term]` to the Name of the Course - is there a way to pass in an argument to search by EnrollmentTerm id?
The EnrollmentTerm API can `include[]` a `course_count` but not the actual courses?
There seems like there are some different options to access the Courses, but I'm not seeing anything that allows filters on the Course `term_id` property specifically.
Maybe I'm missing something in the docs..?
Thanks for any thoughts