Compare commits
8 Commits
dean/add-a
...
dean/add-f
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5fbc134c42 | ||
| f67288d387 | |||
|
|
71425a22a6 | ||
| 47339caa74 | |||
| 3c8be1d647 | |||
| 09267529cd | |||
| 2b48ec48d5 | |||
|
|
93bf341c0f |
10786
src/index.tsx
10786
src/index.tsx
File diff suppressed because it is too large
Load Diff
@@ -7,6 +7,7 @@ query GetAggregatedShotMetrics($aggregateInput: AggregateInputGQL!) {
|
|||||||
targetMetrics {
|
targetMetrics {
|
||||||
count
|
count
|
||||||
makePercentage
|
makePercentage
|
||||||
|
averageDifficulty
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -50,6 +50,7 @@ fragment VideoCardFields on VideoGQL {
|
|||||||
streamSegmentType
|
streamSegmentType
|
||||||
}
|
}
|
||||||
tableSize
|
tableSize
|
||||||
|
pocketSize
|
||||||
tags {
|
tags {
|
||||||
tagClasses {
|
tagClasses {
|
||||||
name
|
name
|
||||||
|
|||||||
@@ -34,6 +34,12 @@ query getLoggedInUser {
|
|||||||
query GetUser($userId: Int!) {
|
query GetUser($userId: Int!) {
|
||||||
getUser(userId: $userId) {
|
getUser(userId: $userId) {
|
||||||
...UserFragment
|
...UserFragment
|
||||||
|
following {
|
||||||
|
id
|
||||||
|
}
|
||||||
|
followers {
|
||||||
|
id
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -61,6 +61,7 @@ query GetVideoDetails($videoId: Int!) {
|
|||||||
endTime
|
endTime
|
||||||
makePercentage
|
makePercentage
|
||||||
medianRun
|
medianRun
|
||||||
|
averageDifficulty
|
||||||
startTime
|
startTime
|
||||||
totalShots
|
totalShots
|
||||||
totalShotsMade
|
totalShotsMade
|
||||||
|
|||||||
Reference in New Issue
Block a user