Dataview query for tasks where task text contains link used in Properties/YAML

What I’m trying to do

I am trying to create a section of a 1o1 template, where open questions and tasks are relating to the person I have the 1o1 with are queried.

The template has a YAML field “attendee” where I provide the person’s name as an Obsidian link (format [[First name.Family Name]]

Things I have tried

I have tried the following format:

TASK
WHERE contains(text,this.attendee) AND status = " " AND !fullyCompleted AND contains(tags,"#task")
GROUP BY file.link

In different variations, I wrote “[[this.attendee]]” or [[this.attendee]].

What am I overlooking?