There are some (lots) of collections that can't be built using the current collection rules, such as collecting all images shot in a month irrespective of year as was discussed in https://discuss.pixls.us/t/filtering-collection-on-capture-date-but-by-month-only/51621
Describe the solution you'd like
The ability to write a SQL where clause such as strftime("%m", datetime_taken) = '05', which would be appended to select * from images where . The example given would select all images shot in May.
Alternatives
Perhaps a query builder, but I think that would be horribly difficult to make usable without making it huge.
There are some (lots) of collections that can't be built using the current collection rules, such as collecting all images shot in a month irrespective of year as was discussed in https://discuss.pixls.us/t/filtering-collection-on-capture-date-but-by-month-only/51621
Describe the solution you'd like
The ability to write a SQL where clause such as
strftime("%m", datetime_taken) = '05', which would be appended toselect * from images where. The example given would select all images shot in May.Alternatives
Perhaps a query builder, but I think that would be horribly difficult to make usable without making it huge.