JsonB sorting within Resource.actions
I have a Resource with a jsonb column called
How do I default sort by `metadata ->> 'CreatedDate'?
metadataHow do I default sort by `metadata ->> 'CreatedDate'?
metadataactions do
read :read do
prepare build(sort: [expr(fragment("metadata->>'CreatedTime' DESC"))]) # <-- How do I do this?!
filter expr(isproject == true)
end
end