-
Notifications
You must be signed in to change notification settings - Fork 34
Add missing meta descriptions #235
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -2,6 +2,9 @@ | |||||
| MongoDB\\Client::startSession() | ||||||
| =============================== | ||||||
|
|
||||||
| .. meta:: | ||||||
| :description: Start a new client session in PHP using `MongoDB\Client::startSession()` and handle potential exceptions. | ||||||
|
||||||
| :description: Start a new client session in PHP using `MongoDB\Client::startSession()` and handle potential exceptions. | |
| :description: Start a new client session with the MongoDB PHP Library and handle potential exceptions. |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -2,6 +2,9 @@ | |||||
| MongoDB\\Client::watch() | ||||||
| ======================== | ||||||
|
|
||||||
| .. meta:: | ||||||
| :description: Execute a change stream operation on the client to monitor cluster-level changes using `MongoDB\Client::watch()`. | ||||||
|
||||||
| :description: Execute a change stream operation on the client to monitor cluster-level changes using `MongoDB\Client::watch()`. | |
| :description: Execute a change stream operation on the Client to monitor cluster-level changes with the MongoDB PHP Library. |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -2,6 +2,9 @@ | |||||
| MongoDB\\Client::__construct() | ||||||
| ============================== | ||||||
|
|
||||||
| .. meta:: | ||||||
| :description: Learn how to construct a new MongoDB Client instance in PHP, including options for connection strings, authentication, SSL, and custom type maps. | ||||||
|
||||||
| :description: Learn how to construct a new MongoDB Client instance in PHP, including options for connection strings, authentication, SSL, and custom type maps. | |
| :description: Learn how to construct a new MongoDB Client instance with the MongoDB PHP Library, including options for connection strings, authentication, SSL, and custom type maps. |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -2,6 +2,9 @@ | |||||
| MongoDB\\Client::__get() | ||||||
| ======================== | ||||||
|
|
||||||
| .. meta:: | ||||||
| :description: Access a database on the server using the `MongoDB\Client::__get()` method, which acts as an alias for `selectDatabase()`. | ||||||
|
||||||
| :description: Access a database on the server using the `MongoDB\Client::__get()` method, which acts as an alias for `selectDatabase()`. | |
| :description: Access a database on the server with the MongoDB PHP Library, which acts as an alias for the selectDatabase() method. |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -2,6 +2,9 @@ | |||||
| MongoDB\\Collection::aggregate() | ||||||
| ================================ | ||||||
|
|
||||||
| .. meta:: | ||||||
| :description: Execute an aggregation framework pipeline operation on a collection using `MongoDB\Collection::aggregate()` with various customizable options. | ||||||
|
||||||
| :description: Execute an aggregation framework pipeline operation on a collection using `MongoDB\Collection::aggregate()` with various customizable options. | |
| :description: Execute an aggregation framework pipeline operation on a collection with the MongoDB PHP Library, with various customizable options. |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -2,6 +2,9 @@ | |||||
| MongoDB\\Collection::bulkWrite() | ||||||
| ================================ | ||||||
|
|
||||||
| .. meta:: | ||||||
| :description: Execute multiple write operations in MongoDB using `bulkWrite()` with options for write concern, session, and more. | ||||||
|
||||||
| :description: Execute multiple write operations in MongoDB using `bulkWrite()` with options for write concern, session, and more. | |
| :description: Execute multiple write operations with the MongoDB PHP Library, with options for write concern, session, and more. |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -2,6 +2,9 @@ | |||||
| MongoDB\\Collection::count() | ||||||
| ============================ | ||||||
|
|
||||||
| .. meta:: | ||||||
| :description: Count documents matching filter criteria using `MongoDB\Collection::count()`, with options for collation, hint, limit, and more. | ||||||
|
||||||
| :description: Count documents matching filter criteria using `MongoDB\Collection::count()`, with options for collation, hint, limit, and more. | |
| :description: Count documents matching a filter criteria with the MongoDB PHP Library, with options for collation, hint, limit, and more. |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -2,6 +2,9 @@ | |||||
| MongoDB\\Collection::countDocuments() | ||||||
| ===================================== | ||||||
|
|
||||||
| .. meta:: | ||||||
| :description: Count documents in a collection matching filter criteria using `MongoDB\Collection::countDocuments()` with various options for customization. | ||||||
|
||||||
| :description: Count documents in a collection matching filter criteria using `MongoDB\Collection::countDocuments()` with various options for customization. | |
| :description: Count documents in a collection matching a filter criteria with the MongoDB PHP Library, with various options for customization. |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -2,6 +2,9 @@ | |||||
| MongoDB\\Collection::createIndex() | ||||||
| ================================== | ||||||
|
|
||||||
| .. meta:: | ||||||
| :description: Create an index in a MongoDB collection using `createIndex()` with options for collation, TTL, uniqueness, and more. | ||||||
|
||||||
| :description: Create an index in a MongoDB collection using `createIndex()` with options for collation, TTL, uniqueness, and more. | |
| :description: Create an index in a MongoDB collection with the MongoDB PHP Library, with options for collation, TTL, uniqueness, and more. |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -2,6 +2,9 @@ | |||||
| MongoDB\\Collection::createIndexes() | ||||||
| ==================================== | ||||||
|
|
||||||
| .. meta:: | ||||||
| :description: Create one or more indexes for a collection using `MongoDB\Collection::createIndexes()` with options for unique, compound, and 2dsphere indexes. | ||||||
|
||||||
| :description: Create one or more indexes for a collection using `MongoDB\Collection::createIndexes()` with options for unique, compound, and 2dsphere indexes. | |
| :description: Create one or more indexes for a collection with the MongoDB PHP Library, with options for unique, compound, and 2dsphere indexes. |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -2,6 +2,9 @@ | |||||
| MongoDB\\Collection::createSearchIndex() | ||||||
| ======================================== | ||||||
|
|
||||||
| .. meta:: | ||||||
| :description: Create an Atlas Search or Vector Search index for a collection using `MongoDB\Collection::createSearchIndex()` in PHP, specifying index type and options. | ||||||
|
||||||
| :description: Create an Atlas Search or Vector Search index for a collection using `MongoDB\Collection::createSearchIndex()` in PHP, specifying index type and options. | |
| :description: Create an Atlas Search or Vector Search index for a collection with the MongoDB PHP Library, specifying index type and options. |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -2,6 +2,9 @@ | |||||
| MongoDB\\Collection::createSearchIndexes() | ||||||
| ========================================== | ||||||
|
|
||||||
| .. meta:: | ||||||
| :description: Create Atlas Search or Vector Search indexes for a collection using `createSearchIndexes()` in PHP, specifying index definitions and options. | ||||||
|
||||||
| :description: Create Atlas Search or Vector Search indexes for a collection using `createSearchIndexes()` in PHP, specifying index definitions and options. | |
| :description: Create Atlas Search or Vector Search indexes for a collection with the MongoDB PHP Library, specifying index definitions and options. |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -2,6 +2,9 @@ | |||||
| MongoDB\\Collection::deleteMany() | ||||||
| ================================= | ||||||
|
|
||||||
| .. meta:: | ||||||
| :description: Delete multiple documents in a collection using `deleteMany()` with options for collation, hint, and write concern. | ||||||
|
||||||
| :description: Delete multiple documents in a collection using `deleteMany()` with options for collation, hint, and write concern. | |
| :description: Delete multiple documents in a collection with the MongoDB PHP Library, with options for collation, hint, and write concern. |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -2,6 +2,9 @@ | |||||
| MongoDB\\Collection::deleteOne() | ||||||
| ================================ | ||||||
|
|
||||||
| .. meta:: | ||||||
| :description: Delete a single document matching filter criteria using `MongoDB\Collection::deleteOne()` with options for collation, hint, and write concern. | ||||||
|
||||||
| :description: Delete a single document matching filter criteria using `MongoDB\Collection::deleteOne()` with options for collation, hint, and write concern. | |
| :description: Delete a single document matching a filter criteria with the MongoDB PHP Library, with options for collation, hint, and write concern. |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -2,6 +2,9 @@ | |||||
| MongoDB\\Collection::distinct() | ||||||
| =============================== | ||||||
|
|
||||||
| .. meta:: | ||||||
| :description: Find distinct values for a specified field in a MongoDB collection using the `distinct()` method, with options for filtering and additional parameters. | ||||||
|
||||||
| :description: Find distinct values for a specified field in a MongoDB collection using the `distinct()` method, with options for filtering and additional parameters. | |
| :description: Find distinct values for a specified field in a collection with the MongoDB PHP Library, with options for filtering and additional parameters. |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -2,6 +2,9 @@ | |||||
| MongoDB\\Collection::drop() | ||||||
| =========================== | ||||||
|
|
||||||
| .. meta:: | ||||||
| :description: Explore how to use the `MongoDB\Collection::drop()` method to remove a collection, including options for write concern and session management. | ||||||
|
||||||
| :description: Explore how to use the `MongoDB\Collection::drop()` method to remove a collection, including options for write concern and session management. | |
| :description: Remove a collection with the MongoDB PHP Library, including options for write concern and session management. |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -2,6 +2,9 @@ | |||||
| MongoDB\\Collection::dropIndex() | ||||||
| ================================ | ||||||
|
|
||||||
| .. meta:: | ||||||
| :description: Drop an index from a collection using `MongoDB\Collection::dropIndex()` with options for session, write concern, and more. | ||||||
|
||||||
| :description: Drop an index from a collection using `MongoDB\Collection::dropIndex()` with options for session, write concern, and more. | |
| :description: Drop an index from a collection with the MongoDB PHP Library, with options for session, write concern, and more. |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -2,6 +2,9 @@ | |||||
| MongoDB\\Collection::dropIndexes() | ||||||
| ================================== | ||||||
|
|
||||||
| .. meta:: | ||||||
| :description: Drop all indexes in a MongoDB collection except the `_id` index using the `dropIndexes()` method, with options for comments, time limits, and write concerns. | ||||||
|
||||||
| :description: Drop all indexes in a MongoDB collection except the `_id` index using the `dropIndexes()` method, with options for comments, time limits, and write concerns. | |
| :description: Drop all indexes in a MongoDB collection except the `_id` index with the MongoDB PHP Library, with options for comments, time limits, and write concerns. |
Uh oh!
There was an error while loading. Please reload this page.