Order field by Descending Nulls Last
Provide order by option that moves nulls to the end of results per postgresql docs NULLS LAST
(https://www.postgresql.org/docs/current/queries-order.html#QUERIES-ORDER)
Nulls are last for ASC sorts by default, so it's only needed for DESC, so I'd propose adding a new DESC_NULLS_LAST
prop to the OrderDirection enum (https://firebase.google.com/docs/reference/data-connect/gql/enum#OrderDirection)
1
vote