juxt / blip

Small library for fetching/injecting graphql definitions
Eclipse Public License 1.0
2 stars 0 forks source link

Fix for query parameters #7

Closed reborg closed 1 year ago

reborg commented 1 year ago

Not sure how we didn't spot this before, but with latest Site release Blip is failing because when it sends parameters with a query POST they are wrapped with a list (correctly, as the function signature is variadic). This is generating exception in Site. This PR fixes this by removing the (superfluous) list around the query parameters.

A couple of more improvements on the debugging messages too. Also printing the request on stdout when :debug = true.