Skip to content

Commit

Permalink
Fix list formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
cbullinger committed Mar 21, 2024
1 parent 22945ea commit 7a47f8b
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions source/sdk/flutter/crud/read.txt
Original file line number Diff line number Diff line change
Expand Up @@ -223,14 +223,17 @@ information.
For nested collections, you can also use:

- Bracket notation, which provides additional collection query support:
- ``[FIRST]`` and [``LAST``] - match the first or last elements within the collection
- ``[<int>]`` - match the element at the specific index
- ``[*]`` - match any elements within the collection
- ``[SIZE]`` - match the collection length

- ``[FIRST]`` and [``LAST``] - match the first or last elements within the collection
- ``[<int>]`` - match the element at the specific index
- ``[*]`` - match any elements within the collection
- ``[SIZE]`` - match the collection length

- The ``@type`` operator, which has the following possible values:
- ``array`` and ``list`` - match a list collection
- ``dictionary`` and ``object`` - match a map collection
- ``collection`` - matches a list or a map collection

- ``array`` and ``list`` - match a list collection
- ``dictionary`` and ``object`` - match a map collection
- ``collection`` - matches a list or a map collection

.. literalinclude:: /examples/generated/flutter/read_write_data_test.snippet.filter-nested-collections.dart
:language: dart
Expand Down

0 comments on commit 7a47f8b

Please sign in to comment.