Removed wrapper type
All checks were successful
Tests / Tests (pull_request) Successful in 14s

This commit is contained in:
2024-07-23 18:53:39 -07:00
parent b1550b31c5
commit e1237363f0
2 changed files with 4 additions and 11 deletions

View File

@@ -24,7 +24,7 @@ type Query {
after: String = null
filters: VideoFilterInput = null
): VideoHistoryGQL!
getUserTags(userId: Int!): UserTagsGQL!
getUserTags(userId: Int!): [TagGQL!]!
getVideo(videoId: Int!): VideoGQL!
getVideos(videoIds: [Int!]!): [VideoGQL!]!
}
@@ -359,13 +359,10 @@ input VideoFilterInput {
requireCursorCompletion: Boolean! = true
}
type UserTagsGQL {
tags: [TagGQL!]!
}
type TagGQL {
name: String!
id: Int!
group: String
}
type Mutation {