Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .vuepress/public/postman/meilisearch-collection.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
"disabled": true
},
{
"key": "attributesToRetrieve",
"key": "fields",
"value": "*",
"disabled": true
}
Expand Down
51 changes: 30 additions & 21 deletions reference/api/documents.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,11 @@ Documents are ordered by Meilisearch depending on the hash of their id.

#### Query parameters

| Query Parameter | Description | Default Value |
| ------------------------ | --------------------------- | :-----------: |
| **offset** | number of documents to skip | 0 |
| **limit** | number of documents to take | 20 |
| **attributesToRetrieve** | document attributes to show | \* |
| Query Parameter | Description | Default Value |
| ------------------------ | ------------------------------ | :-----------: |
| **offset** | number of documents to skip | 0 |
| **limit** | number of documents to return | 20 |
| **fields** | document attributes to show | \* |

### Example

Expand All @@ -53,24 +53,33 @@ Documents are ordered by Meilisearch depending on the hash of their id.
#### Response: `200 Ok`

```json
[
{
"id": 25684,
"release_date": "1993-01-01",
"poster": "https://image.tmdb.org/t/p/w1280/iuAQVI4mvjI83wnirpD8GVNRVuY.jpg",
"title": "American Ninja 5",
"overview": "When a scientists daughter is kidnapped, American Ninja, attempts to find her, but this time he teams up with a youngster he has trained in the ways of the ninja."
},
{
"id": 468219,
"title": "Dead in a Week (Or Your Money Back)",
"release_date": "2018-09-12",
"poster": "https://image.tmdb.org/t/p/w1280/f4ANVEuEaGy2oP5M0Y2P1dwxUNn.jpg",
"overview": "William has failed to kill himself so many times that he outsources his suicide to aging assassin Leslie. But with the contract signed and death assured within a week (or his money back), William suddenly discovers reasons to live... However Leslie is under pressure from his boss to make sure the contract is completed."
}
]
{
"results": [
{
"id": 25684,
"release_date": "1993-01-01",
"poster": "https://image.tmdb.org/t/p/w1280/iuAQVI4mvjI83wnirpD8GVNRVuY.jpg",
"title": "American Ninja 5",
"overview": "When a scientists daughter is kidnapped, American Ninja, attempts to find her, but this time he teams up with a youngster he has trained in the ways of the ninja."
},
{
"id": 468219,
"title": "Dead in a Week (Or Your Money Back)",
"release_date": "2018-09-12",
"poster": "https://image.tmdb.org/t/p/w1280/f4ANVEuEaGy2oP5M0Y2P1dwxUNn.jpg",
"overview": "William has failed to kill himself so many times that he outsources his suicide to aging assassin Leslie. But with the contract signed and death assured within a week (or his money back), William suddenly discovers reasons to live... However Leslie is under pressure from his boss to make sure the contract is completed."
}
],
"offset": 0,
"limit": 2,
"total": 50134
}
```

::: note
The response's `total` value response indicates the total number of documents in the queried index.
:::

## Add or replace documents

<RouteHighlighter method="POST" route="/indexes/{index_uid}/documents"/>
Expand Down