How to access the value defined in the key of target files? #779
-
I have two files/notes that are defined as follows: [[Project action A]]
[[Project A]]
I then use the following query to access the status of the
I also tried to check the keys of
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
DataviewJS doesn't currently allow directly indexing "through" links (it's possibly but a little tricky); you use
|
Beta Was this translation helpful? Give feedback.
DataviewJS doesn't currently allow directly indexing "through" links (it's possibly but a little tricky); you use
dv.page()
to resolve links instead. So to get your project status, usedv.page(k.project).status
.