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`
|
export const GET_SHOTS = gql`
|
||||||
query GetShots(
|
query GetShots(
|
||||||
|
$filterInput: FilterInput
|
||||||
$includeCueObjectDistance: Boolean! = false
|
$includeCueObjectDistance: Boolean! = false
|
||||||
$includeTargetPocketDistance: Boolean! = false
|
$includeTargetPocketDistance: Boolean! = false
|
||||||
$includeCueObjectAngle: Boolean! = false
|
$includeCueObjectAngle: Boolean! = false
|
||||||
@ -10,7 +11,7 @@ export const GET_SHOTS = gql`
|
|||||||
$includeShotDirection: Boolean! = false
|
$includeShotDirection: Boolean! = false
|
||||||
$includeDidMake: Boolean! = false
|
$includeDidMake: Boolean! = false
|
||||||
) {
|
) {
|
||||||
getShots {
|
getShots(filterInput: $filterInput) {
|
||||||
id
|
id
|
||||||
videoId
|
videoId
|
||||||
startFrame
|
startFrame
|
||||||
|
Loading…
Reference in New Issue
Block a user