Compare commits
1 Commits
colonelpan
...
3ad12182d8
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3ad12182d8 |
20717
src/index.tsx
20717
src/index.tsx
File diff suppressed because it is too large
Load Diff
@@ -41,7 +41,6 @@ fragment VideoCardFields on VideoGQL {
|
|||||||
stream {
|
stream {
|
||||||
id
|
id
|
||||||
lastIntendedSegmentBound
|
lastIntendedSegmentBound
|
||||||
uploadCompletionCursor
|
|
||||||
streamSegmentType
|
streamSegmentType
|
||||||
isCompleted
|
isCompleted
|
||||||
lastSegmentUploadedAt
|
lastSegmentUploadedAt
|
||||||
|
|||||||
@@ -1,51 +0,0 @@
|
|||||||
query GetSessionCoach($videoId: Int!) {
|
|
||||||
getSessionCoach(videoId: $videoId) {
|
|
||||||
videoId
|
|
||||||
processingId
|
|
||||||
analysisVersion
|
|
||||||
state
|
|
||||||
generatedAt
|
|
||||||
processingStatus
|
|
||||||
ineligibilityReason
|
|
||||||
summary
|
|
||||||
shotCount
|
|
||||||
madeCount
|
|
||||||
missedCount
|
|
||||||
unknownOutcomeCount
|
|
||||||
analyzedShotCount
|
|
||||||
makePercentage
|
|
||||||
primaryCandidate {
|
|
||||||
...SessionCoachCandidateFields
|
|
||||||
}
|
|
||||||
candidates {
|
|
||||||
...SessionCoachCandidateFields
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
fragment SessionCoachCandidateFields on SessionCoachCandidateGQL {
|
|
||||||
id
|
|
||||||
rank
|
|
||||||
family
|
|
||||||
kind
|
|
||||||
title
|
|
||||||
body
|
|
||||||
action
|
|
||||||
supportingShotIds
|
|
||||||
drillId
|
|
||||||
limitations
|
|
||||||
evidence {
|
|
||||||
bucketKey
|
|
||||||
bucketLabel
|
|
||||||
attemptCount
|
|
||||||
madeCount
|
|
||||||
missedCount
|
|
||||||
makePercentage
|
|
||||||
comparisonAttemptCount
|
|
||||||
comparisonMadeCount
|
|
||||||
comparisonMakePercentage
|
|
||||||
patternShotCount
|
|
||||||
score
|
|
||||||
rankReason
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -85,53 +85,3 @@ query ComputePotAim(
|
|||||||
occludingBallIds
|
occludingBallIds
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fragment PositionShotCandidate on PositionShotCandidateGQL {
|
|
||||||
strike {
|
|
||||||
v0
|
|
||||||
phi
|
|
||||||
theta
|
|
||||||
a
|
|
||||||
b
|
|
||||||
}
|
|
||||||
cueFinalPosition
|
|
||||||
inTargetArea
|
|
||||||
distanceToTargetArea
|
|
||||||
robustness
|
|
||||||
potted
|
|
||||||
scratched
|
|
||||||
projection {
|
|
||||||
trajectories {
|
|
||||||
ballId
|
|
||||||
points {
|
|
||||||
time
|
|
||||||
position
|
|
||||||
}
|
|
||||||
}
|
|
||||||
events {
|
|
||||||
eventType
|
|
||||||
time
|
|
||||||
ballIds
|
|
||||||
position
|
|
||||||
}
|
|
||||||
finalState {
|
|
||||||
ballId
|
|
||||||
position
|
|
||||||
}
|
|
||||||
pottedBallIds
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
query SuggestPositionShot($suggestionInput: SuggestPositionShotInputGQL!) {
|
|
||||||
suggestPositionShot(suggestionInput: $suggestionInput) {
|
|
||||||
achievable
|
|
||||||
evaluatedCount
|
|
||||||
successfulCount
|
|
||||||
best {
|
|
||||||
...PositionShotCandidate
|
|
||||||
}
|
|
||||||
alternates {
|
|
||||||
...PositionShotCandidate
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|||||||
388
src/schema.gql
388
src/schema.gql
@@ -1,7 +1,5 @@
|
|||||||
type Query {
|
type Query {
|
||||||
getAggregatedShotMetrics(
|
getAggregatedShotMetrics(aggregateInput: AggregateInputGQL!): [AggregateResultGQL!]!
|
||||||
aggregateInput: AggregateInputGQL!
|
|
||||||
): [AggregateResultGQL!]!
|
|
||||||
getBucketSet(keyName: String!): BucketSetGQL
|
getBucketSet(keyName: String!): BucketSetGQL
|
||||||
challenges(includeDismissed: Boolean! = false): [Challenge!]!
|
challenges(includeDismissed: Boolean! = false): [Challenge!]!
|
||||||
myDismissedChallenges: [Challenge!]!
|
myDismissedChallenges: [Challenge!]!
|
||||||
@@ -13,44 +11,14 @@ type Query {
|
|||||||
myChallengeEntries: [ChallengeEntry!]!
|
myChallengeEntries: [ChallengeEntry!]!
|
||||||
getDeployedConfig: DeployedConfigGQL!
|
getDeployedConfig: DeployedConfigGQL!
|
||||||
waitFor(duration: Float!): Float!
|
waitFor(duration: Float!): Float!
|
||||||
getFeedVideos(
|
getFeedVideos(limit: Int! = 5, after: String = null, includePrivate: IncludePrivateEnum! = MINE, includeCallersVideos: Boolean = true, filters: VideoFilterInput = null, feedInput: VideoFeedInputGQL = null): VideoHistoryGQL!
|
||||||
limit: Int! = 5
|
getVideoMakePercentageIntervals(videoId: ID!, intervalDuration: Int! = 300): [MakePercentageIntervalGQL!]!
|
||||||
after: String = null
|
getLongestRunsLeaderboard(interval: TimeInterval = null, when: DateTime = null, limit: Int! = 50, requiredTags: [String!] = null): RunLeaderboardGQL!
|
||||||
includePrivate: IncludePrivateEnum! = MINE
|
getDrillRunLeaderboard(drillTag: String!, interval: TimeInterval = null, limit: Int! = 50, tableSizeMin: Float = null, tableSizeMax: Float = null, pocketSizeMin: Float = null, pocketSizeMax: Float = null): DrillRunLeaderboardGQL!
|
||||||
includeCallersVideos: Boolean = true
|
|
||||||
filters: VideoFilterInput = null
|
|
||||||
feedInput: VideoFeedInputGQL = null
|
|
||||||
): VideoHistoryGQL!
|
|
||||||
getVideoMakePercentageIntervals(
|
|
||||||
videoId: ID!
|
|
||||||
intervalDuration: Int! = 300
|
|
||||||
): [MakePercentageIntervalGQL!]!
|
|
||||||
getLongestRunsLeaderboard(
|
|
||||||
interval: TimeInterval = null
|
|
||||||
when: DateTime = null
|
|
||||||
limit: Int! = 50
|
|
||||||
requiredTags: [String!] = null
|
|
||||||
): RunLeaderboardGQL!
|
|
||||||
getDrillRunLeaderboard(
|
|
||||||
drillTag: String!
|
|
||||||
interval: TimeInterval = null
|
|
||||||
limit: Int! = 50
|
|
||||||
tableSizeMin: Float = null
|
|
||||||
tableSizeMax: Float = null
|
|
||||||
pocketSizeMin: Float = null
|
|
||||||
pocketSizeMax: Float = null
|
|
||||||
): DrillRunLeaderboardGQL!
|
|
||||||
getMyDrillRuns(drillTag: String!, limit: Int! = 50): [RunGQL!]!
|
getMyDrillRuns(drillTag: String!, limit: Int! = 50): [RunGQL!]!
|
||||||
getMakesLeaderboard(
|
getMakesLeaderboard(interval: TimeInterval = null, when: DateTime = null): CountLeaderboardGQL!
|
||||||
interval: TimeInterval = null
|
|
||||||
when: DateTime = null
|
|
||||||
): CountLeaderboardGQL!
|
|
||||||
getMedals(scope: MedalScope!, userId: Int = null): RequestedMedalsGQL!
|
getMedals(scope: MedalScope!, userId: Int = null): RequestedMedalsGQL!
|
||||||
notifications(
|
notifications(limit: Int! = 20, offset: Int! = 0, filters: NotificationFilters = null): NotificationConnection!
|
||||||
limit: Int! = 20
|
|
||||||
offset: Int! = 0
|
|
||||||
filters: NotificationFilters = null
|
|
||||||
): NotificationConnection!
|
|
||||||
unreadNotificationCount: Int!
|
unreadNotificationCount: Int!
|
||||||
poolHalls: [PoolHall!]!
|
poolHalls: [PoolHall!]!
|
||||||
claimablePoolHalls: [PoolHall!]!
|
claimablePoolHalls: [PoolHall!]!
|
||||||
@@ -58,73 +26,25 @@ type Query {
|
|||||||
claimableCameras(poolHallId: ID!): [PoolHallCamera!]!
|
claimableCameras(poolHallId: ID!): [PoolHallCamera!]!
|
||||||
cameraClaimSession(id: ID!): CameraClaimSession
|
cameraClaimSession(id: ID!): CameraClaimSession
|
||||||
activeCameraLease: CameraLease
|
activeCameraLease: CameraLease
|
||||||
getRuns(
|
getRuns(filterInput: RunFilterInput!, runIds: [Int!] = null, runsOrdering: GetRunsOrdering = null, limit: Int! = 500, countRespectsLimit: Boolean! = false): GetRunsResult!
|
||||||
filterInput: RunFilterInput!
|
|
||||||
runIds: [Int!] = null
|
|
||||||
runsOrdering: GetRunsOrdering = null
|
|
||||||
limit: Int! = 500
|
|
||||||
countRespectsLimit: Boolean! = false
|
|
||||||
): GetRunsResult!
|
|
||||||
getSessionCoach(videoId: Int!): SessionCoachGQL!
|
|
||||||
videoPlayerClusters(videoId: Int!): [PlayerClusterGQL!]!
|
videoPlayerClusters(videoId: Int!): [PlayerClusterGQL!]!
|
||||||
getShotAnnotationTypes(errorTypes: Boolean = false): [ShotAnnotationTypeGQL!]!
|
getShotAnnotationTypes(errorTypes: Boolean = false): [ShotAnnotationTypeGQL!]!
|
||||||
getTableState(
|
getTableState(b64Image: String!, tableSize: Float = 100, useHomography: HomographyInputGQL = null): TableStateGQL!
|
||||||
b64Image: String!
|
|
||||||
tableSize: Float = 100
|
|
||||||
useHomography: HomographyInputGQL = null
|
|
||||||
): TableStateGQL!
|
|
||||||
getLiveTableState(videoId: Int!): LiveTableStateGQL!
|
getLiveTableState(videoId: Int!): LiveTableStateGQL!
|
||||||
getShotTableState(shotId: Int!): ShotTableStateGQL!
|
getShotTableState(shotId: Int!): ShotTableStateGQL!
|
||||||
simulateShot(simulationInput: SimulateShotInputGQL!): ShotProjectionGQL!
|
simulateShot(simulationInput: SimulateShotInputGQL!): ShotProjectionGQL!
|
||||||
computePotAim(
|
computePotAim(simulationInput: SimulateShotInputGQL!, targetBallId: Int!, pocket: PocketIdentifier!): PotAimGQL!
|
||||||
simulationInput: SimulateShotInputGQL!
|
getOrderedShots(filterInput: FilterInput!, ids: [Int!] = null, shotsOrdering: GetShotsOrdering = null, limit: Int! = 500, countRespectsLimit: Boolean! = false): GetShotsResult!
|
||||||
targetBallId: Int!
|
getShotsWithMetadata(filterInput: FilterInput!, ids: [Int!] = null, shotsPagination: GetShotsPagination = null, limit: Int! = 500, countRespectsLimit: Boolean! = false): GetShotsResult!
|
||||||
pocket: PocketIdentifier!
|
getShots(filterInput: FilterInput!, shotsPagination: GetShotsPagination = null, limit: Int! = 500, countRespectsLimit: Boolean! = false): [ShotGQL!]!
|
||||||
): PotAimGQL!
|
|
||||||
suggestPositionShot(
|
|
||||||
suggestionInput: SuggestPositionShotInputGQL!
|
|
||||||
): PositionSuggestionGQL!
|
|
||||||
getOrderedShots(
|
|
||||||
filterInput: FilterInput!
|
|
||||||
ids: [Int!] = null
|
|
||||||
shotsOrdering: GetShotsOrdering = null
|
|
||||||
limit: Int! = 500
|
|
||||||
countRespectsLimit: Boolean! = false
|
|
||||||
): GetShotsResult!
|
|
||||||
getShotsWithMetadata(
|
|
||||||
filterInput: FilterInput!
|
|
||||||
ids: [Int!] = null
|
|
||||||
shotsPagination: GetShotsPagination = null
|
|
||||||
limit: Int! = 500
|
|
||||||
countRespectsLimit: Boolean! = false
|
|
||||||
): GetShotsResult!
|
|
||||||
getShots(
|
|
||||||
filterInput: FilterInput!
|
|
||||||
shotsPagination: GetShotsPagination = null
|
|
||||||
limit: Int! = 500
|
|
||||||
countRespectsLimit: Boolean! = false
|
|
||||||
): [ShotGQL!]!
|
|
||||||
getShotsByIds(ids: [Int!]!): [ShotGQL!]!
|
getShotsByIds(ids: [Int!]!): [ShotGQL!]!
|
||||||
getUsageStats(days: Int! = 30): UsageStatsGQL!
|
getUsageStats(days: Int! = 30): UsageStatsGQL!
|
||||||
getUser(userId: Int!): UserGQL
|
getUser(userId: Int!): UserGQL
|
||||||
doesUsernameExist(candidateUsername: String!): Boolean!
|
doesUsernameExist(candidateUsername: String!): Boolean!
|
||||||
getLoggedInUser: UserGQL
|
getLoggedInUser: UserGQL
|
||||||
getUsernames(
|
getUsernames(matchString: String = null, limit: Int = null, after: String = null): [String!]!
|
||||||
matchString: String = null
|
getUsersMatching(matchString: String = null, limit: Int = null, after: String = null): [UserGQL!]!
|
||||||
limit: Int = null
|
getUserRelationshipsMatching(userId: Int!, matchString: String = null, limit: Int = 100, after: String = null): UserRelationshipsResult!
|
||||||
after: String = null
|
|
||||||
): [String!]!
|
|
||||||
getUsersMatching(
|
|
||||||
matchString: String = null
|
|
||||||
limit: Int = null
|
|
||||||
after: String = null
|
|
||||||
): [UserGQL!]!
|
|
||||||
getUserRelationshipsMatching(
|
|
||||||
userId: Int!
|
|
||||||
matchString: String = null
|
|
||||||
limit: Int = 100
|
|
||||||
after: String = null
|
|
||||||
): UserRelationshipsResult!
|
|
||||||
getAvailableSubscriptionOptions: StripeSubscriptionOptionsGQL!
|
getAvailableSubscriptionOptions: StripeSubscriptionOptionsGQL!
|
||||||
getUserSubscriptionStatus: UserSubscriptionStatusGQL!
|
getUserSubscriptionStatus: UserSubscriptionStatusGQL!
|
||||||
getResolvedTier: ResolvedTierGQL!
|
getResolvedTier: ResolvedTierGQL!
|
||||||
@@ -132,12 +52,7 @@ type Query {
|
|||||||
getQuotaStatus: QuotaStatusGQL!
|
getQuotaStatus: QuotaStatusGQL!
|
||||||
getStorageStatus: StorageStatusGQL
|
getStorageStatus: StorageStatusGQL
|
||||||
getPlayTime(userId: Int!, filters: VideoFilterInput = null): UserPlayTimeGQL!
|
getPlayTime(userId: Int!, filters: VideoFilterInput = null): UserPlayTimeGQL!
|
||||||
getUserVideos(
|
getUserVideos(userId: Int = null, limit: Int! = 5, after: String = null, filters: VideoFilterInput = null): VideoHistoryGQL!
|
||||||
userId: Int = null
|
|
||||||
limit: Int! = 5
|
|
||||||
after: String = null
|
|
||||||
filters: VideoFilterInput = null
|
|
||||||
): VideoHistoryGQL!
|
|
||||||
getUserTags(includeRetiredTags: Boolean = false): [TagGQL!]!
|
getUserTags(includeRetiredTags: Boolean = false): [TagGQL!]!
|
||||||
getGameTypeTagMetrics(input: GameTypeTagMetricsInput!): [GameTypeTagMetric!]!
|
getGameTypeTagMetrics(input: GameTypeTagMetricsInput!): [GameTypeTagMetric!]!
|
||||||
videoExportJob(jobId: Int!): VideoExportJobGQL
|
videoExportJob(jobId: Int!): VideoExportJobGQL
|
||||||
@@ -209,9 +124,7 @@ input DatetimeRangeAggregationInput {
|
|||||||
feature: String! = "created_at"
|
feature: String! = "created_at"
|
||||||
}
|
}
|
||||||
|
|
||||||
"""
|
"""Date with time (isoformat)"""
|
||||||
Date with time (isoformat)
|
|
||||||
"""
|
|
||||||
scalar DateTime
|
scalar DateTime
|
||||||
|
|
||||||
input TimeInterval @oneOf {
|
input TimeInterval @oneOf {
|
||||||
@@ -327,9 +240,7 @@ input DateRangeFilter {
|
|||||||
greaterThanInclusive: Boolean! = true
|
greaterThanInclusive: Boolean! = true
|
||||||
}
|
}
|
||||||
|
|
||||||
"""
|
"""Date (isoformat)"""
|
||||||
Date (isoformat)
|
|
||||||
"""
|
|
||||||
scalar Date
|
scalar Date
|
||||||
|
|
||||||
type BucketSetGQL {
|
type BucketSetGQL {
|
||||||
@@ -855,8 +766,7 @@ type MedalGQL {
|
|||||||
|
|
||||||
input MedalScope @oneOf {
|
input MedalScope @oneOf {
|
||||||
videoId: Int
|
videoId: Int
|
||||||
interval: TimeInterval
|
interval: TimeInterval @deprecated(reason: "NO LONGER SUPPORTED, USE DATETIME_RANGE")
|
||||||
@deprecated(reason: "NO LONGER SUPPORTED, USE DATETIME_RANGE")
|
|
||||||
datetimeRange: DatetimeRangeAggregationInput
|
datetimeRange: DatetimeRangeAggregationInput
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -999,81 +909,6 @@ input DatetimeOrdering {
|
|||||||
startingAt: DateTime = null
|
startingAt: DateTime = null
|
||||||
}
|
}
|
||||||
|
|
||||||
type SessionCoachGQL {
|
|
||||||
videoId: Int!
|
|
||||||
processingId: Int
|
|
||||||
analysisVersion: String!
|
|
||||||
state: SessionCoachStateEnum!
|
|
||||||
generatedAt: DateTime!
|
|
||||||
processingStatus: String
|
|
||||||
ineligibilityReason: SessionCoachIneligibilityReasonEnum
|
|
||||||
summary: String
|
|
||||||
shotCount: Int!
|
|
||||||
madeCount: Int!
|
|
||||||
missedCount: Int!
|
|
||||||
unknownOutcomeCount: Int!
|
|
||||||
analyzedShotCount: Int!
|
|
||||||
makePercentage: Float
|
|
||||||
primaryCandidate: SessionCoachCandidateGQL
|
|
||||||
candidates: [SessionCoachCandidateGQL!]!
|
|
||||||
}
|
|
||||||
|
|
||||||
enum SessionCoachStateEnum {
|
|
||||||
PROCESSING
|
|
||||||
READY
|
|
||||||
NO_TRACKED_SHOTS
|
|
||||||
INELIGIBLE
|
|
||||||
FAILED
|
|
||||||
}
|
|
||||||
|
|
||||||
enum SessionCoachIneligibilityReasonEnum {
|
|
||||||
MULTIPLAYER
|
|
||||||
}
|
|
||||||
|
|
||||||
type SessionCoachCandidateGQL {
|
|
||||||
id: ID!
|
|
||||||
rank: Int!
|
|
||||||
family: SessionCoachCandidateFamilyEnum!
|
|
||||||
kind: SessionCoachCandidateKindEnum!
|
|
||||||
title: String!
|
|
||||||
body: String!
|
|
||||||
action: String!
|
|
||||||
supportingShotIds: [Int!]!
|
|
||||||
drillId: String
|
|
||||||
evidence: SessionCoachEvidenceGQL!
|
|
||||||
limitations: [String!]!
|
|
||||||
}
|
|
||||||
|
|
||||||
enum SessionCoachCandidateFamilyEnum {
|
|
||||||
AIMING
|
|
||||||
CUT_ANGLE
|
|
||||||
SPIN
|
|
||||||
OBJECT_TO_POCKET_DISTANCE
|
|
||||||
CUE_TO_OBJECT_DISTANCE
|
|
||||||
BACK_CUT
|
|
||||||
}
|
|
||||||
|
|
||||||
enum SessionCoachCandidateKindEnum {
|
|
||||||
DIRECTIONAL_MISS
|
|
||||||
OUTCOME_PATTERN
|
|
||||||
USAGE_PATTERN
|
|
||||||
}
|
|
||||||
|
|
||||||
type SessionCoachEvidenceGQL {
|
|
||||||
bucketKey: String!
|
|
||||||
bucketLabel: String!
|
|
||||||
attemptCount: Int!
|
|
||||||
madeCount: Int!
|
|
||||||
missedCount: Int!
|
|
||||||
makePercentage: Float!
|
|
||||||
comparisonAttemptCount: Int!
|
|
||||||
comparisonMadeCount: Int!
|
|
||||||
comparisonMakePercentage: Float
|
|
||||||
patternShotCount: Int!
|
|
||||||
score: Float!
|
|
||||||
rankReason: String!
|
|
||||||
}
|
|
||||||
|
|
||||||
type PlayerClusterGQL {
|
type PlayerClusterGQL {
|
||||||
videoId: Int!
|
videoId: Int!
|
||||||
clusterId: Int!
|
clusterId: Int!
|
||||||
@@ -1222,44 +1057,6 @@ type PotAimGQL {
|
|||||||
occludingBallIds: [Int!]!
|
occludingBallIds: [Int!]!
|
||||||
}
|
}
|
||||||
|
|
||||||
type PositionSuggestionGQL {
|
|
||||||
achievable: Boolean!
|
|
||||||
best: PositionShotCandidateGQL
|
|
||||||
alternates: [PositionShotCandidateGQL!]!
|
|
||||||
evaluatedCount: Int!
|
|
||||||
successfulCount: Int!
|
|
||||||
}
|
|
||||||
|
|
||||||
type PositionShotCandidateGQL {
|
|
||||||
strike: CueStrikeGQL!
|
|
||||||
cueFinalPosition: [Float!]!
|
|
||||||
inTargetArea: Boolean!
|
|
||||||
distanceToTargetArea: Float!
|
|
||||||
robustness: Int!
|
|
||||||
potted: Boolean!
|
|
||||||
scratched: Boolean!
|
|
||||||
projection: ShotProjectionGQL
|
|
||||||
}
|
|
||||||
|
|
||||||
type CueStrikeGQL {
|
|
||||||
v0: Float!
|
|
||||||
phi: Float!
|
|
||||||
theta: Float!
|
|
||||||
a: Float!
|
|
||||||
b: Float!
|
|
||||||
}
|
|
||||||
|
|
||||||
input SuggestPositionShotInputGQL {
|
|
||||||
cueBallId: Int!
|
|
||||||
targetBallId: Int!
|
|
||||||
pocket: PocketIdentifier!
|
|
||||||
targetArea: [[Float!]!]!
|
|
||||||
balls: [SimulationBallStateInputGQL!] = null
|
|
||||||
b64Image: String = null
|
|
||||||
useHomography: HomographyInputGQL = null
|
|
||||||
tableSize: Float = null
|
|
||||||
}
|
|
||||||
|
|
||||||
type GetShotsResult {
|
type GetShotsResult {
|
||||||
shots: [ShotGQL!]!
|
shots: [ShotGQL!]!
|
||||||
count: Int
|
count: Int
|
||||||
@@ -1488,9 +1285,7 @@ type StorageStatusGQL {
|
|||||||
lastCalculatedAt: DateTime
|
lastCalculatedAt: DateTime
|
||||||
}
|
}
|
||||||
|
|
||||||
"""
|
"""Integer value that can exceed GraphQL Int's 32-bit range."""
|
||||||
Integer value that can exceed GraphQL Int's 32-bit range.
|
|
||||||
"""
|
|
||||||
scalar BigInt
|
scalar BigInt
|
||||||
|
|
||||||
type UserPlayTimeGQL {
|
type UserPlayTimeGQL {
|
||||||
@@ -1561,34 +1356,14 @@ enum VideoExportStatusEnum {
|
|||||||
"""
|
"""
|
||||||
The `JSON` scalar type represents JSON values as specified by [ECMA-404](https://ecma-international.org/wp-content/uploads/ECMA-404_2nd_edition_december_2017.pdf).
|
The `JSON` scalar type represents JSON values as specified by [ECMA-404](https://ecma-international.org/wp-content/uploads/ECMA-404_2nd_edition_december_2017.pdf).
|
||||||
"""
|
"""
|
||||||
scalar JSON
|
scalar JSON @specifiedBy(url: "https://ecma-international.org/wp-content/uploads/ECMA-404_2nd_edition_december_2017.pdf")
|
||||||
@specifiedBy(
|
|
||||||
url: "https://ecma-international.org/wp-content/uploads/ECMA-404_2nd_edition_december_2017.pdf"
|
|
||||||
)
|
|
||||||
|
|
||||||
type Mutation {
|
type Mutation {
|
||||||
createBucketSet(params: CreateBucketSetInput!): BucketSetGQL!
|
createBucketSet(params: CreateBucketSetInput!): BucketSetGQL!
|
||||||
createRuleSet(name: String!, description: String = null): RuleSet!
|
createRuleSet(name: String!, description: String = null): RuleSet!
|
||||||
createChallenge(
|
createChallenge(name: String!, ruleSetId: ID!, minimumShots: Int!, startDate: DateTime!, endDate: DateTime!, description: String = null, requiredTableSize: Float = null, requiredPocketSize: Float = null, isPublic: Boolean! = false, maxAttempts: Int = null): Challenge!
|
||||||
name: String!
|
inviteUsersToChallenge(challengeId: ID!, userIds: [ID!]!): [ChallengeInvitation!]!
|
||||||
ruleSetId: ID!
|
respondToChallengeInvitation(invitationId: ID!, accept: Boolean!): ChallengeInvitation!
|
||||||
minimumShots: Int!
|
|
||||||
startDate: DateTime!
|
|
||||||
endDate: DateTime!
|
|
||||||
description: String = null
|
|
||||||
requiredTableSize: Float = null
|
|
||||||
requiredPocketSize: Float = null
|
|
||||||
isPublic: Boolean! = false
|
|
||||||
maxAttempts: Int = null
|
|
||||||
): Challenge!
|
|
||||||
inviteUsersToChallenge(
|
|
||||||
challengeId: ID!
|
|
||||||
userIds: [ID!]!
|
|
||||||
): [ChallengeInvitation!]!
|
|
||||||
respondToChallengeInvitation(
|
|
||||||
invitationId: ID!
|
|
||||||
accept: Boolean!
|
|
||||||
): ChallengeInvitation!
|
|
||||||
startChallenge(challengeId: ID!): ChallengeEntry!
|
startChallenge(challengeId: ID!): ChallengeEntry!
|
||||||
recalculateChallengeEntry(entryId: ID!): ChallengeEntry!
|
recalculateChallengeEntry(entryId: ID!): ChallengeEntry!
|
||||||
submitChallengeEntry(entryId: ID!, videoId: ID!): ChallengeEntry!
|
submitChallengeEntry(entryId: ID!, videoId: ID!): ChallengeEntry!
|
||||||
@@ -1596,61 +1371,30 @@ type Mutation {
|
|||||||
undismissChallenge(challengeId: ID!): Boolean!
|
undismissChallenge(challengeId: ID!): Boolean!
|
||||||
setLoggerLevel(path: String!, level: String!): Boolean!
|
setLoggerLevel(path: String!, level: String!): Boolean!
|
||||||
reactToVideo(videoId: Int!, reaction: ReactionEnum): Boolean!
|
reactToVideo(videoId: Int!, reaction: ReactionEnum): Boolean!
|
||||||
commentOnVideo(
|
commentOnVideo(videoId: Int!, message: String!, parentCommentId: Int): Boolean!
|
||||||
videoId: Int!
|
|
||||||
message: String!
|
|
||||||
parentCommentId: Int
|
|
||||||
): Boolean!
|
|
||||||
editComment(videoId: Int!, commentId: Int!, newMessage: String!): Boolean!
|
editComment(videoId: Int!, commentId: Int!, newMessage: String!): Boolean!
|
||||||
deleteComment(videoId: Int!, commentId: Int!): Boolean!
|
deleteComment(videoId: Int!, commentId: Int!): Boolean!
|
||||||
blockContent(videoId: Int!): Boolean!
|
blockContent(videoId: Int!): Boolean!
|
||||||
blockUser(userId: Int!): Boolean!
|
blockUser(userId: Int!): Boolean!
|
||||||
reportContent(
|
reportContent(videoId: Int!, reason: ReportReasonEnum!, customReason: String = null): Boolean!
|
||||||
videoId: Int!
|
|
||||||
reason: ReportReasonEnum!
|
|
||||||
customReason: String = null
|
|
||||||
): Boolean!
|
|
||||||
markNotificationAsRead(notificationId: Int!): Boolean!
|
markNotificationAsRead(notificationId: Int!): Boolean!
|
||||||
markAllNotificationsAsRead: Boolean!
|
markAllNotificationsAsRead: Boolean!
|
||||||
markNotificationsAsRead(notificationIds: [Int!]!): Boolean!
|
markNotificationsAsRead(notificationIds: [Int!]!): Boolean!
|
||||||
deleteNotification(notificationId: Int!): Boolean!
|
deleteNotification(notificationId: Int!): Boolean!
|
||||||
createPoolHall(input: CreatePoolHallInput!): PoolHall!
|
createPoolHall(input: CreatePoolHallInput!): PoolHall!
|
||||||
updatePoolHall(input: UpdatePoolHallInput!): PoolHall!
|
updatePoolHall(input: UpdatePoolHallInput!): PoolHall!
|
||||||
createPoolHallCamera(
|
createPoolHallCamera(input: CreatePoolHallCameraInput!): PoolHallCameraStreamCredentials!
|
||||||
input: CreatePoolHallCameraInput!
|
|
||||||
): PoolHallCameraStreamCredentials!
|
|
||||||
updatePoolHallCamera(input: UpdatePoolHallCameraInput!): PoolHallCamera!
|
updatePoolHallCamera(input: UpdatePoolHallCameraInput!): PoolHallCamera!
|
||||||
rotatePoolHallCameraStreamKey(cameraId: ID!): PoolHallCameraStreamCredentials!
|
rotatePoolHallCameraStreamKey(cameraId: ID!): PoolHallCameraStreamCredentials!
|
||||||
createCameraClaimSession(
|
createCameraClaimSession(cameraId: ID!, durationMinutes: Int = null, videoName: String = null, videoPrivate: Boolean = null, agreedTermsVersion: Int = null, tags: [VideoTagInput!] = null): CameraClaimSession!
|
||||||
cameraId: ID!
|
|
||||||
durationMinutes: Int = null
|
|
||||||
videoName: String = null
|
|
||||||
videoPrivate: Boolean = null
|
|
||||||
agreedTermsVersion: Int = null
|
|
||||||
tags: [VideoTagInput!] = null
|
|
||||||
): CameraClaimSession!
|
|
||||||
cancelCameraClaimSession(claimSessionId: ID!): CameraClaimSession!
|
cancelCameraClaimSession(claimSessionId: ID!): CameraClaimSession!
|
||||||
endCameraLease(leaseId: ID!): CameraLease!
|
endCameraLease(leaseId: ID!): CameraLease!
|
||||||
extendCameraLease(leaseId: ID!, additionalMinutes: Int! = 60): CameraLease!
|
extendCameraLease(leaseId: ID!, additionalMinutes: Int! = 60): CameraLease!
|
||||||
finalizePlayerAssignments(
|
finalizePlayerAssignments(input: FinalizePlayerAssignmentsInput!): [PlayerClusterGQL!]!
|
||||||
input: FinalizePlayerAssignmentsInput!
|
addAnnotationToShot(shotId: Int!, annotationName: String!, notes: String = null): AddShotAnnotationReturn!
|
||||||
): [PlayerClusterGQL!]!
|
updateShotAnnotations(shotId: Int!, annotations: [UpdateAnnotationInputGQL!]!): UpdateShotAnnotationReturn!
|
||||||
addAnnotationToShot(
|
editShot(shotId: Int!, fieldsToEdit: EditableShotFieldInputGQL!): EditShotReturn!
|
||||||
shotId: Int!
|
getProfileImageUploadLink(fileExt: String = ".png"): GetProfileUploadLinkReturn!
|
||||||
annotationName: String!
|
|
||||||
notes: String = null
|
|
||||||
): AddShotAnnotationReturn!
|
|
||||||
updateShotAnnotations(
|
|
||||||
shotId: Int!
|
|
||||||
annotations: [UpdateAnnotationInputGQL!]!
|
|
||||||
): UpdateShotAnnotationReturn!
|
|
||||||
editShot(
|
|
||||||
shotId: Int!
|
|
||||||
fieldsToEdit: EditableShotFieldInputGQL!
|
|
||||||
): EditShotReturn!
|
|
||||||
getProfileImageUploadLink(
|
|
||||||
fileExt: String = ".png"
|
|
||||||
): GetProfileUploadLinkReturn!
|
|
||||||
editProfileImageUri(profileImageUri: String!): UserGQL!
|
editProfileImageUri(profileImageUri: String!): UserGQL!
|
||||||
editUser(input: EditUserInputGQL!): UserGQL!
|
editUser(input: EditUserInputGQL!): UserGQL!
|
||||||
followUser(followedUserId: Int!): UserGQL!
|
followUser(followedUserId: Int!): UserGQL!
|
||||||
@@ -1658,39 +1402,20 @@ type Mutation {
|
|||||||
retireTags(tagIds: [Int!]!): Boolean!
|
retireTags(tagIds: [Int!]!): Boolean!
|
||||||
ensureStripeCustomerExists: UserGQL!
|
ensureStripeCustomerExists: UserGQL!
|
||||||
deleteUser: Boolean!
|
deleteUser: Boolean!
|
||||||
syncAppleSubscription(
|
syncAppleSubscription(input: SyncAppleSubscriptionInputGQL!): SyncAppleSubscriptionResultGQL!
|
||||||
input: SyncAppleSubscriptionInputGQL!
|
|
||||||
): SyncAppleSubscriptionResultGQL!
|
|
||||||
createSubscription(priceId: String!): CreateSubscriptionResultGQL!
|
createSubscription(priceId: String!): CreateSubscriptionResultGQL!
|
||||||
createCustomerPortalSession: CreateCustomerPortalSessionResultGQL!
|
createCustomerPortalSession: CreateCustomerPortalSessionResultGQL!
|
||||||
cancelSubscription: UserSubscriptionStatusGQL!
|
cancelSubscription: UserSubscriptionStatusGQL!
|
||||||
grantManualEntitlement(
|
grantManualEntitlement(userId: Int!, tierName: String! = "pro", startsAt: DateTime = null, endsAt: DateTime = null, reason: String = null): UserSubscriptionStatusGQL!
|
||||||
userId: Int!
|
|
||||||
tierName: String! = "pro"
|
|
||||||
startsAt: DateTime = null
|
|
||||||
endsAt: DateTime = null
|
|
||||||
reason: String = null
|
|
||||||
): UserSubscriptionStatusGQL!
|
|
||||||
revokeManualEntitlement(userId: Int!): UserSubscriptionStatusGQL!
|
revokeManualEntitlement(userId: Int!): UserSubscriptionStatusGQL!
|
||||||
submitCancellationFeedback(
|
submitCancellationFeedback(reasons: [CancellationReasonEnum!] = null, feedback: String = null, metadata: CancellationFeedbackMetadataInput = null): Boolean!
|
||||||
reasons: [CancellationReasonEnum!] = null
|
|
||||||
feedback: String = null
|
|
||||||
metadata: CancellationFeedbackMetadataInput = null
|
|
||||||
): Boolean!
|
|
||||||
requestVideoExport(input: RequestVideoExportInput!): VideoExportJobGQL!
|
requestVideoExport(input: RequestVideoExportInput!): VideoExportJobGQL!
|
||||||
dismissVideoExport(jobId: Int!): Boolean!
|
dismissVideoExport(jobId: Int!): Boolean!
|
||||||
findPrerecordTableLayout(b64Image: String!, videoId: Int!): HomographyInfoGQL
|
findPrerecordTableLayout(b64Image: String!, videoId: Int!): HomographyInfoGQL
|
||||||
createUploadStream(
|
createUploadStream(videoMetadata: VideoMetadataInput!, expectedDurationSeconds: Float = null): CreateUploadStreamReturn!
|
||||||
videoMetadata: VideoMetadataInput!
|
|
||||||
expectedDurationSeconds: Float = null
|
|
||||||
): CreateUploadStreamReturn!
|
|
||||||
getUploadLink(videoId: Int!, segmentIndex: Int!): GetUploadLinkReturn!
|
getUploadLink(videoId: Int!, segmentIndex: Int!): GetUploadLinkReturn!
|
||||||
getHlsInitUploadLink(videoId: Int!): GetUploadLinkReturn!
|
getHlsInitUploadLink(videoId: Int!): GetUploadLinkReturn!
|
||||||
setSegmentDuration(
|
setSegmentDuration(videoId: Int!, segmentIndex: Int!, duration: Float!): Boolean!
|
||||||
videoId: Int!
|
|
||||||
segmentIndex: Int!
|
|
||||||
duration: Float!
|
|
||||||
): Boolean!
|
|
||||||
editUploadStream(videoId: Int!, videoMetadata: VideoMetadataInput!): Boolean!
|
editUploadStream(videoId: Int!, videoMetadata: VideoMetadataInput!): Boolean!
|
||||||
deleteVideo(videoId: Int!): Boolean!
|
deleteVideo(videoId: Int!): Boolean!
|
||||||
deleteTags(videoId: Int!, tagsToDelete: [VideoTagInput!]!): Boolean!
|
deleteTags(videoId: Int!, tagsToDelete: [VideoTagInput!]!): Boolean!
|
||||||
@@ -1782,9 +1507,7 @@ type AddShotAnnotationReturn {
|
|||||||
value: SuccessfulAddAddShotAnnotationErrors!
|
value: SuccessfulAddAddShotAnnotationErrors!
|
||||||
}
|
}
|
||||||
|
|
||||||
union SuccessfulAddAddShotAnnotationErrors =
|
union SuccessfulAddAddShotAnnotationErrors = SuccessfulAdd | AddShotAnnotationErrors
|
||||||
SuccessfulAdd
|
|
||||||
| AddShotAnnotationErrors
|
|
||||||
|
|
||||||
type SuccessfulAdd {
|
type SuccessfulAdd {
|
||||||
value: Boolean!
|
value: Boolean!
|
||||||
@@ -1794,9 +1517,7 @@ type AddShotAnnotationErrors {
|
|||||||
error: DoesNotOwnShotErrOtherErrorNeedsNote!
|
error: DoesNotOwnShotErrOtherErrorNeedsNote!
|
||||||
}
|
}
|
||||||
|
|
||||||
union DoesNotOwnShotErrOtherErrorNeedsNote =
|
union DoesNotOwnShotErrOtherErrorNeedsNote = DoesNotOwnShotErr | OtherErrorNeedsNote
|
||||||
DoesNotOwnShotErr
|
|
||||||
| OtherErrorNeedsNote
|
|
||||||
|
|
||||||
type DoesNotOwnShotErr {
|
type DoesNotOwnShotErr {
|
||||||
shotId: Int!
|
shotId: Int!
|
||||||
@@ -1837,9 +1558,7 @@ type GetProfileUploadLinkReturn {
|
|||||||
value: UploadLinkGetProfileUploadLinkErrors!
|
value: UploadLinkGetProfileUploadLinkErrors!
|
||||||
}
|
}
|
||||||
|
|
||||||
union UploadLinkGetProfileUploadLinkErrors =
|
union UploadLinkGetProfileUploadLinkErrors = UploadLink | GetProfileUploadLinkErrors
|
||||||
UploadLink
|
|
||||||
| GetProfileUploadLinkErrors
|
|
||||||
|
|
||||||
type UploadLink {
|
type UploadLink {
|
||||||
uploadUrl: String!
|
uploadUrl: String!
|
||||||
@@ -1926,12 +1645,9 @@ input VideoMetadataInput {
|
|||||||
videoName: String = null
|
videoName: String = null
|
||||||
startTime: DateTime = null
|
startTime: DateTime = null
|
||||||
endTime: DateTime = null
|
endTime: DateTime = null
|
||||||
gameType: String = null
|
gameType: String = null @deprecated(reason: "`game_type` is deprecated. Use `tags` instead.")
|
||||||
@deprecated(reason: "`game_type` is deprecated. Use `tags` instead.")
|
|
||||||
|
|
||||||
"""
|
"""A list of tags associated with the video. Replace `game_type`"""
|
||||||
A list of tags associated with the video. Replace `game_type`
|
|
||||||
"""
|
|
||||||
tags: [VideoTagInput!] = null
|
tags: [VideoTagInput!] = null
|
||||||
tableSize: Float = null
|
tableSize: Float = null
|
||||||
pocketSize: Float = null
|
pocketSize: Float = null
|
||||||
@@ -1942,7 +1658,6 @@ input VideoMetadataInput {
|
|||||||
clientUploadStatus: ClientUploadStatusEnum = null
|
clientUploadStatus: ClientUploadStatusEnum = null
|
||||||
resolution: VideoResolution = null
|
resolution: VideoResolution = null
|
||||||
framesPerSecond: Float = null
|
framesPerSecond: Float = null
|
||||||
homographyBackend: HomographyBackendGQL = null
|
|
||||||
}
|
}
|
||||||
|
|
||||||
input VideoResolution {
|
input VideoResolution {
|
||||||
@@ -1950,11 +1665,6 @@ input VideoResolution {
|
|||||||
height: Int!
|
height: Int!
|
||||||
}
|
}
|
||||||
|
|
||||||
enum HomographyBackendGQL {
|
|
||||||
CLASSIC
|
|
||||||
TABLENET
|
|
||||||
}
|
|
||||||
|
|
||||||
type GetUploadLinkReturn {
|
type GetUploadLinkReturn {
|
||||||
value: UploadLinkGetUploadLinkErrors!
|
value: UploadLinkGetUploadLinkErrors!
|
||||||
stream: UploadStreamGQL
|
stream: UploadStreamGQL
|
||||||
@@ -1966,15 +1676,7 @@ type GetUploadLinkErrors {
|
|||||||
error: MustHaveSetForUploadLinkErrSegmentAlreadyUploadedErrProcessingFailedErrNoInitForChunkedUploadErrTooManyProfileImageUploadsErrInitUploadAlreadyCompletedErrTooManyInitUploadsErrStorageLimitExceededErr!
|
error: MustHaveSetForUploadLinkErrSegmentAlreadyUploadedErrProcessingFailedErrNoInitForChunkedUploadErrTooManyProfileImageUploadsErrInitUploadAlreadyCompletedErrTooManyInitUploadsErrStorageLimitExceededErr!
|
||||||
}
|
}
|
||||||
|
|
||||||
union MustHaveSetForUploadLinkErrSegmentAlreadyUploadedErrProcessingFailedErrNoInitForChunkedUploadErrTooManyProfileImageUploadsErrInitUploadAlreadyCompletedErrTooManyInitUploadsErrStorageLimitExceededErr =
|
union MustHaveSetForUploadLinkErrSegmentAlreadyUploadedErrProcessingFailedErrNoInitForChunkedUploadErrTooManyProfileImageUploadsErrInitUploadAlreadyCompletedErrTooManyInitUploadsErrStorageLimitExceededErr = MustHaveSetForUploadLinkErr | SegmentAlreadyUploadedErr | ProcessingFailedErr | NoInitForChunkedUploadErr | TooManyProfileImageUploadsErr | InitUploadAlreadyCompletedErr | TooManyInitUploadsErr | StorageLimitExceededErr
|
||||||
MustHaveSetForUploadLinkErr
|
|
||||||
| SegmentAlreadyUploadedErr
|
|
||||||
| ProcessingFailedErr
|
|
||||||
| NoInitForChunkedUploadErr
|
|
||||||
| TooManyProfileImageUploadsErr
|
|
||||||
| InitUploadAlreadyCompletedErr
|
|
||||||
| TooManyInitUploadsErr
|
|
||||||
| StorageLimitExceededErr
|
|
||||||
|
|
||||||
type MustHaveSetForUploadLinkErr {
|
type MustHaveSetForUploadLinkErr {
|
||||||
resolution: Boolean
|
resolution: Boolean
|
||||||
|
|||||||
Reference in New Issue
Block a user