Compare commits
1 Commits
dean/updat
...
a55bfa8bd4
Author | SHA1 | Date | |
---|---|---|---|
|
a55bfa8bd4 |
183
src/index.tsx
183
src/index.tsx
@@ -3210,23 +3210,6 @@ export type GetFeedQuery = {
|
|||||||
status: ProcessingStatusEnum;
|
status: ProcessingStatusEnum;
|
||||||
}>;
|
}>;
|
||||||
} | null;
|
} | null;
|
||||||
reactions: Array<{
|
|
||||||
__typename?: "ReactionGQL";
|
|
||||||
videoId: number;
|
|
||||||
reaction: ReactionEnum;
|
|
||||||
user: {
|
|
||||||
__typename?: "UserGQL";
|
|
||||||
id: number;
|
|
||||||
username: string;
|
|
||||||
profileImageUri?: string | null;
|
|
||||||
followers?: Array<{
|
|
||||||
__typename?: "UserGQL";
|
|
||||||
id: number;
|
|
||||||
username: string;
|
|
||||||
profileImageUri?: string | null;
|
|
||||||
}> | null;
|
|
||||||
};
|
|
||||||
}>;
|
|
||||||
}>;
|
}>;
|
||||||
pageInfo: {
|
pageInfo: {
|
||||||
__typename?: "PageInfoGQL";
|
__typename?: "PageInfoGQL";
|
||||||
@@ -3280,23 +3263,6 @@ export type VideoCardFieldsFragment = {
|
|||||||
status: ProcessingStatusEnum;
|
status: ProcessingStatusEnum;
|
||||||
}>;
|
}>;
|
||||||
} | null;
|
} | null;
|
||||||
reactions: Array<{
|
|
||||||
__typename?: "ReactionGQL";
|
|
||||||
videoId: number;
|
|
||||||
reaction: ReactionEnum;
|
|
||||||
user: {
|
|
||||||
__typename?: "UserGQL";
|
|
||||||
id: number;
|
|
||||||
username: string;
|
|
||||||
profileImageUri?: string | null;
|
|
||||||
followers?: Array<{
|
|
||||||
__typename?: "UserGQL";
|
|
||||||
id: number;
|
|
||||||
username: string;
|
|
||||||
profileImageUri?: string | null;
|
|
||||||
}> | null;
|
|
||||||
};
|
|
||||||
}>;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export type GetVideoFeedQueryVariables = Exact<{
|
export type GetVideoFeedQueryVariables = Exact<{
|
||||||
@@ -3359,23 +3325,6 @@ export type GetVideoFeedQuery = {
|
|||||||
status: ProcessingStatusEnum;
|
status: ProcessingStatusEnum;
|
||||||
}>;
|
}>;
|
||||||
} | null;
|
} | null;
|
||||||
reactions: Array<{
|
|
||||||
__typename?: "ReactionGQL";
|
|
||||||
videoId: number;
|
|
||||||
reaction: ReactionEnum;
|
|
||||||
user: {
|
|
||||||
__typename?: "UserGQL";
|
|
||||||
id: number;
|
|
||||||
username: string;
|
|
||||||
profileImageUri?: string | null;
|
|
||||||
followers?: Array<{
|
|
||||||
__typename?: "UserGQL";
|
|
||||||
id: number;
|
|
||||||
username: string;
|
|
||||||
profileImageUri?: string | null;
|
|
||||||
}> | null;
|
|
||||||
};
|
|
||||||
}>;
|
|
||||||
}>;
|
}>;
|
||||||
pageInfo: {
|
pageInfo: {
|
||||||
__typename?: "PageInfoGQL";
|
__typename?: "PageInfoGQL";
|
||||||
@@ -3579,16 +3528,6 @@ export type GetMedalsQuery = {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
export type ReactToVideoMutationVariables = Exact<{
|
|
||||||
videoId: Scalars["Int"]["input"];
|
|
||||||
reaction?: InputMaybe<ReactionEnum>;
|
|
||||||
}>;
|
|
||||||
|
|
||||||
export type ReactToVideoMutation = {
|
|
||||||
__typename?: "Mutation";
|
|
||||||
reactToVideo: boolean;
|
|
||||||
};
|
|
||||||
|
|
||||||
export type GetRunsForHighlightsQueryVariables = Exact<{
|
export type GetRunsForHighlightsQueryVariables = Exact<{
|
||||||
filterInput: RunFilterInput;
|
filterInput: RunFilterInput;
|
||||||
runIds?: InputMaybe<Array<Scalars["Int"]["input"]> | Scalars["Int"]["input"]>;
|
runIds?: InputMaybe<Array<Scalars["Int"]["input"]> | Scalars["Int"]["input"]>;
|
||||||
@@ -4039,16 +3978,6 @@ export type RetireTagsMutation = {
|
|||||||
retireTags: boolean;
|
retireTags: boolean;
|
||||||
};
|
};
|
||||||
|
|
||||||
export type DeleteTagsMutationVariables = Exact<{
|
|
||||||
videoId: Scalars["Int"]["input"];
|
|
||||||
tagsToDelete: Array<VideoTagInput> | VideoTagInput;
|
|
||||||
}>;
|
|
||||||
|
|
||||||
export type DeleteTagsMutation = {
|
|
||||||
__typename?: "Mutation";
|
|
||||||
deleteTags: boolean;
|
|
||||||
};
|
|
||||||
|
|
||||||
export type GetProfileImageUploadLinkMutationVariables = Exact<{
|
export type GetProfileImageUploadLinkMutationVariables = Exact<{
|
||||||
fileExt?: InputMaybe<Scalars["String"]["input"]>;
|
fileExt?: InputMaybe<Scalars["String"]["input"]>;
|
||||||
}>;
|
}>;
|
||||||
@@ -5067,20 +4996,6 @@ export const VideoCardFieldsFragmentDoc = gql`
|
|||||||
status
|
status
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
reactions {
|
|
||||||
videoId
|
|
||||||
user {
|
|
||||||
id
|
|
||||||
username
|
|
||||||
profileImageUri
|
|
||||||
followers {
|
|
||||||
id
|
|
||||||
username
|
|
||||||
profileImageUri
|
|
||||||
}
|
|
||||||
}
|
|
||||||
reaction
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
export const MedalFieldsFragmentDoc = gql`
|
export const MedalFieldsFragmentDoc = gql`
|
||||||
@@ -6006,55 +5921,6 @@ export type GetMedalsQueryResult = Apollo.QueryResult<
|
|||||||
GetMedalsQuery,
|
GetMedalsQuery,
|
||||||
GetMedalsQueryVariables
|
GetMedalsQueryVariables
|
||||||
>;
|
>;
|
||||||
export const ReactToVideoDocument = gql`
|
|
||||||
mutation ReactToVideo($videoId: Int!, $reaction: ReactionEnum) {
|
|
||||||
reactToVideo(videoId: $videoId, reaction: $reaction)
|
|
||||||
}
|
|
||||||
`;
|
|
||||||
export type ReactToVideoMutationFn = Apollo.MutationFunction<
|
|
||||||
ReactToVideoMutation,
|
|
||||||
ReactToVideoMutationVariables
|
|
||||||
>;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* __useReactToVideoMutation__
|
|
||||||
*
|
|
||||||
* To run a mutation, you first call `useReactToVideoMutation` within a React component and pass it any options that fit your needs.
|
|
||||||
* When your component renders, `useReactToVideoMutation` returns a tuple that includes:
|
|
||||||
* - A mutate function that you can call at any time to execute the mutation
|
|
||||||
* - An object with fields that represent the current status of the mutation's execution
|
|
||||||
*
|
|
||||||
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
||||||
*
|
|
||||||
* @example
|
|
||||||
* const [reactToVideoMutation, { data, loading, error }] = useReactToVideoMutation({
|
|
||||||
* variables: {
|
|
||||||
* videoId: // value for 'videoId'
|
|
||||||
* reaction: // value for 'reaction'
|
|
||||||
* },
|
|
||||||
* });
|
|
||||||
*/
|
|
||||||
export function useReactToVideoMutation(
|
|
||||||
baseOptions?: Apollo.MutationHookOptions<
|
|
||||||
ReactToVideoMutation,
|
|
||||||
ReactToVideoMutationVariables
|
|
||||||
>,
|
|
||||||
) {
|
|
||||||
const options = { ...defaultOptions, ...baseOptions };
|
|
||||||
return Apollo.useMutation<
|
|
||||||
ReactToVideoMutation,
|
|
||||||
ReactToVideoMutationVariables
|
|
||||||
>(ReactToVideoDocument, options);
|
|
||||||
}
|
|
||||||
export type ReactToVideoMutationHookResult = ReturnType<
|
|
||||||
typeof useReactToVideoMutation
|
|
||||||
>;
|
|
||||||
export type ReactToVideoMutationResult =
|
|
||||||
Apollo.MutationResult<ReactToVideoMutation>;
|
|
||||||
export type ReactToVideoMutationOptions = Apollo.BaseMutationOptions<
|
|
||||||
ReactToVideoMutation,
|
|
||||||
ReactToVideoMutationVariables
|
|
||||||
>;
|
|
||||||
export const GetRunsForHighlightsDocument = gql`
|
export const GetRunsForHighlightsDocument = gql`
|
||||||
query GetRunsForHighlights(
|
query GetRunsForHighlights(
|
||||||
$filterInput: RunFilterInput!
|
$filterInput: RunFilterInput!
|
||||||
@@ -6910,55 +6776,6 @@ export type RetireTagsMutationOptions = Apollo.BaseMutationOptions<
|
|||||||
RetireTagsMutation,
|
RetireTagsMutation,
|
||||||
RetireTagsMutationVariables
|
RetireTagsMutationVariables
|
||||||
>;
|
>;
|
||||||
export const DeleteTagsDocument = gql`
|
|
||||||
mutation DeleteTags($videoId: Int!, $tagsToDelete: [VideoTagInput!]!) {
|
|
||||||
deleteTags(videoId: $videoId, tagsToDelete: $tagsToDelete)
|
|
||||||
}
|
|
||||||
`;
|
|
||||||
export type DeleteTagsMutationFn = Apollo.MutationFunction<
|
|
||||||
DeleteTagsMutation,
|
|
||||||
DeleteTagsMutationVariables
|
|
||||||
>;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* __useDeleteTagsMutation__
|
|
||||||
*
|
|
||||||
* To run a mutation, you first call `useDeleteTagsMutation` within a React component and pass it any options that fit your needs.
|
|
||||||
* When your component renders, `useDeleteTagsMutation` returns a tuple that includes:
|
|
||||||
* - A mutate function that you can call at any time to execute the mutation
|
|
||||||
* - An object with fields that represent the current status of the mutation's execution
|
|
||||||
*
|
|
||||||
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
||||||
*
|
|
||||||
* @example
|
|
||||||
* const [deleteTagsMutation, { data, loading, error }] = useDeleteTagsMutation({
|
|
||||||
* variables: {
|
|
||||||
* videoId: // value for 'videoId'
|
|
||||||
* tagsToDelete: // value for 'tagsToDelete'
|
|
||||||
* },
|
|
||||||
* });
|
|
||||||
*/
|
|
||||||
export function useDeleteTagsMutation(
|
|
||||||
baseOptions?: Apollo.MutationHookOptions<
|
|
||||||
DeleteTagsMutation,
|
|
||||||
DeleteTagsMutationVariables
|
|
||||||
>,
|
|
||||||
) {
|
|
||||||
const options = { ...defaultOptions, ...baseOptions };
|
|
||||||
return Apollo.useMutation<DeleteTagsMutation, DeleteTagsMutationVariables>(
|
|
||||||
DeleteTagsDocument,
|
|
||||||
options,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
export type DeleteTagsMutationHookResult = ReturnType<
|
|
||||||
typeof useDeleteTagsMutation
|
|
||||||
>;
|
|
||||||
export type DeleteTagsMutationResult =
|
|
||||||
Apollo.MutationResult<DeleteTagsMutation>;
|
|
||||||
export type DeleteTagsMutationOptions = Apollo.BaseMutationOptions<
|
|
||||||
DeleteTagsMutation,
|
|
||||||
DeleteTagsMutationVariables
|
|
||||||
>;
|
|
||||||
export const GetProfileImageUploadLinkDocument = gql`
|
export const GetProfileImageUploadLinkDocument = gql`
|
||||||
mutation getProfileImageUploadLink($fileExt: String = ".png") {
|
mutation getProfileImageUploadLink($fileExt: String = ".png") {
|
||||||
getProfileImageUploadLink(fileExt: $fileExt) {
|
getProfileImageUploadLink(fileExt: $fileExt) {
|
||||||
|
@@ -58,20 +58,6 @@ fragment VideoCardFields on VideoGQL {
|
|||||||
status
|
status
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
reactions {
|
|
||||||
videoId
|
|
||||||
user {
|
|
||||||
id
|
|
||||||
username
|
|
||||||
profileImageUri
|
|
||||||
followers {
|
|
||||||
id
|
|
||||||
username
|
|
||||||
profileImageUri
|
|
||||||
}
|
|
||||||
}
|
|
||||||
reaction
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
query GetVideoFeed(
|
query GetVideoFeed(
|
||||||
|
@@ -1,3 +0,0 @@
|
|||||||
mutation ReactToVideo($videoId: Int!, $reaction: ReactionEnum) {
|
|
||||||
reactToVideo(videoId: $videoId, reaction: $reaction)
|
|
||||||
}
|
|
@@ -1,7 +1,3 @@
|
|||||||
mutation RetireTags($tagIds: [Int!]!) {
|
mutation RetireTags($tagIds: [Int!]!) {
|
||||||
retireTags(tagIds: $tagIds)
|
retireTags(tagIds: $tagIds)
|
||||||
}
|
}
|
||||||
|
|
||||||
mutation DeleteTags($videoId: Int!, $tagsToDelete: [VideoTagInput!]!) {
|
|
||||||
deleteTags(videoId: $videoId, tagsToDelete: $tagsToDelete)
|
|
||||||
}
|
|
||||||
|
Reference in New Issue
Block a user