LGBTdb:Selected anniversaries
Selected anniversaries / On this day archive
It is now 14:23 on Sunday, May 17, 2026 (UTC)|Purge cache for this page
This set of pages serves as a queue of selected anniversaries which populate the section of the Main Page each day. These pages also help facilitate and coordinate updates to this queue. The selected anniversaries are taken from events in history on each day of the year and holidays/observances from current calendars.
Queue
<templatestyles src="LGBTdb:Main Page/styles.css"/>
Today
LGBTdb:Selected anniversaries/today links to a page showing today's selected anniversaries.
|
Tomorrow
|
Selected anniversaries / On this day archive
It is now 14:23 on Sunday, May 17, 2026 (UTC)|Purge cache for this page
Selected anniversaries / On this day archive
It is now 14:23 on Sunday, May 17, 2026 (UTC)|Purge cache for this page
Resources for finding new suggestions
- Portal:LGBTQ/Selected anniversaries - Wikipedia
- Holidays - Nonbinary Wiki
- List of Queer Awareness Days - LGBTQIA+ Wiki
- Queer Holidays - YB3 Wiki
- Timeline of LGBT Rights - Equaldex
- Today in Gay History - White Crane Institute
- Today in LGBTQ+ History - The Lavender Effect
Queries to find new entries
Birthdays
This query returns all instances of real-life (human) persons with a birth date today. It uses the service wikibase:label to return the labels in your default language or in English.
PREFIX wd: <https://lgbtdb.wikibase.cloud/entity/>
PREFIX wdt: <https://lgbtdb.wikibase.cloud/prop/direct/>
SELECT DISTINCT ?person ?personLabel ?bdate
WHERE
{
?person wdt:P1 wd:Q8775 . # Must be a human person (a real-life person)
?person wdt:P141 ?bdate .
FILTER (
(MONTH(?bdate) = MONTH(NOW())) &&
(DAY(?bdate) = DAY(NOW()))
)
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } # Helps get the label in your language, if not, then en (English) language
}
ORDER BY ?bdate
Deathdays
This query returns all instances of real-life (human) persons with a death date today. It uses the service wikibase:label to return the labels in your default language or in English.
PREFIX wd: <https://lgbtdb.wikibase.cloud/entity/>
PREFIX wdt: <https://lgbtdb.wikibase.cloud/prop/direct/>
SELECT DISTINCT ?person ?personLabel ?ddate
WHERE
{
?person wdt:P1 wd:Q8775 . # Must be a human person (a real-life person)
?person wdt:P142 ?ddate .
FILTER (
(MONTH(?ddate) = MONTH(NOW())) &&
(DAY(?ddate) = DAY(NOW()))
)
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } # Helps get the label in your language, if not, then en (English) language
}
ORDER BY ?bdate