Closed NH0 closed 3 years ago
For the moment with a model of the kind :
@Entity @Table(name="USERS") data class Users( @Id @GeneratedValue(strategy = GenerationType.AUTO) var userId: Long? = null, @Column(name = "isAdmin") var isAdmin: Boolean = false, ) { }
The following query will not work : ?search=isAdmin:false
?search=isAdmin:false
Any query with the isAdmin parameter will not work as Boolean types isn't supported yet.
isAdmin
I've got a proposal for Boolean parameters and other (date as an example).
You can check it out here -> https://github.com/sipios/spring-search/pull/10
The Pull request has been merged :)
For the moment with a model of the kind :
The following query will not work :
?search=isAdmin:false
Any query with the
isAdmin
parameter will not work as Boolean types isn't supported yet.