Compare commits
3 Commits
75a1d6c73a
...
148f5362f0
Author | SHA1 | Date | |
---|---|---|---|
148f5362f0 | |||
4d01e9814d | |||
b9e3e1f310 |
@ -2811,7 +2811,6 @@ export type GetShotsWithVideoGqlQuery = {
|
|||||||
__typename?: "Query";
|
__typename?: "Query";
|
||||||
getShotsWithMetadata: {
|
getShotsWithMetadata: {
|
||||||
__typename?: "GetShotsResult";
|
__typename?: "GetShotsResult";
|
||||||
ids: Array<number>;
|
|
||||||
shots: Array<{
|
shots: Array<{
|
||||||
__typename?: "ShotGQL";
|
__typename?: "ShotGQL";
|
||||||
id: number;
|
id: number;
|
||||||
@ -3174,7 +3173,12 @@ export type FollowUserMutationVariables = Exact<{
|
|||||||
|
|
||||||
export type FollowUserMutation = {
|
export type FollowUserMutation = {
|
||||||
__typename?: "Mutation";
|
__typename?: "Mutation";
|
||||||
followUser: { __typename?: "UserGQL"; username: string };
|
followUser: {
|
||||||
|
__typename?: "UserGQL";
|
||||||
|
username: string;
|
||||||
|
following?: Array<{ __typename?: "UserGQL"; id: number }> | null;
|
||||||
|
followers?: Array<{ __typename?: "UserGQL"; id: number }> | null;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
export type UnfollowUserMutationVariables = Exact<{
|
export type UnfollowUserMutationVariables = Exact<{
|
||||||
@ -3183,7 +3187,12 @@ export type UnfollowUserMutationVariables = Exact<{
|
|||||||
|
|
||||||
export type UnfollowUserMutation = {
|
export type UnfollowUserMutation = {
|
||||||
__typename?: "Mutation";
|
__typename?: "Mutation";
|
||||||
unfollowUser: { __typename?: "UserGQL"; username: string };
|
unfollowUser: {
|
||||||
|
__typename?: "UserGQL";
|
||||||
|
username: string;
|
||||||
|
following?: Array<{ __typename?: "UserGQL"; id: number }> | null;
|
||||||
|
followers?: Array<{ __typename?: "UserGQL"; id: number }> | null;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
export type GetStreamMonitoringDetailsQueryVariables = Exact<{
|
export type GetStreamMonitoringDetailsQueryVariables = Exact<{
|
||||||
@ -4468,7 +4477,6 @@ export type UpdateShotAnnotationsMutationOptions = Apollo.BaseMutationOptions<
|
|||||||
export const GetShotsWithVideoGqlDocument = gql`
|
export const GetShotsWithVideoGqlDocument = gql`
|
||||||
query GetShotsWithVideoGql($filterInput: FilterInput!, $limit: Int) {
|
query GetShotsWithVideoGql($filterInput: FilterInput!, $limit: Int) {
|
||||||
getShotsWithMetadata(filterInput: $filterInput, limit: $limit) {
|
getShotsWithMetadata(filterInput: $filterInput, limit: $limit) {
|
||||||
ids
|
|
||||||
shots {
|
shots {
|
||||||
id
|
id
|
||||||
videoId
|
videoId
|
||||||
@ -5321,6 +5329,12 @@ export const FollowUserDocument = gql`
|
|||||||
mutation followUser($followedUserId: Int!) {
|
mutation followUser($followedUserId: Int!) {
|
||||||
followUser(followedUserId: $followedUserId) {
|
followUser(followedUserId: $followedUserId) {
|
||||||
username
|
username
|
||||||
|
following {
|
||||||
|
id
|
||||||
|
}
|
||||||
|
followers {
|
||||||
|
id
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
@ -5371,6 +5385,12 @@ export const UnfollowUserDocument = gql`
|
|||||||
mutation unfollowUser($followedUserId: Int!) {
|
mutation unfollowUser($followedUserId: Int!) {
|
||||||
unfollowUser(followedUserId: $followedUserId) {
|
unfollowUser(followedUserId: $followedUserId) {
|
||||||
username
|
username
|
||||||
|
following {
|
||||||
|
id
|
||||||
|
}
|
||||||
|
followers {
|
||||||
|
id
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
|
@ -42,7 +42,6 @@ mutation UpdateShotAnnotations(
|
|||||||
|
|
||||||
query GetShotsWithVideoGql($filterInput: FilterInput!, $limit: Int) {
|
query GetShotsWithVideoGql($filterInput: FilterInput!, $limit: Int) {
|
||||||
getShotsWithMetadata(filterInput: $filterInput, limit: $limit) {
|
getShotsWithMetadata(filterInput: $filterInput, limit: $limit) {
|
||||||
ids
|
|
||||||
shots {
|
shots {
|
||||||
id
|
id
|
||||||
videoId
|
videoId
|
||||||
|
@ -91,11 +91,23 @@ query GetUserTags {
|
|||||||
mutation followUser($followedUserId: Int!) {
|
mutation followUser($followedUserId: Int!) {
|
||||||
followUser(followedUserId: $followedUserId) {
|
followUser(followedUserId: $followedUserId) {
|
||||||
username
|
username
|
||||||
|
following {
|
||||||
|
id
|
||||||
|
}
|
||||||
|
followers {
|
||||||
|
id
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
mutation unfollowUser($followedUserId: Int!) {
|
mutation unfollowUser($followedUserId: Int!) {
|
||||||
unfollowUser(followedUserId: $followedUserId) {
|
unfollowUser(followedUserId: $followedUserId) {
|
||||||
username
|
username
|
||||||
|
following {
|
||||||
|
id
|
||||||
|
}
|
||||||
|
followers {
|
||||||
|
id
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user