Wie kann mann nach Feldtype "Date" sortieren?

wie kann mann nach Feldtype “Date” in eine API anfrage sortieren?
z.b.: ich habe so ein Formatierung “format”: “DD MMMM YYYY”

gefunden )))

news.sort(function(a, b) {
   a.Datum = Number(new Date(a.Datum));
   b.Datum = Number(new Date(b.Datum));
   return b.Datum - a.Datum;
});

you can even do this directly using an additional parameter in your cockpit-api-query:

/api/collections/get/YOURCOLLECTION?sort[date]=-1&token=...

possible parameter vals for sort: -1 | 1 | <unset>