> ## Documentation Index
> Fetch the complete documentation index at: https://docs.karzoun.chat/llms.txt
> Use this file to discover all available pages before exploring further.

# الترقيم الصفحي

> ترقيم استعلامات القوائم في واجهة GraphQL لكرزون.

تقبل استعلامات القوائم الترقيم الصفحي:

| الوسيط    | النوع | الوصف                  |
| --------- | ----- | ---------------------- |
| `page`    | Int   | رقم الصفحة (يبدأ من 1) |
| `perPage` | Int   | العناصر في كل صفحة     |

مثال على المتغيرات:

```json theme={"theme":{"light":"github-light","dark":"github-dark"}}
{ "page": 1, "perPage": 20 }
```

تتضمن استجابات القوائم كائن `pagination` مع `totalCount` و`currentPage` و`totalPages` و`hasNextPage` و`hasPreviousPage`.

## مثال

مرّر `page` و`perPage` في استعلامات القوائم مثل `tags` و`customers` و`conversations`.

```graphql theme={"theme":{"light":"github-light","dark":"github-dark"}}
query {
  customers(page: 2, perPage: 20) {
    data {
      _id
      firstName
    }
    pagination {
      totalCount
      currentPage
      hasNextPage
    }
  }
}
```


## Related topics

- [كيف يعمل](/ar/mcp-server/guides/how-it-works.md)
- [أنماط الوكلاء](/ar/mcp-server/guides/agent-patterns.md)
- [إنشاء لوحة مهام مع المسار والمراحل](/ar/help-center/guides/tasks/doc-1890584.md)
