Add filter input
This commit is contained in:
parent
74c17f433a
commit
875989e3a9
@ -2,6 +2,7 @@ import { gql } from "@apollo/client";
|
||||
|
||||
export const GET_SHOTS = gql`
|
||||
query GetShots(
|
||||
$filterInput: FilterInput
|
||||
$includeCueObjectDistance: Boolean! = false
|
||||
$includeTargetPocketDistance: Boolean! = false
|
||||
$includeCueObjectAngle: Boolean! = false
|
||||
@ -10,7 +11,7 @@ export const GET_SHOTS = gql`
|
||||
$includeShotDirection: Boolean! = false
|
||||
$includeDidMake: Boolean! = false
|
||||
) {
|
||||
getShots {
|
||||
getShots(filterInput: $filterInput) {
|
||||
id
|
||||
videoId
|
||||
startFrame
|
||||
|
Loading…
Reference in New Issue
Block a user