Allow use post body for Queries
Some of my Queries really too long and GET parameters don't allow me to make correct requests.
For example, I need to set to the WHERE IN () about 3k items, I can't do it in the GET parameters
You can use with IN external data, and in query like this
Right now it will give more problems than just send POST Just interesting why you don't want to use POST?
Use POST is not problem. But into each tools exists some techniques for resolve regular problems. For too long IN - external data.
First a wall, test npm run test http://prntscr.com/qevqf0 should'nt fail
this is great for me as well, my table has more than 80 columns and a complex query gets too long.