You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Here I would expect hour/minute/second to be true and the others false.
For now I've written my code to look specifically for isCertain('year') && isCertain('month') && isCertain('day') && !isCertain('hour') && !isCertain('minute') && !isCertain('second') to try to answer the question "can I ignore the time component from this query?", which seems to work.
The text was updated successfully, but these errors were encountered:
However, I noticed there are probably more issues that have already been fixed in v2 and I have less time to keep them both up-to-date. For the longer term, you should update to v2.
This might just be me misunderstanding what's supposed to happen, but (in the v1 branch):
This works as expected. However:
Here I would expect hour/minute/second to be
true
and the othersfalse
.For now I've written my code to look specifically for
isCertain('year') && isCertain('month') && isCertain('day') && !isCertain('hour') && !isCertain('minute') && !isCertain('second')
to try to answer the question "can I ignore the time component from this query?", which seems to work.The text was updated successfully, but these errors were encountered: