api-builder-0.12.0.0: Library for easily building REST API wrappers in Haskell
Network.API.Builder.Query
class ToQuery a where Source #
Minimal complete definition
toQuery
Methods
toQuery :: Text -> a -> [(Text, Text)] Source #
Instances
toQuery :: Text -> Bool -> [(Text, Text)] Source #
toQuery :: Text -> Int -> [(Text, Text)] Source #
toQuery :: Text -> Integer -> [(Text, Text)] Source #
toQuery :: Text -> Text -> [(Text, Text)] Source #
toQuery :: Text -> [a] -> [(Text, Text)] Source #
toQuery :: Text -> Maybe a -> [(Text, Text)] Source #