firebase / firebase/firebase-admin-node

Firebase query orderByKey().limitToFirst(n).startAfter() returns n-1 items iso n

オープン
#2,350 コメント 4 件 リアクション 1 件 担当者 0 名 GitHub で見る
api: database
主要言語
TypeScript
スター
1.7k
フォーク
419
平均マージ
3日 10時間
マージ済み PR(30日)
16

説明

### [READ] Step 1: Are you in the right place?
yes

### [REQUIRED] Step 2: Describe your environment

* Operating System version: Ubuntu 22.04 lts
* Firebase SDK version: 11.11.0
* Firebase Product: realtime database (auth, database, storage, etc)
* Node.js version: 16.20.2
* NPM version: 8.19.4

### [REQUIRED] Step 3: Describe the problem

Firebase query of type:
`admin.database.Database.ref('collection').orderByKey().limitToFirst(100).startAfter(lastKey)` only returns 99 items iso 100 even if more keys are in the firebase realtime database.

On version 11.4.1 of firebase-admin this query behaves as expected and 100 items are returned.

#### Steps to reproduce:

What happened? How can we make the problem occur?
This could be a description, log/console output, etc.

#### Relevant Code:

```typescript
let query;
let lastDocument = null;
let lastBatchSize: number = 100;

while (lastBatchSize === 100) {
query = database.ref('collection').orderByKey()
.limitToFirst(100);

if (lastDocument !== null) {
query = query.startAfter(lastDocument.key);
}

const snapshot = await query.get();
const keys = Object.keys(snapshot.val() || {});
const docs = keys.map((key) => snapshot.child(key));

if (docs.length === 0) break;
console.log("docs length " + docs.length); //prints 99 on 11.11.0, prints 100 on 11.4.1

if (docs.length) {
lastDocument = docs[docs.length - 1];
}
lastBatchSize = docs.length;
}
```

コントリビューションガイド

コントリビューションガイドを開く

評価

この issue はまだ評価されていません。

新しい issue をメールで受け取る

初心者向けの GitHub issue を短くまとめたダイジェスト。