I found out that the query was required to go from item:
dspaceobject
-> item -> item2bundle -> bundle -> bundle2bitstream ->
bitstream
SELECT * FROM bitstream as z JOIN
(select bitstream_id from bundle2bitstream as b2b JOIN
(select a.bundle_id from item2bundle a JOIN item b ON a.item_id=b.uuid
where b.uuid = '4e203020-8fd6-406a-addc-f4f08365b662') as i2b
ON b2b.bundle_id =i2b.bundle_id) as y
ON z.uuid= y.bitstream_id