I basically want to delete everything based on the current users id in firebase.
firebase.firestore().collection('users').doc(user.uid).collection('lists').doc('lists').delete();
i thought the above would work but its not, as im not sure how to rever to the doc inside of the collection lists, as each list inside the last document has different ids how do i delete them all? as i want to delete the whole collection based on user id