Add pocketing intention info
All checks were successful
Tests / Tests (pull_request) Successful in 15s

This commit is contained in:
2024-09-23 19:31:35 +02:00
committed by Ivan Malison
parent dcdb324391
commit 492ae4a225
2 changed files with 27 additions and 11 deletions

View File

@@ -113,10 +113,6 @@ query GetShotsWithMetadata(
}
}
}
serializedShotPaths {
b64EncodedBuffer
}
createdAt @include(if: $includeCreatedAt)
updatedAt @include(if: $includeUpdatedAt)
cueObjectFeatures @include(if: $includeCueObjectFeatures) {
@@ -132,6 +128,14 @@ query GetShotsWithMetadata(
make @include(if: $includeMake)
intendedPocketType @include(if: $includeIntendedPocketType)
}
pocketingIntentionInfo @include(if: $includePocketingIntentionFeatures) {
ballId
pocketId
pathMetadataIndex
}
serializedShotPaths @include(if: $includePocketingIntentionFeatures) {
b64EncodedBuffer
}
}
}
}