@@ -130,22 +130,31 @@ def get_versions(
130130 if standard and not latest :
131131 # This query all versions standard + hero
132132 # - hero must be filtered out if is not enabled during loop
133- query = versions_graphql_query (fields )
133+ query = versions_graphql_query (
134+ fields ,
135+ links_support_data = self .links_graphql_support_data (),
136+ )
134137 for attr , filter_value in graphql_filters .items ():
135138 query .set_variable_value (attr , filter_value )
136139 queries .append (query )
137140 else :
138141 if hero :
139142 # Add hero query if hero is enabled
140- hero_query = versions_graphql_query (fields )
143+ hero_query = versions_graphql_query (
144+ fields ,
145+ links_support_data = self .links_graphql_support_data (),
146+ )
141147 for attr , filter_value in graphql_filters .items ():
142148 hero_query .set_variable_value (attr , filter_value )
143149
144150 hero_query .set_variable_value ("heroOnly" , True )
145151 queries .append (hero_query )
146152
147153 if standard :
148- standard_query = versions_graphql_query (fields )
154+ standard_query = versions_graphql_query (
155+ fields ,
156+ links_support_data = self .links_graphql_support_data (),
157+ )
149158 for attr , filter_value in graphql_filters .items ():
150159 standard_query .set_variable_value (attr , filter_value )
151160
0 commit comments