forked from mongodb/laravel-mongodb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrunCommand.txt
65 lines (48 loc) · 1.65 KB
/
runCommand.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
.. _laravel-run-command-usage:
=============
Run a Command
=============
.. facet::
:name: genre
:values: reference
.. meta::
:keywords: server command, list collections, code example
.. contents:: On this page
:local:
:backlinks: none
:depth: 1
:class: singlecol
You can run a MongoDB command directly on a database by calling the ``command()``
method on a database connection instance.
To run a command, call the ``command()`` method and pass it a document that
contains the command and its parameters.
Example
-------
This usage example performs the following actions on the database connection
instance that uses the ``sample_mflix`` database:
- Creates a database connection instance that references the ``sample_mflix``
database
- Specifies a command to retrieve a list of collections and views in the
``sample_mflix`` database
- Prints the value of the ``name`` field of each result returned by the command
The example calls the ``command()`` method to run the ``listCollections`` command. This method
returns a cursor that contains a result document for each collection in the database.
.. io-code-block::
.. input:: ../includes/usage-examples/RunCommandTest.php
:start-after: begin-command
:end-before: end-command
:language: php
:dedent:
.. output::
:language: console
:visible: false
sessions
movies
theaters
comments
embedded_movies
users
.. include:: /includes/usage-examples/fact-edit-laravel-app.rst
.. tip::
To learn more about running MongoDB database commands, see
:manual:`Database Commands </reference/command/>` in the {+server-docs-name+}.