From 11180e7edd312ad870e72cabb8c1f87fde1d90aa Mon Sep 17 00:00:00 2001 From: cbullinger <115956901+cbullinger@users.noreply.github.com> Date: Tue, 6 Feb 2024 14:03:42 -0500 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Dachary --- source/sdk/flutter/crud/read.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/sdk/flutter/crud/read.txt b/source/sdk/flutter/crud/read.txt index 85912f7725..90e72968aa 100644 --- a/source/sdk/flutter/crud/read.txt +++ b/source/sdk/flutter/crud/read.txt @@ -157,7 +157,7 @@ Query Linked Objects .. versionadded:: 1.9.0 -You can find all objects that link to a given object by calling the +You can find all objects with an inverse relationship to a given object by calling the object's :flutter-sdk:`getBacklinks() ` method. In this example, we have a ``Bike`` object model with an ``owner`` property of type ``Person``: @@ -220,7 +220,7 @@ You can use iterable arguments in your filter. For example: .. literalinclude:: /examples/generated/flutter/read_write_data_test.snippet.filter-iterable.dart :language: dart -You can also filter by linking objects using the +You can also filter by inverse relationships using the ``@links..`` syntax. For example, a filter can match a ``Task`` object based on properties of the ``User`` object that references it: