Skip to content

Commit

Permalink
Fix data structure in "Joins in EQL"
Browse files Browse the repository at this point in the history
In the last example of "Joins in EQL" subsection, :list/items field in returned data structure should be [{:todo/label ...} {:todo/label ...} {:todo/label...}] instead of [{:todo/label ... :todo/label ... :todo/label}]
  • Loading branch information
lukoramu authored and holyjak committed Jun 19, 2022
1 parent f5e994a commit 0c8e8bf
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions modules/tutorial-eql-pathom-overview/pages/index.adoc
Expand Up @@ -202,14 +202,14 @@ on `:list/items` like so:
{:all-lists
[{:list/id 1
:list/name "Personal"
:list/items [{:todo/label "Buy Milk"
:todo/label "Cook Dinner"
:todo/label "Mail Letter"}]}
:list/items [{:todo/label "Buy Milk"}
{:todo/label "Cook Dinner"}
{:todo/label "Mail Letter"}]}
{:list/id 2
:list/name "Work"
:list/items [{:todo/label "Write TPS Report"
:todo/label "Send Emails"
:todo/label "Have Meeting"}]}]}
:list/items [{:todo/label "Write TPS Report"}
{:todo/label "Send Emails"}
{:todo/label "Have Meeting"}]}]}
----

Notice a couple of things about the example above:
Expand Down

0 comments on commit 0c8e8bf

Please sign in to comment.