luminus-framework/luminus

:query-string doesn't contain qualified keywords

zendevil opened this issue · 1 comments

I am making a request with the following :params: {:user/foo 1 ;user/bar 2}. However, when the request is received by the Luminus app, the query string doesn’t contain the keyword qualifiers and is: foo=1&bar=2 instead of user/foo=1&user/bar=2. Why aren’t the keyword qualifiers showing? I’d like them to show.

Might be an artifact of encoding a GET request since it has to turn into a URL string. Could you try using POST instead to see if namespaced keywords roundtrip in the body?