Use tag input

This commit is contained in:
2024-03-28 15:20:39 -06:00
parent 679150326f
commit 6fd14d3c49
2 changed files with 18 additions and 8 deletions

View File

@@ -64,7 +64,7 @@ input FilterInput {
videoId: [Int!] = null
userId: [Int!] = null
make: MakeInputGQL = null
gameType: GameTypeInputGQL = null
tags: [VideoTagInput!] = null
}
input AndFilter {
@@ -116,8 +116,13 @@ input ValueFilterBool {
equals: Boolean = null
}
input GameTypeInputGQL {
value: ValueFilterString!
input VideoTagInput {
tagClasses: [VideoTagClassInput!]!
name: String!
}
input VideoTagClassInput {
name: String!
}
type UserGQL {