Nathan Nannenga

2 daughters:
Evelyn, Eleanor (Ella)


Feedback Log:

table without id
	file.link as Note,
	feedback_date as Date,
	feedback_type as Type,
	url as Link
where
	contains(category, link("Feedback Logs")) and
	contains(team_member, this.file.link)
sort feedback_date desc

Areas for Improvement:

table without id
	file.link as "Area for Improvement"
where
	contains(category, link("Areas for Improvement")) and
	contains(team_member, this.file.link)

Reflections:

table without id
	file.link as Reflection,
	assessment as Assessment,
	improvement_areas as "Areas for Improvement",
	date(reflection_date) as Date
where
  contains(category, link("Buffer Reflections")) and
	contains(team_member, this.file.link)
sort reflection_date desc

Meetings with Nathan Nannenga:

table without id
	file.link as Note,
	meeting_type as "Meeting Type",
	date(meeting_date) as Date
where
	contains(category, link("Meetings")) and
	contains(attendees, this.file.link) and
	meeting_date >= date(today) - dur(90 days)
sort meeting_date desc

Mentions of Nathan Nannenga:

TABLE WITHOUT ID
	file.link AS "Mentioned in:",
	category
FROM [[]]
WHERE
	(
		contains(file.outlinks, this.file.link) or
		contains(file.content, this.file.name)
	) and
	!(
		contains(attendees, this.file.link) or
		contains(category, link("Feedback Logs")) or
		contains(category, link("Buffer Reflections"))
	)
	and
		file.mtime >= date(today) - dur(90 days)
SORT file.mtime DESC