Multiple join in multiple documents

I have a document user. user document id available in the rest three document as user.id.

Rest three documents as group, info, charge (user.id) available.
I want a join all three documents with the user.

SELECT *
FROM default AS u
JOIN default AS g ON u.id = g.id
JOIN default AS c ON u.id = c.id
JOIN default AS i ON u.id = i.id
WHERE u.type = "user" AND g.type = "group"
        AND c.type = "charge"  AND i.type = info" 
        AND  ......

Checkout https://blog.couchbase.com/ansi-join-support-n1ql/ for more details.