Dataview tasks due date issue

Things I have tried

I searched forum and DataView docs for solution, I found few, but they didn’t work for me

What I’m trying to do

Hello!
I’m trying to do a very simple thing with dataview - get tasks that is due today

I have task like this, for example:

- [ ] Test task [due:: 2022-02-15]

My dataview:

     TASK
     WHERE due = date(2022-02-15)

But that doesn’t return any results.
Am I doing something wrong?

DataView verison - 0.4.23d

It seems that due is actually list with 2 values for some reason.
So if I change code to the one like below, everything works as expected.

Maybe, dataview behaviour changed after some update?

TASK
WHERE due[0] = date(2022-02-15)
1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.