Compare commits

...

3 Commits

Author SHA1 Message Date
51ab8320d7 Merge pull request 'add checkHomographyIsValid' (#116) from mk/get-homography-valid into master
Reviewed-on: #116
2024-11-05 15:45:49 -07:00
f9a00ad3eb add checkHomographyIsValid
All checks were successful
Tests / Tests (pull_request) Successful in 16s
2024-11-05 14:39:23 -08:00
998b2ffc8c Merge pull request 'Create video card fragment' (#115) from kat/video-card-feed into master
Reviewed-on: #115
2024-11-05 14:04:02 -07:00
2 changed files with 7 additions and 0 deletions

View File

@@ -2163,6 +2163,7 @@ export enum ProcessingStatusEnum {
export type Query = {
__typename?: "Query";
checkHomographyIsValid?: Maybe<HomographyInfoGql>;
doesUsernameExist: Scalars["Boolean"]["output"];
getAggregatedShotMetrics: Array<AggregateResultGql>;
getBucketSet?: Maybe<BucketSetGql>;
@@ -2187,6 +2188,11 @@ export type Query = {
waitFor: Scalars["Float"]["output"];
};
export type QueryCheckHomographyIsValidArgs = {
b64Image: Scalars["String"]["input"];
videoId: Scalars["Int"]["input"];
};
export type QueryDoesUsernameExistArgs = {
candidateUsername: Scalars["String"]["input"];
};

View File

@@ -56,6 +56,7 @@ 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