forked from mongodb/laravel-mongodb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdistinct.txt
66 lines (47 loc) · 1.88 KB
/
distinct.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-distinct-usage:
==============================
Retrieve Distinct Field Values
==============================
.. facet::
:name: genre
:values: reference
.. meta::
:keywords: unique, different, code example
.. contents:: On this page
:local:
:backlinks: none
:depth: 1
:class: singlecol
You can retrieve distinct field values of documents in a collection by calling the ``distinct()``
method on an object collection or a query builder.
To retrieve distinct field values, pass a query filter to the ``where()`` method and a field name
to the ``select()`` method. Then, call ``distinct()`` to return the unique values of the selected
field in documents that match the query filter.
Example
-------
This usage example performs the following actions:
- Uses the ``Movie`` Eloquent model to represent the ``movies`` collection in the
``sample_mflix`` database
- Retrieves distinct field values of documents from the ``movies`` collection that match a query filter
- Prints the distinct values
The example calls the following methods on the ``Movie`` model:
- ``where()``: matches documents in which the value of the ``directors`` field includes ``"Sofia Coppola"``.
- ``select()``: retrieves the matching documents' ``imdb.rating`` field values.
- ``distinct()``: retrieves the unique values of the selected field and returns
the list of values.
- ``get()``: retrieves the query results.
.. io-code-block::
:copyable: true
.. input:: ../includes/usage-examples/DistinctTest.php
:start-after: begin-distinct
:end-before: end-distinct
:language: php
:dedent:
.. output::
:language: console
:visible: false
[[5.6],[6.4],[7.2],[7.8]]
.. include:: /includes/usage-examples/fact-edit-laravel-app.rst
.. tip::
For more information about query filters, see the :ref:`laravel-retrieve-matching` section of
the Read Operations guide.