Use list int directly for user id input

This commit is contained in:
2024-03-12 11:48:35 -06:00
parent e1600751e0
commit 57c3ee0360
2 changed files with 4 additions and 12 deletions

View File

@@ -57,8 +57,8 @@ input FilterInput {
cueBallSpeed: CueBallSpeedInput = null
intendedPocketType: IntendedPocketTypeInput = null
shotDirection: ShotDirectionInput = null
videoId: InListFilter = null
userId: InListFilter = null
videoId: [Int!] = null
userId: [Int!] = null
}
input AndFilter {
@@ -102,10 +102,6 @@ input ShotDirectionInput {
value: EnumFilter!
}
input InListFilter {
inList: [Int!] = null
}
type UserGQL {
id: Int!
firebaseUid: String!