This commit is contained in:
parent
1a4b676635
commit
ae16381094
@ -2420,18 +2420,6 @@ export type ShotFragmentFragment = {
|
|||||||
|
|
||||||
export type GetShotsByIdsQueryVariables = Exact<{
|
export type GetShotsByIdsQueryVariables = Exact<{
|
||||||
ids: Array<Scalars["Int"]["input"]> | Scalars["Int"]["input"];
|
ids: Array<Scalars["Int"]["input"]> | Scalars["Int"]["input"];
|
||||||
includeCreatedAt?: Scalars["Boolean"]["input"];
|
|
||||||
includeUpdatedAt?: Scalars["Boolean"]["input"];
|
|
||||||
includeCueObjectFeatures?: Scalars["Boolean"]["input"];
|
|
||||||
includePocketingIntentionFeatures?: Scalars["Boolean"]["input"];
|
|
||||||
includeCueObjectDistance?: Scalars["Boolean"]["input"];
|
|
||||||
includeCueObjectAngle?: Scalars["Boolean"]["input"];
|
|
||||||
includeCueBallSpeed?: Scalars["Boolean"]["input"];
|
|
||||||
includeSpinType?: Scalars["Boolean"]["input"];
|
|
||||||
includeShotDirection?: Scalars["Boolean"]["input"];
|
|
||||||
includeTargetPocketDistance?: Scalars["Boolean"]["input"];
|
|
||||||
includeMake?: Scalars["Boolean"]["input"];
|
|
||||||
includeIntendedPocketType?: Scalars["Boolean"]["input"];
|
|
||||||
}>;
|
}>;
|
||||||
|
|
||||||
export type GetShotsByIdsQuery = {
|
export type GetShotsByIdsQuery = {
|
||||||
@ -3833,21 +3821,7 @@ export type GetShotsWithMetadataQueryResult = Apollo.QueryResult<
|
|||||||
GetShotsWithMetadataQueryVariables
|
GetShotsWithMetadataQueryVariables
|
||||||
>;
|
>;
|
||||||
export const GetShotsByIdsDocument = gql`
|
export const GetShotsByIdsDocument = gql`
|
||||||
query GetShotsByIds(
|
query GetShotsByIds($ids: [Int!]!) {
|
||||||
$ids: [Int!]!
|
|
||||||
$includeCreatedAt: Boolean! = false
|
|
||||||
$includeUpdatedAt: Boolean! = false
|
|
||||||
$includeCueObjectFeatures: Boolean! = false
|
|
||||||
$includePocketingIntentionFeatures: Boolean! = false
|
|
||||||
$includeCueObjectDistance: Boolean! = false
|
|
||||||
$includeCueObjectAngle: Boolean! = false
|
|
||||||
$includeCueBallSpeed: Boolean! = false
|
|
||||||
$includeSpinType: Boolean! = false
|
|
||||||
$includeShotDirection: Boolean! = false
|
|
||||||
$includeTargetPocketDistance: Boolean! = false
|
|
||||||
$includeMake: Boolean! = false
|
|
||||||
$includeIntendedPocketType: Boolean! = false
|
|
||||||
) {
|
|
||||||
getShotsByIds(ids: $ids) {
|
getShotsByIds(ids: $ids) {
|
||||||
...ShotFragment
|
...ShotFragment
|
||||||
}
|
}
|
||||||
@ -3868,18 +3842,6 @@ export const GetShotsByIdsDocument = gql`
|
|||||||
* const { data, loading, error } = useGetShotsByIdsQuery({
|
* const { data, loading, error } = useGetShotsByIdsQuery({
|
||||||
* variables: {
|
* variables: {
|
||||||
* ids: // value for 'ids'
|
* ids: // value for 'ids'
|
||||||
* includeCreatedAt: // value for 'includeCreatedAt'
|
|
||||||
* includeUpdatedAt: // value for 'includeUpdatedAt'
|
|
||||||
* includeCueObjectFeatures: // value for 'includeCueObjectFeatures'
|
|
||||||
* includePocketingIntentionFeatures: // value for 'includePocketingIntentionFeatures'
|
|
||||||
* includeCueObjectDistance: // value for 'includeCueObjectDistance'
|
|
||||||
* includeCueObjectAngle: // value for 'includeCueObjectAngle'
|
|
||||||
* includeCueBallSpeed: // value for 'includeCueBallSpeed'
|
|
||||||
* includeSpinType: // value for 'includeSpinType'
|
|
||||||
* includeShotDirection: // value for 'includeShotDirection'
|
|
||||||
* includeTargetPocketDistance: // value for 'includeTargetPocketDistance'
|
|
||||||
* includeMake: // value for 'includeMake'
|
|
||||||
* includeIntendedPocketType: // value for 'includeIntendedPocketType'
|
|
||||||
* },
|
* },
|
||||||
* });
|
* });
|
||||||
*/
|
*/
|
||||||
|
@ -185,21 +185,7 @@ fragment ShotFragment on ShotGQL {
|
|||||||
# Add other nested fields as required
|
# Add other nested fields as required
|
||||||
}
|
}
|
||||||
|
|
||||||
query GetShotsByIds(
|
query GetShotsByIds($ids: [Int!]!) {
|
||||||
$ids: [Int!]!
|
|
||||||
$includeCreatedAt: Boolean! = false
|
|
||||||
$includeUpdatedAt: Boolean! = false
|
|
||||||
$includeCueObjectFeatures: Boolean! = false
|
|
||||||
$includePocketingIntentionFeatures: Boolean! = false
|
|
||||||
$includeCueObjectDistance: Boolean! = false
|
|
||||||
$includeCueObjectAngle: Boolean! = false
|
|
||||||
$includeCueBallSpeed: Boolean! = false
|
|
||||||
$includeSpinType: Boolean! = false
|
|
||||||
$includeShotDirection: Boolean! = false
|
|
||||||
$includeTargetPocketDistance: Boolean! = false
|
|
||||||
$includeMake: Boolean! = false
|
|
||||||
$includeIntendedPocketType: Boolean! = false
|
|
||||||
) {
|
|
||||||
getShotsByIds(ids: $ids) {
|
getShotsByIds(ids: $ids) {
|
||||||
...ShotFragment
|
...ShotFragment
|
||||||
# Since the fragment already includes all necessary fields,
|
# Since the fragment already includes all necessary fields,
|
||||||
|
Loading…
Reference in New Issue
Block a user