Added user tags
All checks were successful
Tests / Tests (pull_request) Successful in 7s

This commit is contained in:
2024-07-22 18:22:03 -07:00
parent 81b9fd9f12
commit b1550b31c5
2 changed files with 26 additions and 0 deletions

View File

@@ -24,6 +24,7 @@ type Query {
after: String = null
filters: VideoFilterInput = null
): VideoHistoryGQL!
getUserTags(userId: Int!): UserTagsGQL!
getVideo(videoId: Int!): VideoGQL!
getVideos(videoIds: [Int!]!): [VideoGQL!]!
}
@@ -358,6 +359,15 @@ input VideoFilterInput {
requireCursorCompletion: Boolean! = true
}
type UserTagsGQL {
tags: [TagGQL!]!
}
type TagGQL {
name: String!
id: Int!
}
type Mutation {
createBucketSet(params: CreateBucketSetInput!): BucketSetGQL!
setLoggerLevel(path: String!, level: String!): Boolean!