You can use category.id as part of the WHERE clause. For example, I was able to run this LiQL query in the API Browser (in Studio) and get the appropriate results:
SELECT subject, view_href FROM messages WHERE category.id = 'leaf'
You can also use an IN clause for more than one category
SELECT subject, view_href FROM messages WHERE category.id IN ('leaf','preface')
and add a depth comparison if you only want replies
SELECT subject, view_href FROM messages WHERE category.id = 'leaf' AND depth > 0
or
SELECT subject, view_href FROM messages WHERE category.id IN ('leaf','preface') AND depth > 0