The base contains a lot of notes. One of the properties of these notes contains link to other note. Is it possible to adjust the formula so that it contains the property of the note that I see in the database.
Things I have tried
In the example, the first column is the name of the note, the second is a link to another note? in the third column, I wrote what I want to see in it, and in the fourth column, what I actually see if I set up the formula like this - link.aliases.
You should be able to convert the link as a file using either asFile() or file() which will allow you to then access the properties under the note link points to and finally, the value(s) in the desired key …
For example, you could use a formula such as:
link.asFile().properties.aliases
… to get all the values stored in the aliases key in the note link references.
This could require some tweaking though, depending on the actual setup of your base, the data type of link, your wishes/needs, etc…