Angular firestore array_contains on objects
You can try testing against the whole object, e.g.
this.afs.collection('Locations', ref => ref.where('players', 'array-contains', {active : false, name : _name}))
You can try testing against the whole object, e.g.
this.afs.collection('Locations', ref => ref.where('players', 'array-contains', {active : false, name : _name}))