-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
40 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
LocationQuery criterion | ||
======================= | ||
|
||
``LocationQuery`` criterion can be used with Content search. It allows grouping of Location criteria | ||
so that they apply together on a Location. | ||
|
||
.. note:: | ||
|
||
This feature is available with both Solr and Legacy search engines. | ||
|
||
For example, the following query will return Content of type ``article`` if it has hidden Location in | ||
subtree ``/1/2/10/`` and visible Location in some other subtree: | ||
|
||
.. code-block:: php | ||
new Query([ | ||
'filter' => new LogicalAnd([ | ||
new ContentTypeIdentifier('article'), | ||
new Subtree('/1/2/10/'), | ||
new Visibility(Visibility::VISIBLE), | ||
]), | ||
]); | ||
Using ``LocationQuery`` criterion you can write a query that will return Content of type ``article`` | ||
only when it has a visible Location in subtree ``/1/2/10/``: | ||
|
||
.. code-block:: php | ||
new Query([ | ||
'filter' => new LogicalAnd([ | ||
new ContentTypeIdentifier('article'), | ||
new LocationQuery( | ||
new LogicalAnd([ | ||
new Subtree('/1/2/10/'), | ||
new Visibility(Visibility::VISIBLE), | ||
]) | ||
) | ||
]), | ||
]); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
* :doc:`/reference/installation_instructions` | ||
* :doc:`/reference/subdocuments` | ||
* :doc:`/reference/location_query` |