argiepiano
argiepiano

Reputation: 141

Can Firebase Database rules access data in Firestore?

I'm using both types of databases, Firebase Database and Firestore in the same project, for different data. Is it possible to write a Firebase Database rule that accesses data from my Firestore database? How?

Upvotes: 1

Views: 55

Answers (1)

Doug Stevenson
Doug Stevenson

Reputation: 317828

It's not possible. Security rules currently cannot work between products. The best you can do is mirror your data between products.

Upvotes: 1

Related Questions