Hi Ben,
They're in query.customviews. You can run a query like this in pgAdmin to find the ones in the database and the folder they live in:
select cv.name as viewname, queryname, schema, c.name as containername from query.customview cv, core.containers c where cv.container = c.entityid |