If I have a query that once takes (a,b) and the other time only (Only a), how to do that?
For the time being, this seems sensible:
newtype ManualToRow = ManualToRow [DB.Action]
instance ToRow ManualToRow where
toRow = id
But, I think, I’d much rather like to have a possibility to return an empty Action somehow…
Is there anything available already?