Skip to content

Commit

Permalink
Tweak filter wording and API reference links
Browse files Browse the repository at this point in the history
  • Loading branch information
dacharyc committed Aug 7, 2024
1 parent 0a6b1b6 commit e7c5bfe
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,7 @@ You can also use the :ref:`Realm Query Language <realm-query-language>` (RQL)
to query realms. RQL is a string-based query language used to access the query
engine. When using RQL, you use the
:dotnet-sdk:`Filter() <reference/Realms.CollectionExtensions.html?q=Filter>`
method:

.. literalinclude:: /examples/generated/dotnet/QueryEngineExamples.snippet.rql.cs
:language: csharp
method.

.. important::

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
To filter a query, call :js-sdk:`filtered()
<classes/Results.html#filtered>` on the query results collection.
Pass a Realm Query Language query as argument to ``filtered()``.
<classes/Results.html#filtered>` on a collection. Pass a Realm Query Language
query as argument to ``filtered()``.

In the following example, we use RQL comparison operators to:

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,7 @@ To filter by property, you can pass Realm Query Language (RQL) filters and
operators, use Kotlin's built-in extension methods or the SDK's convenience
methods, or use a combination.

In the following example, we query a ``Frog`` object type and filter by the
``name`` property.
In the following example, we :kotlin-sdk:`query()
<io.realm.kotlin/-mutable-realm/query.html>` a ``Frog`` object type and
filter by the ``name`` property. We call the ``find()`` method to execute
the query.

0 comments on commit e7c5bfe

Please sign in to comment.