Skip to content
This repository was archived by the owner on Dec 3, 2020. It is now read-only.

Commit 483c25b

Browse files
Changing boolean filter more like other filters: web-ridge/gqlgen-sqlboiler#22
1 parent 2b79c5a commit 483c25b

3 files changed

Lines changed: 5 additions & 4 deletions

File tree

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ require (
66
github.com/iancoleman/strcase v0.0.0-20191112232945-16388991a334
77
github.com/urfave/cli/v2 v2.2.0
88
github.com/web-ridge/go-pluralize v0.1.5
9-
github.com/web-ridge/gqlgen-sqlboiler/v2 v2.0.6
9+
github.com/web-ridge/gqlgen-sqlboiler/v2 v2.0.11
1010
)

go.sum

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,8 @@ github.com/web-ridge/go-pluralize v0.1.5 h1:P6msW3rPYufi2HfQKMA/EHv6ZozBTt0nDlAI
6464
github.com/web-ridge/go-pluralize v0.1.5/go.mod h1:Gx0NuzKc+RpUrcbR4wwcJt3R1JxwdtIvKbHKuRZykUc=
6565
github.com/web-ridge/gqlgen-sqlboiler/v2 v2.0.6 h1:aNU/V8DnBsmB5j1nA4soxHvccEZQ/sVjoFTQ/DvKdjQ=
6666
github.com/web-ridge/gqlgen-sqlboiler/v2 v2.0.6/go.mod h1:OIPsaGI6OEOJfF/DAg3jbdJao8/RezndHmjVOz2rbCw=
67+
github.com/web-ridge/gqlgen-sqlboiler/v2 v2.0.11 h1:AdkJRFOAL14Y3L1wN+p8q9PAJeaN7RHGFARWLR/1jbI=
68+
github.com/web-ridge/gqlgen-sqlboiler/v2 v2.0.11/go.mod h1:OIPsaGI6OEOJfF/DAg3jbdJao8/RezndHmjVOz2rbCw=
6769
github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=
6870
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=
6971
golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI=

main.go

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -288,9 +288,8 @@ input FloatFilter {
288288
}
289289
290290
input BooleanFilter {
291-
isTrue: Boolean
292-
isFalse: Boolean
293-
isNull: Boolean
291+
equalTo: Boolean
292+
notEqualTo: Boolean
294293
}
295294
`
296295

0 commit comments

Comments
 (0)