[Vuejs]-Firebase Auth rule read if exists in subcollection not working

0👍

The way your embedding {clanName} in the get() call is incorrect. Variables are all in $(variablename) format, similar to how you already have $(database) and $(request.auth.uid).

So something like:

if exists(/databases/$(database)/documents/clans/$(clanName)/members/$(request.auth.uid))

Also see:

Leave a comment