Is there a way to search task text with DQL? #949
-
Instead of doing full match like the code snippet below I want to see if there is a way to do partial match (i.e. cinludes or contains). Is there option to do this in dataview query language? Thanks for the help. Full match code that works, |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
Yes - |
Beta Was this translation helpful? Give feedback.
-
Thanks that is helpful and worked for me. To find this information should I be looking anywhere particular? I spent a lot of time in the docs but I did not see how to use contains. Now I tried to do this to find the date inside task like this, and this does not work. I am able to use this.file.day when I have inline variable defined. |
Beta Was this translation helpful? Give feedback.
Yes -
WHERE contains(text, "test")
for a "contains" check orWHERE regexmatch(text, ".+")
for regexes.