@preloads [
:list,
:user,
:syndications,
:images,
:links_from,
:links_to,
tags: [
:notes,
notes_published:
Note
|> where_published()
|> order_by(desc: :updated_at),
notes_unpublished:
Note
|> where_unpublished()
|> order_by(desc: :updated_at)
]
]
Is this a normal preload? Looks a bit.. funny.