Skip to content

Commit

Permalink
Fix or remove broken API reference links
Browse files Browse the repository at this point in the history
  • Loading branch information
dacharyc committed Aug 6, 2024
1 parent 072230f commit 13a563e
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 13 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
To query for objects of a given type in the database, pass the object type
``YourClassName`` to the :cpp-sdk:`db::query\<T\>
<structrealm_1_1query.html>` member function.
``YourClassName`` to the :cpp-sdk:`db::objects\<T\> <structrealm_1_1db.html>`
member function.

This returns a :cpp-sdk:`Results <structrealm_1_1results.html>` object
representing all objects of the given type in the database.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
:cpp-sdk:`Query operations <structrealm_1_1query.html>` return a
:cpp-sdk:`results collection <structrealm_1_1results.html>`. Results
collections may be either live or frozen.
Query operationsn return a :cpp-sdk:`results collection
<structrealm_1_1results.html>`. Results collections may be either live or
frozen.

- **Live results** always contain the latest results of the associated query.
- **Frozen results** represent a snapshot that cannot be modified and doesn't
Expand Down
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
To read all objects of a certain type, call ``Realm.All<T>``, where ``T``
is the SDK object type.
To read all objects of a certain type, call
:dotnet-sdk:`Realm.All\<T\> <reference/Realms.Realm.html#Realms_Realm_All__1>`,
where ``T`` is the SDK object type.
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
To find objects stored within a database:

1. Query for objects of a given type in the database. Pass the object type
to the :dotnet-sdk:`Realm.All\<T\> <reference/Realms.Realm.html#Realms_Realm_All__1>` method.
to the :dotnet-sdk:`Realm.All\<T\> <reference/Realms.Realm.html#Realms_Realm_All__1>`
method.

#. Optionally, pass any query conditions to further refine the results:

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
:dotnet-sdk:`Query operations
<https://www.mongodb.com/docs/realm-sdks/dotnet/latest/linqsupport.html>`
:dotnet-sdk:`Query operations <linqsupport.html>`
return an ``IQueryable<T>``, which represents a collection of all objects
of the given type in the database. This collection may be either live or frozen.

Expand Down
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
Retrieve a collection of all objects of a given type in the database with the
:flutter-sdk:`Realm.all() <realm/Realm/all.html>` method.
:flutter-sdk:`Realm.all\<T\>() <realm/Realm/all.html>` method.
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
In order to access all instances of a given type in the database, use
the :java-sdk:`where() <io/realm/RealmResults.html#where-->` method
to specify a class.
the :java-sdk:`Realm.where() <io/realm/Realm.html#where(java.lang.Class)>`
method to specify a class.

0 comments on commit 13a563e

Please sign in to comment.