Query two property key value pairs failed

I noticed that querying two property key value pairs failed after the new release, so (and (property type book) (property status READING)) failed to render, but (and (property type book) (not [[tag1]]))seems fine

What version? I’m on 0.7.6 and it works as always for me.

Thanks for the reply!
I’m 0.7.6 on mac. I installed the Logseq-darwin-x64-0.7.6.zip.

Having the same issue – I’m trying to exclude both the resource-status value “unread” and “unlinked”

{{query (and (property note-type resource) (not(property resource-status unread) (not(property resource-status unlinked))))}}

However, with the query written like this, blocks with the resource status “unread” keep showing up. I tried running the NOT filter only for “unlinked” and then it works fine. I also tried

{{query (and (property note-type resource) (not(or(property resource-status unread) (property resource-status unlinked))))}}

but that just ends up not excluding either of the resource-status values :rofl:

Are there syntax errors or is this a bug?