Make check homography mutation
All checks were successful
Tests / Tests (pull_request) Successful in 16s

This commit is contained in:
2024-11-06 16:25:23 -08:00
parent c0a3aa97dc
commit dc6f246489
2 changed files with 7 additions and 7 deletions

View File

@@ -56,7 +56,6 @@ type Query {
getUserTags: [TagGQL!]!
getVideo(videoId: Int!, debuggingJson: JSON = null): VideoGQL!
getVideos(videoIds: [Int!]!): [VideoGQL!]!
checkHomographyIsValid(b64Image: String!, videoId: Int!): HomographyInfoGQL
getFeedVideos(
limit: Int! = 5
after: String = null
@@ -669,6 +668,7 @@ type Mutation {
editUser(input: EditUserInputGQL!): UserGQL!
followUser(followedUserId: Int!): UserGQL!
unfollowUser(followedUserId: Int!): UserGQL!
checkHomographyIsValid(b64Image: String!, videoId: Int!): HomographyInfoGQL
createUploadStream(
videoMetadata: VideoMetadataInput!
): CreateUploadStreamReturn!