Add pull to refresh to video details page

Fixes #169
Fixes #363
This commit is contained in:
2024-04-09 20:52:37 +00:00
parent a1581379fd
commit 7d252d3cc8
2 changed files with 164 additions and 0 deletions

View File

@@ -71,3 +71,34 @@ query GetVideoUpdatePageDetails($videoId: Int!) {
mutation DeleteVideo($videoId: Int!) {
deleteVideo(videoId: $videoId)
}
query GetVideoDetails($videoId: Int!) {
getVideo(videoId: $videoId) {
id
name
averageTimeBetweenShots
elapsedTime
endTime
makePercentage
makePercentage
medianRun
startTime
totalShots
totalShots
totalShotsMade
createdAt
updatedAt
owner {
id
firebaseUid
username
profileImageUri
}
tags {
tagClasses {
name
}
name
}
}
}