Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Converting a Haskell record to/from query params? #143

Open
saurabhnanda opened this issue Jul 5, 2024 · 0 comments
Open

Converting a Haskell record to/from query params? #143

saurabhnanda opened this issue Jul 5, 2024 · 0 comments

Comments

@saurabhnanda
Copy link

If I have the following Haskell type...

data Args = Args
  { argLimit :: !Int
  , argOffset :: !Int
  , argSeaerch :: !Text
  }

... is it possible to write ToHttpApiData / FromHttpApiData insances that can achieve the following conversion:

Args{argLimit=10, argOffset=0, argSearch="keyword"} <==> limit=10&offset=0&search=keyword
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant