Make filter is boolean filter

This commit is contained in:
Kat Huang 2024-03-25 19:18:06 -06:00
parent 050705c370
commit 26ed50a7a1
2 changed files with 2 additions and 2 deletions

View File

@ -400,7 +400,7 @@ export type UserGql = {
}; };
export type ValueFilterBool = { export type ValueFilterBool = {
equals?: InputMaybe<Scalars["String"]["input"]>; equals?: InputMaybe<Scalars["Boolean"]["input"]>;
}; };
export type ValueFilterString = { export type ValueFilterString = {

View File

@ -113,7 +113,7 @@ input MakeInputGQL {
} }
input ValueFilterBool { input ValueFilterBool {
equals: String = null equals: Boolean = null
} }
input GameTypeInputGQL { input GameTypeInputGQL {