This note collects all notes where the in property says Meeting.

# Meetings

TABLE WITHOUT ID
	file.link as Note,
	join(list(meetingGroups)) as Group,
	one-liner as One-liner
WHERE
	contains(in,link("Meetings")) and
	!contains(file.name, "Template")
SORT file.name desc

# Inline Meetings meeting::

This works well if you work within your daily note.

TABLE WITHOUT ID
  file.link as Note,
  meeting as Meeting
 
FROM 
  "Calendar"  
 
WHERE 
  meeting  
 
SORT 
  rows.file.day desc