We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a3d12f commit 282a093Copy full SHA for 282a093
api/src/shared/common/db_utils.py
@@ -83,7 +83,9 @@ def get_gtfs_feeds_query(
83
84
if include_options_for_joinedload:
85
feed_query = feed_query.options(
86
- contains_eager(Gtfsfeed.gtfsdatasets).joinedload(Gtfsdataset.validation_reports),
+ contains_eager(Gtfsfeed.gtfsdatasets)
87
+ .joinedload(Gtfsdataset.validation_reports)
88
+ .joinedload(Validationreport.features),
89
*get_joinedload_options(),
90
).order_by(Gtfsfeed.provider, Gtfsfeed.stable_id)
91
0 commit comments