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 fabc85c commit 40a2e2aCopy full SHA for 40a2e2a
functions-python/helpers/query_helper.py
@@ -109,6 +109,10 @@ def get_feeds_query(
109
110
conditions = []
111
112
+ if data_type is None:
113
+ conditions.append(model.data_type.in_(["gtfs", "gtfs_rt"]))
114
+ logging.info("Added filter to exclude gbfs feeds")
115
+
116
if operation_status:
117
conditions.append(model.operational_status == operation_status)
118
logging.info("Added operational_status filter: %s", operation_status)
0 commit comments