| Safe Haskell | Safe-Inferred |
|---|---|
| Language | GHC2021 |
ERPNext.Client.QueryStringParams
Synopsis
- data QueryStringParam
- renderQueryStringParams :: [QueryStringParam] -> Text
Documentation
data QueryStringParam Source #
Constructors
| Debug Bool | If |
| AsDict Bool | If |
| LimitStart Int | Page offset (starts at 0) |
| LimitPageLength Int | Page size |
| Asc Text | Ascending order by given field |
| Desc Text | Descending order by given field |
| Fields [Text] | Select fields |
| AndFilter [Filter] | Filter terms combined with logical AND |
| OrFilter [Filter] | Filter terms combined with logical OR |
renderQueryStringParams :: [QueryStringParam] -> Text Source #
Render the query string for the URL.