@@ -104,6 +104,7 @@ def resolve_list_uploads(commit: Commit, info, **kwargs):
104104 )
105105
106106
107+ @sentry_sdk .trace
107108@commit_bindable .field ("compareWithParent" )
108109async def resolve_compare_with_parent (commit : Commit , info , ** kwargs ):
109110 if not commit .parent_commit_id :
@@ -273,6 +274,7 @@ def resolve_commit_bundle_analysis(commit, info):
273274### Commit Coverage Bindable ###
274275
275276
277+ @sentry_sdk .trace
276278@commit_coverage_analytics_bindable .field ("totals" )
277279def resolve_coverage_totals (
278280 commit : Commit , info : GraphQLResolveInfo
@@ -281,12 +283,14 @@ def resolve_coverage_totals(
281283 return command .fetch_totals (commit )
282284
283285
286+ @sentry_sdk .trace
284287@commit_coverage_analytics_bindable .field ("flagNames" )
285288@sync_to_async
286289def resolve_coverage_flags (commit : Commit , info : GraphQLResolveInfo ) -> List [str ]:
287290 return commit .full_report .flags .keys ()
288291
289292
293+ @sentry_sdk .trace
290294@commit_coverage_analytics_bindable .field ("coverageFile" )
291295@sync_to_async
292296def resolve_coverage_file (commit , info , path , flags = None , components = None ):
@@ -315,6 +319,7 @@ def resolve_coverage_file(commit, info, path, flags=None, components=None):
315319 }
316320
317321
322+ @sentry_sdk .trace
318323@commit_coverage_analytics_bindable .field ("components" )
319324@sync_to_async
320325def resolve_coverage_components (commit : Commit , info , filters = None ) -> List [Component ]:
@@ -333,6 +338,7 @@ def resolve_coverage_components(commit: Commit, info, filters=None) -> List[Comp
333338### Commit Bundle Analysis Bindable ###
334339
335340
341+ @sentry_sdk .trace
336342@commit_bundle_analysis_bindable .field ("bundleAnalysisCompareWithParent" )
337343@sync_to_async
338344def resolve_commit_bundle_analysis_compare_with_parent (
@@ -361,6 +367,7 @@ def resolve_commit_bundle_analysis_compare_with_parent(
361367 return bundle_analysis_comparison
362368
363369
370+ @sentry_sdk .trace
364371@commit_bundle_analysis_bindable .field ("bundleAnalysisReport" )
365372@sync_to_async
366373def resolve_commit_bundle_analysis_report (commit : Commit , info ) -> BundleAnalysisReport :
0 commit comments