Got Cornered in a multiple "array-in" query! What could be the best workaround? #1298
-
| 
 Project Stack:
 Overview of the issue/question:In a Firebase document, we have 2 attributes with  const Pitch = {
  // ...
  formats: [],
  themes: []
}When trying to filter pitch documents based on both fields, we get trapped in a corner where there is a Firebase caveat in Compound queries  Actual POCThe following sandbox illustrates the actual complex component: https://stackblitz.com/edit/nuxt-starter-8dqt1c?file=README.md QuestionWhat's the best workaround to get the filtration scenario easier as a development experience? | 
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
| I read somewhere in the past that one would just filter in the front. In Vue, you could put that in a computed property | 
Beta Was this translation helpful? Give feedback.
I read somewhere in the past that one would just filter in the front. In Vue, you could put that in a computed property