Compare commits
No commits in common. "d5c6014548583fcc2e9dccfd613285feb4cd5d7d" and "993f62b6cf65f7bce17169b0f10c532b5057e081" have entirely different histories.
d5c6014548
...
993f62b6cf
@ -2034,13 +2034,6 @@ export type GetUsernamesQuery = {
|
|||||||
getUsernames: Array<string>;
|
getUsernames: Array<string>;
|
||||||
};
|
};
|
||||||
|
|
||||||
export type GetUserTagsQueryVariables = Exact<{ [key: string]: never }>;
|
|
||||||
|
|
||||||
export type GetUserTagsQuery = {
|
|
||||||
__typename?: "Query";
|
|
||||||
getUserTags: Array<{ __typename?: "TagGQL"; id: number; name: string }>;
|
|
||||||
};
|
|
||||||
|
|
||||||
export type GetStreamMonitoringDetailsQueryVariables = Exact<{
|
export type GetStreamMonitoringDetailsQueryVariables = Exact<{
|
||||||
videoId: Scalars["Int"]["input"];
|
videoId: Scalars["Int"]["input"];
|
||||||
debuggingJson?: InputMaybe<Scalars["JSON"]["input"]>;
|
debuggingJson?: InputMaybe<Scalars["JSON"]["input"]>;
|
||||||
@ -3608,77 +3601,6 @@ export type GetUsernamesQueryResult = Apollo.QueryResult<
|
|||||||
GetUsernamesQuery,
|
GetUsernamesQuery,
|
||||||
GetUsernamesQueryVariables
|
GetUsernamesQueryVariables
|
||||||
>;
|
>;
|
||||||
export const GetUserTagsDocument = gql`
|
|
||||||
query GetUserTags {
|
|
||||||
getUserTags {
|
|
||||||
id
|
|
||||||
name
|
|
||||||
}
|
|
||||||
}
|
|
||||||
`;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* __useGetUserTagsQuery__
|
|
||||||
*
|
|
||||||
* To run a query within a React component, call `useGetUserTagsQuery` and pass it any options that fit your needs.
|
|
||||||
* When your component renders, `useGetUserTagsQuery` 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 } = useGetUserTagsQuery({
|
|
||||||
* variables: {
|
|
||||||
* },
|
|
||||||
* });
|
|
||||||
*/
|
|
||||||
export function useGetUserTagsQuery(
|
|
||||||
baseOptions?: Apollo.QueryHookOptions<
|
|
||||||
GetUserTagsQuery,
|
|
||||||
GetUserTagsQueryVariables
|
|
||||||
>,
|
|
||||||
) {
|
|
||||||
const options = { ...defaultOptions, ...baseOptions };
|
|
||||||
return Apollo.useQuery<GetUserTagsQuery, GetUserTagsQueryVariables>(
|
|
||||||
GetUserTagsDocument,
|
|
||||||
options,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
export function useGetUserTagsLazyQuery(
|
|
||||||
baseOptions?: Apollo.LazyQueryHookOptions<
|
|
||||||
GetUserTagsQuery,
|
|
||||||
GetUserTagsQueryVariables
|
|
||||||
>,
|
|
||||||
) {
|
|
||||||
const options = { ...defaultOptions, ...baseOptions };
|
|
||||||
return Apollo.useLazyQuery<GetUserTagsQuery, GetUserTagsQueryVariables>(
|
|
||||||
GetUserTagsDocument,
|
|
||||||
options,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
export function useGetUserTagsSuspenseQuery(
|
|
||||||
baseOptions?: Apollo.SuspenseQueryHookOptions<
|
|
||||||
GetUserTagsQuery,
|
|
||||||
GetUserTagsQueryVariables
|
|
||||||
>,
|
|
||||||
) {
|
|
||||||
const options = { ...defaultOptions, ...baseOptions };
|
|
||||||
return Apollo.useSuspenseQuery<GetUserTagsQuery, GetUserTagsQueryVariables>(
|
|
||||||
GetUserTagsDocument,
|
|
||||||
options,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
export type GetUserTagsQueryHookResult = ReturnType<typeof useGetUserTagsQuery>;
|
|
||||||
export type GetUserTagsLazyQueryHookResult = ReturnType<
|
|
||||||
typeof useGetUserTagsLazyQuery
|
|
||||||
>;
|
|
||||||
export type GetUserTagsSuspenseQueryHookResult = ReturnType<
|
|
||||||
typeof useGetUserTagsSuspenseQuery
|
|
||||||
>;
|
|
||||||
export type GetUserTagsQueryResult = Apollo.QueryResult<
|
|
||||||
GetUserTagsQuery,
|
|
||||||
GetUserTagsQueryVariables
|
|
||||||
>;
|
|
||||||
export const GetStreamMonitoringDetailsDocument = gql`
|
export const GetStreamMonitoringDetailsDocument = gql`
|
||||||
query GetStreamMonitoringDetails($videoId: Int!, $debuggingJson: JSON) {
|
query GetStreamMonitoringDetails($videoId: Int!, $debuggingJson: JSON) {
|
||||||
getVideo(videoId: $videoId, debuggingJson: $debuggingJson) {
|
getVideo(videoId: $videoId, debuggingJson: $debuggingJson) {
|
||||||
|
@ -56,10 +56,3 @@ query getUsernames(
|
|||||||
) {
|
) {
|
||||||
getUsernames(matchString: $matchString, limit: $limit, after: $after)
|
getUsernames(matchString: $matchString, limit: $limit, after: $after)
|
||||||
}
|
}
|
||||||
|
|
||||||
query GetUserTags {
|
|
||||||
getUserTags {
|
|
||||||
id
|
|
||||||
name
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
Loading…
Reference in New Issue
Block a user