GetShotsWithMetadata accepts ids (#68)

Reviewed-on: #68
This commit is contained in:
2024-10-03 12:36:35 -06:00
parent d8c11875d4
commit 937368c753
2 changed files with 9 additions and 0 deletions

View File

@@ -21,16 +21,19 @@ query GetShotsWithMetadata(
$filterInput: FilterInput!
$shotsPagination: GetShotsPagination
$limit: Int
$ids: [Int!]
) {
getShotsWithMetadata(
filterInput: $filterInput
shotsPagination: $shotsPagination
limit: $limit
ids: $ids
) {
count
shots {
...ShotWithAllFeatures
}
ids
}
}