I reckon <<< is always a good idea when converting to point-free and using prefix notation instead of infix. And for two parameter, it’s <.. from the PointFree module.
My code is most of the time Api calls Application,Application calls Database, Database returns an array, head returns Maybe.
Two examples:
create :: Handle -> Article -> Aff (Either ApplicationError Article)
create h a = note INSERT_FAILED <$> h.insert a
addComment :: Handle -> Slug -> Comment -> Aff (Either ApplicationError Comment)
addComment h s c = note INSERT_FAILED <$> h.insertComment s c