Compare commits
No commits in common. "014aab473b1bd101b20a6a086f94dcb6968c0ccd" and "433dfdaf7480fbbf162bfb3a602993e82d89b5bf" have entirely different histories.
014aab473b
...
433dfdaf74
@ -3298,15 +3298,6 @@ export type GetUserFollowingFollowersQuery = {
|
|||||||
} | null;
|
} | null;
|
||||||
};
|
};
|
||||||
|
|
||||||
export type DoesUsernameExistQueryVariables = Exact<{
|
|
||||||
candidateUsername: Scalars["String"]["input"];
|
|
||||||
}>;
|
|
||||||
|
|
||||||
export type DoesUsernameExistQuery = {
|
|
||||||
__typename?: "Query";
|
|
||||||
doesUsernameExist: boolean;
|
|
||||||
};
|
|
||||||
|
|
||||||
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"]>;
|
||||||
@ -5647,77 +5638,6 @@ export type GetUserFollowingFollowersQueryResult = Apollo.QueryResult<
|
|||||||
GetUserFollowingFollowersQuery,
|
GetUserFollowingFollowersQuery,
|
||||||
GetUserFollowingFollowersQueryVariables
|
GetUserFollowingFollowersQueryVariables
|
||||||
>;
|
>;
|
||||||
export const DoesUsernameExistDocument = gql`
|
|
||||||
query doesUsernameExist($candidateUsername: String!) {
|
|
||||||
doesUsernameExist(candidateUsername: $candidateUsername)
|
|
||||||
}
|
|
||||||
`;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* __useDoesUsernameExistQuery__
|
|
||||||
*
|
|
||||||
* To run a query within a React component, call `useDoesUsernameExistQuery` and pass it any options that fit your needs.
|
|
||||||
* When your component renders, `useDoesUsernameExistQuery` 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 } = useDoesUsernameExistQuery({
|
|
||||||
* variables: {
|
|
||||||
* candidateUsername: // value for 'candidateUsername'
|
|
||||||
* },
|
|
||||||
* });
|
|
||||||
*/
|
|
||||||
export function useDoesUsernameExistQuery(
|
|
||||||
baseOptions: Apollo.QueryHookOptions<
|
|
||||||
DoesUsernameExistQuery,
|
|
||||||
DoesUsernameExistQueryVariables
|
|
||||||
>,
|
|
||||||
) {
|
|
||||||
const options = { ...defaultOptions, ...baseOptions };
|
|
||||||
return Apollo.useQuery<
|
|
||||||
DoesUsernameExistQuery,
|
|
||||||
DoesUsernameExistQueryVariables
|
|
||||||
>(DoesUsernameExistDocument, options);
|
|
||||||
}
|
|
||||||
export function useDoesUsernameExistLazyQuery(
|
|
||||||
baseOptions?: Apollo.LazyQueryHookOptions<
|
|
||||||
DoesUsernameExistQuery,
|
|
||||||
DoesUsernameExistQueryVariables
|
|
||||||
>,
|
|
||||||
) {
|
|
||||||
const options = { ...defaultOptions, ...baseOptions };
|
|
||||||
return Apollo.useLazyQuery<
|
|
||||||
DoesUsernameExistQuery,
|
|
||||||
DoesUsernameExistQueryVariables
|
|
||||||
>(DoesUsernameExistDocument, options);
|
|
||||||
}
|
|
||||||
export function useDoesUsernameExistSuspenseQuery(
|
|
||||||
baseOptions?: Apollo.SuspenseQueryHookOptions<
|
|
||||||
DoesUsernameExistQuery,
|
|
||||||
DoesUsernameExistQueryVariables
|
|
||||||
>,
|
|
||||||
) {
|
|
||||||
const options = { ...defaultOptions, ...baseOptions };
|
|
||||||
return Apollo.useSuspenseQuery<
|
|
||||||
DoesUsernameExistQuery,
|
|
||||||
DoesUsernameExistQueryVariables
|
|
||||||
>(DoesUsernameExistDocument, options);
|
|
||||||
}
|
|
||||||
export type DoesUsernameExistQueryHookResult = ReturnType<
|
|
||||||
typeof useDoesUsernameExistQuery
|
|
||||||
>;
|
|
||||||
export type DoesUsernameExistLazyQueryHookResult = ReturnType<
|
|
||||||
typeof useDoesUsernameExistLazyQuery
|
|
||||||
>;
|
|
||||||
export type DoesUsernameExistSuspenseQueryHookResult = ReturnType<
|
|
||||||
typeof useDoesUsernameExistSuspenseQuery
|
|
||||||
>;
|
|
||||||
export type DoesUsernameExistQueryResult = Apollo.QueryResult<
|
|
||||||
DoesUsernameExistQuery,
|
|
||||||
DoesUsernameExistQueryVariables
|
|
||||||
>;
|
|
||||||
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) {
|
||||||
|
@ -131,7 +131,3 @@ query getUserFollowingFollowers {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
query doesUsernameExist($candidateUsername: String!) {
|
|
||||||
doesUsernameExist(candidateUsername: $candidateUsername)
|
|
||||||
}
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user