Compare commits
6 Commits
47339caa74
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
| ced1b153de | |||
| 425a8ec103 | |||
| 04f408ab5d | |||
|
|
5fbc134c42 | ||
| f67288d387 | |||
|
|
71425a22a6 |
5423
package-lock.json
generated
5423
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -5387,6 +5387,8 @@ export type GetUserQuery = {
|
||||
updatedAt?: any | null;
|
||||
videosPrivateByDefault?: boolean | null;
|
||||
agreesToMarketing?: boolean | null;
|
||||
following?: Array<{ __typename?: "UserGQL"; id: number }> | null;
|
||||
followers?: Array<{ __typename?: "UserGQL"; id: number }> | null;
|
||||
} | null;
|
||||
};
|
||||
|
||||
@@ -5686,6 +5688,7 @@ export type GetVideoDetailsQuery = {
|
||||
endTime?: any | null;
|
||||
makePercentage: number;
|
||||
medianRun?: number | null;
|
||||
averageDifficulty?: number | null;
|
||||
startTime?: any | null;
|
||||
totalShots: number;
|
||||
totalShotsMade: number;
|
||||
@@ -5951,6 +5954,19 @@ export type GetMedianRunForVideoQuery = {
|
||||
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 = {
|
||||
__typename?: "UploadStreamGQL";
|
||||
id: string;
|
||||
@@ -10880,6 +10896,12 @@ export const GetUserDocument = gql`
|
||||
query GetUser($userId: Int!) {
|
||||
getUser(userId: $userId) {
|
||||
...UserFragment
|
||||
following {
|
||||
id
|
||||
}
|
||||
followers {
|
||||
id
|
||||
}
|
||||
}
|
||||
}
|
||||
${UserFragmentFragmentDoc}
|
||||
@@ -11959,6 +11981,7 @@ export const GetVideoDetailsDocument = gql`
|
||||
endTime
|
||||
makePercentage
|
||||
medianRun
|
||||
averageDifficulty
|
||||
startTime
|
||||
totalShots
|
||||
totalShotsMade
|
||||
@@ -12612,6 +12635,80 @@ export type GetMedianRunForVideoQueryResult = Apollo.QueryResult<
|
||||
GetMedianRunForVideoQuery,
|
||||
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`
|
||||
query GetVideoForClipTimes($videoId: Int!) {
|
||||
getVideo(videoId: $videoId) {
|
||||
|
||||
@@ -34,6 +34,12 @@ query getLoggedInUser {
|
||||
query GetUser($userId: Int!) {
|
||||
getUser(userId: $userId) {
|
||||
...UserFragment
|
||||
following {
|
||||
id
|
||||
}
|
||||
followers {
|
||||
id
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -61,6 +61,7 @@ query GetVideoDetails($videoId: Int!) {
|
||||
endTime
|
||||
makePercentage
|
||||
medianRun
|
||||
averageDifficulty
|
||||
startTime
|
||||
totalShots
|
||||
totalShotsMade
|
||||
@@ -211,6 +212,13 @@ query GetMedianRunForVideo($videoId: Int!) {
|
||||
}
|
||||
}
|
||||
|
||||
query GetAverageDifficultyForVideo($videoId: Int!) {
|
||||
getVideo(videoId: $videoId) {
|
||||
id
|
||||
averageDifficulty
|
||||
}
|
||||
}
|
||||
|
||||
fragment StreamWithEndFrames on UploadStreamGQL {
|
||||
id
|
||||
streamSegmentType
|
||||
|
||||
Reference in New Issue
Block a user