use entire fragment to prevent cache merge issues
All checks were successful
Tests / Tests (pull_request) Successful in 15s

This commit is contained in:
2025-04-30 14:57:54 -07:00
parent e2743abb59
commit ad704cad75
2 changed files with 44 additions and 5 deletions

View File

@@ -27,6 +27,16 @@ query GetRunsForHighlights(
}
}
fragment PocketingIntentionFragment on PocketingIntentionFeaturesGQL {
make
targetPocketDistance
targetPocketAngle
targetPocketAngleDirection
marginOfErrorInDegrees
intendedPocketType
difficulty
}
query GetRunsWithTimestamps(
$filterInput: RunFilterInput!
$runIds: [Int!] = null
@@ -47,8 +57,8 @@ query GetRunsWithTimestamps(
videoId
id
createdAt
shotDifficulty: pocketingIntentionFeatures {
difficulty
pocketingIntentionFeatures {
...PocketingIntentionFragment
}
}
}