아래와 같이 Firestore의 where 절을 이용해 쿼리를 날릴 때, 응답이 없을 때가 있다. QuerySnapshot querySnapshot = await notificationReference .where("userId", isEqualTo: authClient.currentUser!.uid) .where("isValid", isEqualTo: false) .where("createdAt", isGreaterThanOrEqualTo: Timestamp.fromDate( DateTime.now().subtract(const Duration(days: 1)))) .get(); 보통 이렇게 firestore 응답이 없으면 exception인 경우가 많은데, 이 경우에는 index가 없어서 그렇다 디버..