Re: [go-nuts] General question: complex search form and query params

2018-03-02 Thread benjamin . guy . thomas
Thanks for the feedback. I'm only vaguely familiar with graphql. From my understanding, it's meant to facilitate data query for the frontend dev. But I'm looking at things more from a user perspective here, see my github example. I might have to dig into this though. Le vendredi 2 mars 2018

[go-nuts] Re: General question: complex search form and query params

2018-03-02 Thread benjamin . guy . thomas
> > I believe correctly used database/sql (with the argument placeholders) > protects against SQL injection > Yeah I badly explained this, an SQL builder solves security *AND* flexibility for me. Standard database/sql placeholders are too painful when the user params are too complex, and I

[go-nuts] General question: complex search form and query params

2018-03-02 Thread benjamin . guy . thomas
Hello gophers, Sorry if this is considered noise to some, as I have a question which is not specifically go related. I have a personal project in which I'd like to use go though. Basically, I'd like to create a complex search form, returning data backed by an SQL database. To prevent SQL