-
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. | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
||||||
.. versionadded:: 1.3 | ||||||
|
||||||
|
||||||
|
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()`. | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
||||||
.. versionadded:: 1.4 | ||||||
|
||||||
|
||||||
|
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. | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
||||||
|
||||||
.. contents:: On this page | ||||||
:local: | ||||||
|
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()`. | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
||||||
|
||||||
.. contents:: On this page | ||||||
:local: | ||||||
|
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. | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
||||||
|
||||||
.. contents:: On this page | ||||||
:local: | ||||||
|
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. | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
||||||
|
||||||
.. contents:: On this page | ||||||
:local: | ||||||
|
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. | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
||||||
.. deprecated:: 1.4 | ||||||
|
||||||
|
||||||
|
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. | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
||||||
.. versionadded:: 1.4 | ||||||
|
||||||
|
||||||
|
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. | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
||||||
|
||||||
.. contents:: On this page | ||||||
:local: | ||||||
|
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. | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
||||||
.. contents:: On this page | ||||||
:local: | ||||||
:backlinks: none | ||||||
|
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. | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
||||||
.. versionadded:: 1.17 | ||||||
|
||||||
.. contents:: On this page | ||||||
|
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. | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
||||||
.. versionadded:: 1.17 | ||||||
|
||||||
|
||||||
|
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. | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
||||||
|
||||||
.. contents:: On this page | ||||||
:local: | ||||||
|
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. | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
||||||
|
||||||
.. contents:: On this page | ||||||
:local: | ||||||
|
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. | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
||||||
.. contents:: On this page | ||||||
:local: | ||||||
:backlinks: none | ||||||
|
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. | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
||||||
|
||||||
.. contents:: On this page | ||||||
:local: | ||||||
|
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. | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
||||||
.. contents:: On this page | ||||||
:local: | ||||||
:backlinks: none | ||||||
|
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. | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
||||||
.. contents:: On this page | ||||||
:local: | ||||||
:backlinks: none | ||||||
|
Uh oh!
There was an error while loading. Please reload this page.