If a user has 10 or more keyboards in Remap and the all keyboards are registered with the author type "organization", the error occurs when fetching organization data from Firestore. The cause is that 11 or more query condition values are passed to the in query operator. To fix this issue, we need to remove the use of in query. Instead, send queries multiple times.
If a user has 10 or more keyboards in Remap and the all keyboards are registered with the author type "organization", the error occurs when fetching organization data from Firestore. The cause is that 11 or more query condition values are passed to the
in
query operator. To fix this issue, we need to remove the use ofin
query. Instead, send queries multiple times.