Merge pull request 'Use tag class and tag value input in FilterInput' (#312) from kat/temp into master

Reviewed-on: railbird/railbird-mobile#312
Reviewed-by: loewy <loewymalkov@gmail.com>
Reviewed-by: Ivan Malison <ivanmalison@gmail.com>
This commit is contained in:
2024-03-28 16:12:54 -06:00
2 changed files with 18 additions and 8 deletions

View File

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