Compare commits
8 Commits
dean/add-a
...
dean/add-f
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5fbc134c42 | ||
| f67288d387 | |||
|
|
71425a22a6 | ||
| 47339caa74 | |||
| 3c8be1d647 | |||
| 09267529cd | |||
| 2b48ec48d5 | |||
|
|
93bf341c0f |
103
src/index.tsx
103
src/index.tsx
@@ -3535,6 +3535,7 @@ export type GetAggregatedShotMetricsQuery = {
|
|||||||
__typename?: "TargetMetricsGQL";
|
__typename?: "TargetMetricsGQL";
|
||||||
count: number;
|
count: number;
|
||||||
makePercentage?: number | null;
|
makePercentage?: number | null;
|
||||||
|
averageDifficulty?: number | null;
|
||||||
};
|
};
|
||||||
}>;
|
}>;
|
||||||
};
|
};
|
||||||
@@ -4017,6 +4018,7 @@ export type GetFeedQuery = {
|
|||||||
private: boolean;
|
private: boolean;
|
||||||
elapsedTime?: number | null;
|
elapsedTime?: number | null;
|
||||||
tableSize: number;
|
tableSize: number;
|
||||||
|
pocketSize?: number | null;
|
||||||
owner?: {
|
owner?: {
|
||||||
__typename?: "UserGQL";
|
__typename?: "UserGQL";
|
||||||
id: number;
|
id: number;
|
||||||
@@ -4118,6 +4120,7 @@ export type VideoCardFieldsFragment = {
|
|||||||
private: boolean;
|
private: boolean;
|
||||||
elapsedTime?: number | null;
|
elapsedTime?: number | null;
|
||||||
tableSize: number;
|
tableSize: number;
|
||||||
|
pocketSize?: number | null;
|
||||||
owner?: {
|
owner?: {
|
||||||
__typename?: "UserGQL";
|
__typename?: "UserGQL";
|
||||||
id: number;
|
id: number;
|
||||||
@@ -4215,6 +4218,7 @@ export type GetVideoFeedQuery = {
|
|||||||
private: boolean;
|
private: boolean;
|
||||||
elapsedTime?: number | null;
|
elapsedTime?: number | null;
|
||||||
tableSize: number;
|
tableSize: number;
|
||||||
|
pocketSize?: number | null;
|
||||||
owner?: {
|
owner?: {
|
||||||
__typename?: "UserGQL";
|
__typename?: "UserGQL";
|
||||||
id: number;
|
id: number;
|
||||||
@@ -5383,6 +5387,8 @@ export type GetUserQuery = {
|
|||||||
updatedAt?: any | null;
|
updatedAt?: any | null;
|
||||||
videosPrivateByDefault?: boolean | null;
|
videosPrivateByDefault?: boolean | null;
|
||||||
agreesToMarketing?: boolean | null;
|
agreesToMarketing?: boolean | null;
|
||||||
|
following?: Array<{ __typename?: "UserGQL"; id: number }> | null;
|
||||||
|
followers?: Array<{ __typename?: "UserGQL"; id: number }> | null;
|
||||||
} | null;
|
} | null;
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -5682,6 +5688,7 @@ export type GetVideoDetailsQuery = {
|
|||||||
endTime?: any | null;
|
endTime?: any | null;
|
||||||
makePercentage: number;
|
makePercentage: number;
|
||||||
medianRun?: number | null;
|
medianRun?: number | null;
|
||||||
|
averageDifficulty?: number | null;
|
||||||
startTime?: any | null;
|
startTime?: any | null;
|
||||||
totalShots: number;
|
totalShots: number;
|
||||||
totalShotsMade: number;
|
totalShotsMade: number;
|
||||||
@@ -5947,6 +5954,19 @@ export type GetMedianRunForVideoQuery = {
|
|||||||
getVideo: { __typename?: "VideoGQL"; id: number; medianRun?: number | null };
|
getVideo: { __typename?: "VideoGQL"; id: number; medianRun?: number | null };
|
||||||
};
|
};
|
||||||
|
|
||||||
|
export type GetAverageDifficultyForVideoQueryVariables = Exact<{
|
||||||
|
videoId: Scalars["Int"]["input"];
|
||||||
|
}>;
|
||||||
|
|
||||||
|
export type GetAverageDifficultyForVideoQuery = {
|
||||||
|
__typename?: "Query";
|
||||||
|
getVideo: {
|
||||||
|
__typename?: "VideoGQL";
|
||||||
|
id: number;
|
||||||
|
averageDifficulty?: number | null;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
export type StreamWithEndFramesFragment = {
|
export type StreamWithEndFramesFragment = {
|
||||||
__typename?: "UploadStreamGQL";
|
__typename?: "UploadStreamGQL";
|
||||||
id: string;
|
id: string;
|
||||||
@@ -6382,6 +6402,7 @@ export const VideoCardFieldsFragmentDoc = gql`
|
|||||||
streamSegmentType
|
streamSegmentType
|
||||||
}
|
}
|
||||||
tableSize
|
tableSize
|
||||||
|
pocketSize
|
||||||
tags {
|
tags {
|
||||||
tagClasses {
|
tagClasses {
|
||||||
name
|
name
|
||||||
@@ -6689,6 +6710,7 @@ export const GetAggregatedShotMetricsDocument = gql`
|
|||||||
targetMetrics {
|
targetMetrics {
|
||||||
count
|
count
|
||||||
makePercentage
|
makePercentage
|
||||||
|
averageDifficulty
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -10874,6 +10896,12 @@ export const GetUserDocument = gql`
|
|||||||
query GetUser($userId: Int!) {
|
query GetUser($userId: Int!) {
|
||||||
getUser(userId: $userId) {
|
getUser(userId: $userId) {
|
||||||
...UserFragment
|
...UserFragment
|
||||||
|
following {
|
||||||
|
id
|
||||||
|
}
|
||||||
|
followers {
|
||||||
|
id
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
${UserFragmentFragmentDoc}
|
${UserFragmentFragmentDoc}
|
||||||
@@ -11953,6 +11981,7 @@ export const GetVideoDetailsDocument = gql`
|
|||||||
endTime
|
endTime
|
||||||
makePercentage
|
makePercentage
|
||||||
medianRun
|
medianRun
|
||||||
|
averageDifficulty
|
||||||
startTime
|
startTime
|
||||||
totalShots
|
totalShots
|
||||||
totalShotsMade
|
totalShotsMade
|
||||||
@@ -12606,6 +12635,80 @@ export type GetMedianRunForVideoQueryResult = Apollo.QueryResult<
|
|||||||
GetMedianRunForVideoQuery,
|
GetMedianRunForVideoQuery,
|
||||||
GetMedianRunForVideoQueryVariables
|
GetMedianRunForVideoQueryVariables
|
||||||
>;
|
>;
|
||||||
|
export const GetAverageDifficultyForVideoDocument = gql`
|
||||||
|
query GetAverageDifficultyForVideo($videoId: Int!) {
|
||||||
|
getVideo(videoId: $videoId) {
|
||||||
|
id
|
||||||
|
averageDifficulty
|
||||||
|
}
|
||||||
|
}
|
||||||
|
`;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* __useGetAverageDifficultyForVideoQuery__
|
||||||
|
*
|
||||||
|
* To run a query within a React component, call `useGetAverageDifficultyForVideoQuery` and pass it any options that fit your needs.
|
||||||
|
* When your component renders, `useGetAverageDifficultyForVideoQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
||||||
|
* you can use to render your UI.
|
||||||
|
*
|
||||||
|
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
||||||
|
*
|
||||||
|
* @example
|
||||||
|
* const { data, loading, error } = useGetAverageDifficultyForVideoQuery({
|
||||||
|
* variables: {
|
||||||
|
* videoId: // value for 'videoId'
|
||||||
|
* },
|
||||||
|
* });
|
||||||
|
*/
|
||||||
|
export function useGetAverageDifficultyForVideoQuery(
|
||||||
|
baseOptions: Apollo.QueryHookOptions<
|
||||||
|
GetAverageDifficultyForVideoQuery,
|
||||||
|
GetAverageDifficultyForVideoQueryVariables
|
||||||
|
>,
|
||||||
|
) {
|
||||||
|
const options = { ...defaultOptions, ...baseOptions };
|
||||||
|
return Apollo.useQuery<
|
||||||
|
GetAverageDifficultyForVideoQuery,
|
||||||
|
GetAverageDifficultyForVideoQueryVariables
|
||||||
|
>(GetAverageDifficultyForVideoDocument, options);
|
||||||
|
}
|
||||||
|
export function useGetAverageDifficultyForVideoLazyQuery(
|
||||||
|
baseOptions?: Apollo.LazyQueryHookOptions<
|
||||||
|
GetAverageDifficultyForVideoQuery,
|
||||||
|
GetAverageDifficultyForVideoQueryVariables
|
||||||
|
>,
|
||||||
|
) {
|
||||||
|
const options = { ...defaultOptions, ...baseOptions };
|
||||||
|
return Apollo.useLazyQuery<
|
||||||
|
GetAverageDifficultyForVideoQuery,
|
||||||
|
GetAverageDifficultyForVideoQueryVariables
|
||||||
|
>(GetAverageDifficultyForVideoDocument, options);
|
||||||
|
}
|
||||||
|
export function useGetAverageDifficultyForVideoSuspenseQuery(
|
||||||
|
baseOptions?: Apollo.SuspenseQueryHookOptions<
|
||||||
|
GetAverageDifficultyForVideoQuery,
|
||||||
|
GetAverageDifficultyForVideoQueryVariables
|
||||||
|
>,
|
||||||
|
) {
|
||||||
|
const options = { ...defaultOptions, ...baseOptions };
|
||||||
|
return Apollo.useSuspenseQuery<
|
||||||
|
GetAverageDifficultyForVideoQuery,
|
||||||
|
GetAverageDifficultyForVideoQueryVariables
|
||||||
|
>(GetAverageDifficultyForVideoDocument, options);
|
||||||
|
}
|
||||||
|
export type GetAverageDifficultyForVideoQueryHookResult = ReturnType<
|
||||||
|
typeof useGetAverageDifficultyForVideoQuery
|
||||||
|
>;
|
||||||
|
export type GetAverageDifficultyForVideoLazyQueryHookResult = ReturnType<
|
||||||
|
typeof useGetAverageDifficultyForVideoLazyQuery
|
||||||
|
>;
|
||||||
|
export type GetAverageDifficultyForVideoSuspenseQueryHookResult = ReturnType<
|
||||||
|
typeof useGetAverageDifficultyForVideoSuspenseQuery
|
||||||
|
>;
|
||||||
|
export type GetAverageDifficultyForVideoQueryResult = Apollo.QueryResult<
|
||||||
|
GetAverageDifficultyForVideoQuery,
|
||||||
|
GetAverageDifficultyForVideoQueryVariables
|
||||||
|
>;
|
||||||
export const GetVideoForClipTimesDocument = gql`
|
export const GetVideoForClipTimesDocument = gql`
|
||||||
query GetVideoForClipTimes($videoId: Int!) {
|
query GetVideoForClipTimes($videoId: Int!) {
|
||||||
getVideo(videoId: $videoId) {
|
getVideo(videoId: $videoId) {
|
||||||
|
|||||||
@@ -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
|
||||||
@@ -211,6 +212,13 @@ query GetMedianRunForVideo($videoId: Int!) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
query GetAverageDifficultyForVideo($videoId: Int!) {
|
||||||
|
getVideo(videoId: $videoId) {
|
||||||
|
id
|
||||||
|
averageDifficulty
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
fragment StreamWithEndFrames on UploadStreamGQL {
|
fragment StreamWithEndFrames on UploadStreamGQL {
|
||||||
id
|
id
|
||||||
streamSegmentType
|
streamSegmentType
|
||||||
|
|||||||
Reference in New Issue
Block a user