Compare commits
4 Commits
f42579076e
...
dean/playe
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9250e4c639 | ||
|
|
5cf2dbaf01 | ||
| 239a143554 | |||
|
|
296522afb8 |
@@ -2701,9 +2701,11 @@ export type PlayerClusterGql = {
|
|||||||
clusterId: Scalars["Int"]["output"];
|
clusterId: Scalars["Int"]["output"];
|
||||||
confirmed: Scalars["Boolean"]["output"];
|
confirmed: Scalars["Boolean"]["output"];
|
||||||
nShots: Scalars["Int"]["output"];
|
nShots: Scalars["Int"]["output"];
|
||||||
|
profileImageUri?: Maybe<Scalars["String"]["output"]>;
|
||||||
score?: Maybe<Scalars["Int"]["output"]>;
|
score?: Maybe<Scalars["Int"]["output"]>;
|
||||||
shots: Array<PlayerClusterShotGql>;
|
shots: Array<PlayerClusterShotGql>;
|
||||||
userId?: Maybe<Scalars["Int"]["output"]>;
|
userId?: Maybe<Scalars["Int"]["output"]>;
|
||||||
|
username?: Maybe<Scalars["String"]["output"]>;
|
||||||
videoId: Scalars["Int"]["output"];
|
videoId: Scalars["Int"]["output"];
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -2722,7 +2724,10 @@ export type PlayerClusterShotGql = {
|
|||||||
|
|
||||||
export type PlayerSummaryGql = {
|
export type PlayerSummaryGql = {
|
||||||
__typename?: "PlayerSummaryGQL";
|
__typename?: "PlayerSummaryGQL";
|
||||||
|
averageDifficulty?: Maybe<Scalars["Float"]["output"]>;
|
||||||
|
averageTimeBetweenShots?: Maybe<Scalars["Float"]["output"]>;
|
||||||
clusterId: Scalars["Int"]["output"];
|
clusterId: Scalars["Int"]["output"];
|
||||||
|
longestRun: Scalars["Int"]["output"];
|
||||||
makePercentage: Scalars["Float"]["output"];
|
makePercentage: Scalars["Float"]["output"];
|
||||||
profileImageUri?: Maybe<Scalars["String"]["output"]>;
|
profileImageUri?: Maybe<Scalars["String"]["output"]>;
|
||||||
representativeFullFrameUrl?: Maybe<Scalars["String"]["output"]>;
|
representativeFullFrameUrl?: Maybe<Scalars["String"]["output"]>;
|
||||||
@@ -4206,6 +4211,9 @@ export type GetFeedQuery = {
|
|||||||
totalShotsMade: number;
|
totalShotsMade: number;
|
||||||
makePercentage: number;
|
makePercentage: number;
|
||||||
score?: number | null;
|
score?: number | null;
|
||||||
|
longestRun: number;
|
||||||
|
averageDifficulty?: number | null;
|
||||||
|
averageTimeBetweenShots?: number | null;
|
||||||
}>;
|
}>;
|
||||||
currentProcessing?: {
|
currentProcessing?: {
|
||||||
__typename?: "VideoProcessingGQL";
|
__typename?: "VideoProcessingGQL";
|
||||||
@@ -4307,6 +4315,9 @@ export type VideoCardFieldsFragment = {
|
|||||||
totalShotsMade: number;
|
totalShotsMade: number;
|
||||||
makePercentage: number;
|
makePercentage: number;
|
||||||
score?: number | null;
|
score?: number | null;
|
||||||
|
longestRun: number;
|
||||||
|
averageDifficulty?: number | null;
|
||||||
|
averageTimeBetweenShots?: number | null;
|
||||||
}>;
|
}>;
|
||||||
currentProcessing?: {
|
currentProcessing?: {
|
||||||
__typename?: "VideoProcessingGQL";
|
__typename?: "VideoProcessingGQL";
|
||||||
@@ -4422,6 +4433,9 @@ export type GetVideoFeedQuery = {
|
|||||||
totalShotsMade: number;
|
totalShotsMade: number;
|
||||||
makePercentage: number;
|
makePercentage: number;
|
||||||
score?: number | null;
|
score?: number | null;
|
||||||
|
longestRun: number;
|
||||||
|
averageDifficulty?: number | null;
|
||||||
|
averageTimeBetweenShots?: number | null;
|
||||||
}>;
|
}>;
|
||||||
currentProcessing?: {
|
currentProcessing?: {
|
||||||
__typename?: "VideoProcessingGQL";
|
__typename?: "VideoProcessingGQL";
|
||||||
@@ -5004,6 +5018,9 @@ export type PlayerSummaryFieldsFragment = {
|
|||||||
totalShotsMade: number;
|
totalShotsMade: number;
|
||||||
makePercentage: number;
|
makePercentage: number;
|
||||||
score?: number | null;
|
score?: number | null;
|
||||||
|
longestRun: number;
|
||||||
|
averageDifficulty?: number | null;
|
||||||
|
averageTimeBetweenShots?: number | null;
|
||||||
};
|
};
|
||||||
|
|
||||||
export type PlayerClusterShotFieldsFragment = {
|
export type PlayerClusterShotFieldsFragment = {
|
||||||
@@ -5025,6 +5042,8 @@ export type PlayerClusterFieldsFragment = {
|
|||||||
clusterId: number;
|
clusterId: number;
|
||||||
nShots: number;
|
nShots: number;
|
||||||
userId?: number | null;
|
userId?: number | null;
|
||||||
|
username?: string | null;
|
||||||
|
profileImageUri?: string | null;
|
||||||
confirmed: boolean;
|
confirmed: boolean;
|
||||||
score?: number | null;
|
score?: number | null;
|
||||||
shots: Array<{
|
shots: Array<{
|
||||||
@@ -5053,6 +5072,8 @@ export type VideoPlayerClustersQuery = {
|
|||||||
clusterId: number;
|
clusterId: number;
|
||||||
nShots: number;
|
nShots: number;
|
||||||
userId?: number | null;
|
userId?: number | null;
|
||||||
|
username?: string | null;
|
||||||
|
profileImageUri?: string | null;
|
||||||
confirmed: boolean;
|
confirmed: boolean;
|
||||||
score?: number | null;
|
score?: number | null;
|
||||||
shots: Array<{
|
shots: Array<{
|
||||||
@@ -5082,6 +5103,8 @@ export type FinalizePlayerAssignmentsMutation = {
|
|||||||
clusterId: number;
|
clusterId: number;
|
||||||
nShots: number;
|
nShots: number;
|
||||||
userId?: number | null;
|
userId?: number | null;
|
||||||
|
username?: string | null;
|
||||||
|
profileImageUri?: string | null;
|
||||||
confirmed: boolean;
|
confirmed: boolean;
|
||||||
score?: number | null;
|
score?: number | null;
|
||||||
shots: Array<{
|
shots: Array<{
|
||||||
@@ -6046,6 +6069,9 @@ export type GetVideoDetailsQuery = {
|
|||||||
totalShotsMade: number;
|
totalShotsMade: number;
|
||||||
makePercentage: number;
|
makePercentage: number;
|
||||||
score?: number | null;
|
score?: number | null;
|
||||||
|
longestRun: number;
|
||||||
|
averageDifficulty?: number | null;
|
||||||
|
averageTimeBetweenShots?: number | null;
|
||||||
}>;
|
}>;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
@@ -6715,6 +6741,9 @@ export const PlayerSummaryFieldsFragmentDoc = gql`
|
|||||||
totalShotsMade
|
totalShotsMade
|
||||||
makePercentage
|
makePercentage
|
||||||
score
|
score
|
||||||
|
longestRun
|
||||||
|
averageDifficulty
|
||||||
|
averageTimeBetweenShots
|
||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
export const UserSocialsFieldsFragmentDoc = gql`
|
export const UserSocialsFieldsFragmentDoc = gql`
|
||||||
@@ -6853,6 +6882,8 @@ export const PlayerClusterFieldsFragmentDoc = gql`
|
|||||||
clusterId
|
clusterId
|
||||||
nShots
|
nShots
|
||||||
userId
|
userId
|
||||||
|
username
|
||||||
|
profileImageUri
|
||||||
confirmed
|
confirmed
|
||||||
score
|
score
|
||||||
shots {
|
shots {
|
||||||
|
|||||||
@@ -8,6 +8,9 @@ fragment PlayerSummaryFields on PlayerSummaryGQL {
|
|||||||
totalShotsMade
|
totalShotsMade
|
||||||
makePercentage
|
makePercentage
|
||||||
score
|
score
|
||||||
|
longestRun
|
||||||
|
averageDifficulty
|
||||||
|
averageTimeBetweenShots
|
||||||
}
|
}
|
||||||
|
|
||||||
fragment PlayerClusterShotFields on PlayerClusterShotGQL {
|
fragment PlayerClusterShotFields on PlayerClusterShotGQL {
|
||||||
@@ -27,6 +30,8 @@ fragment PlayerClusterFields on PlayerClusterGQL {
|
|||||||
clusterId
|
clusterId
|
||||||
nShots
|
nShots
|
||||||
userId
|
userId
|
||||||
|
username
|
||||||
|
profileImageUri
|
||||||
confirmed
|
confirmed
|
||||||
score
|
score
|
||||||
shots {
|
shots {
|
||||||
|
|||||||
@@ -676,6 +676,9 @@ type PlayerSummaryGQL {
|
|||||||
totalShotsMade: Int!
|
totalShotsMade: Int!
|
||||||
makePercentage: Float!
|
makePercentage: Float!
|
||||||
score: Int
|
score: Int
|
||||||
|
longestRun: Int!
|
||||||
|
averageDifficulty: Float
|
||||||
|
averageTimeBetweenShots: Float
|
||||||
}
|
}
|
||||||
|
|
||||||
type DeployedConfigGQL {
|
type DeployedConfigGQL {
|
||||||
@@ -879,6 +882,8 @@ type PlayerClusterGQL {
|
|||||||
clusterId: Int!
|
clusterId: Int!
|
||||||
nShots: Int!
|
nShots: Int!
|
||||||
userId: Int
|
userId: Int
|
||||||
|
username: String
|
||||||
|
profileImageUri: String
|
||||||
confirmed: Boolean!
|
confirmed: Boolean!
|
||||||
score: Int
|
score: Int
|
||||||
shots: [PlayerClusterShotGQL!]!
|
shots: [PlayerClusterShotGQL!]!
|
||||||
|
|||||||
Reference in New Issue
Block a user