Wikidata:WikiProject LGBT: Difference between revisions

From Wikidata
Jump to navigation Jump to search
Content deleted Content added
Sweet kate (talk | contribs)
Sweet kate (talk | contribs)
Line 56: Line 56:
=== Useful with {{P|101}} or {{P|921}} ===
=== Useful with {{P|101}} or {{P|921}} ===
* {{Q|Q17625913}}
* {{Q|Q17625913}}
** {{Q|6517455}}
** {{Q|680831}}
** {{Q|1286736}}
** {{Q|1569096}}
** {{Q|943711}}
** {{Q|664194}}
* {{Q|2122680}}
* {{Q|2122680}}
* {{Q|Q1662673}}
* {{Q|Q1662673}}
* {{Q|15404978}}
* {{Q|154136}}
* {{Q|154136}}
* {{Q|17888}}
* {{Q|17888}}
* {{Q|48264}}
* {{Q|48264}}
* {{Q|170912}}
* {{Q|170912}}
* {{Q|17900}}
* {{Q|46839}}
* {{Q|2673498}}


=== Useful with {{P|106}} ===
=== Useful with {{P|106}} ===

Revision as of 17:56, 4 August 2019

WikiProject LGBT exists to improve LGBT-related content on Wikidata. Created in June 2014 as part of Wiki Loves Pride 2014, the WikiProject is supported by Wikimedia LGBT.

 Info You can use AutoEdit tool to add quickly label and description on WikiProject LGBT in many languages.

Useful properties

Person properties

These properties may be of particular use to LGBT subjects, potentially applicable to both humans and fictional characters.

Title ID Data type Description Examples Inverse
sex or genderP21Itemsex of humans, biological sex, gender and sex or gender: sex or gender identity of human or animal. For human: male, female, non-binary, intersex, transgender female, transgender male, agender, etc. For animal: male organism, female organism. Groups of same gender use subclass of (P279)Marie Curie <sex or gender> female-
sexual orientationP91Itemsexual orientation: the sexual orientation of the person relative to their declared gender — use ONLY IF they have stated it themselves, unambiguously, or it has been widely agreed upon by historians after their deathAlbert Verlinde <sexual orientation> homosexuality-
spouseP26Itemspouse: the subject has the object as their spouse (husband, wife, partner, etc.). Use "unmarried partner" (P451) for non-married companionsPierre Curie <spouse> Marie Curiespouse
unmarried partnerP451Itemcohabitor: someone with whom the person is in a relationship without being married. Use "spouse" (P26) for married couplesSimone de Beauvoir <unmarried partner> Jean-Paul Sartreunmarried partner
field of workP101Itemfield of work: specialization of a person or organization; see P106 for the occupationLisa Duggan <field of work> gender studies-

Literature & entertainment properties

Title ID Data type Description Examples Inverse
genreP136Itemgenre and by genre: creative work's genre or an artist's field of work (P101). Use main subject (P921) to relate creative works to their topicQueer as Folk <genre> LGBT-related film-
main subjectP921Itemtopic, matter and subject: primary topic of a work (see also P180: depicts)Call Me By Your Name <main subject> homosexualitystatement is subject of

Identifier properties

Title ID Data type Description Examples Inverse
Represent Me IDP6554External identifieridentifier of games on Represent MeStardew Valley <Represent Me ID> stardew-valley-
LGBTFansDB character IDP6780External identifieridentifier for a character entry on LGBT fans deserve better databaseLily Aldrin <LGBTFansDB character ID> lily-aldrin-met-mother-
LezWatch.TV actor IDP7105External identifierIDs for actors listed in the LezWatch.TV actor databaseAbbi Jacobson <LezWatch.TV actor ID> abbi-jacobson-
LezWatch.TV character IDP7106External identifierIDs for characters listed in the LezWatch.TV character databaseAnne Lister <LezWatch.TV character ID> anne-lister-
LezWatch.TV show IDP7107External identifierID for shows listed in LezWatch.TV show databaseThe 100 <LezWatch.TV show ID> the-100-

Main items

Useful with instance of (P31)

Arts & culture

Places & organizations

Useful with genre (P136)

Useful with occupation (P106)

Other relevant items

Models and schemas

Lists

Other topics

Wikidata Manual of Style for gender tags

Neither Wikidata nor WikiProject LGBT have formal consensus recommendations about applying gender values in Wikidata. For now, we have a collection of past conversations, which eventually the community can use to identify and establish recommendations. Anyone can list discussions here:

Queries

Politicians, born before 1910, who are LGBT+

The following query uses these:

  • Properties: sexual orientation (P91)  View with Reasonator View with SQID, sex or gender (P21)  View with Reasonator View with SQID, date of birth (P569)  View with Reasonator View with SQID, position held (P39)  View with Reasonator View with SQID, occupation (P106)  View with Reasonator View with SQID
    SELECT DISTINCT 
    ?person 
    ?label
    ?date
    WHERE {
      { ?person wdt:P91 ?orientation .} UNION {
        {VALUES ?gender {wd:Q1097630 wd:Q303479 wd:Q189125 wd:Q1052281 wd:Q2449503 wd:Q48270 #wd:Q1399232 wd:Q3277905 wd:Q746411 wd:Q350374 wd:Q660882
                        } .
        ?person wdt:P21 ?gender . }
      }
      VALUES (?earliest) {("01-01-01T00:00:00Z"^^xsd:dateTime)}
      VALUES (?latest) {("1910-01-01T00:00:00Z"^^xsd:dateTime)}
      ?person wdt:P569 ?date .
      hint:Prior hint:rangeSafe true .
      FILTER (?date >= ?earliest)
      FILTER (?date <= ?latest)
      {?person wdt:P39 ?role .} UNION { ?person wdt:P106 wd:Q82955 .}
      ?person rdfs:label ?label.
      FILTER(LANG(?label) = "en").
    
    } 
    ORDER BY DESC(?date)
    LIMIT 100
    

Academic fields sorted by the count of LGBT+ researchers publishing on the topic

SELECT DISTINCT 
?person 
?personLabel
?work
?workLabel
?topic
?topicLabel
(COUNT(?topic) AS ?count) 
WHERE {
  { ?person wdt:P91 ?orientation . 
    FILTER (?orientation != wd:Q1035954 )
  } 
    UNION {
      { ?person wdt:P21 wd:Q1097630 . } 
      UNION
      { ?person wdt:P21 wd:Q303479 . } 
      UNION
      { ?person wdt:P21 wd:Q189125 . } 
      UNION
      { ?person wdt:P21 wd:Q1052281 . } 
      UNION
      { ?person wdt:P21 wd:Q2449503 . } 
      UNION
      { ?person wdt:P21 wd:Q48270 . } 
      UNION
      { ?person wdt:P21 wd:Q1399232 . } 
      UNION
      { ?person wdt:P21 wd:Q3277905 . } 
      UNION
      { ?person wdt:P21 wd:Q746411 . } 
      UNION
      { ?person wdt:P21 wd:Q350374 . } 
      UNION
      { ?person wdt:P21 wd:Q660882 . } 
    }
  ?work wdt:P50 ?person ; wdt:P921 ?topic .
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
} 
GROUP BY ?person ?personLabel ?work ?workLabel ?topic ?topicLabel
ORDER BY DESC(?count)
LIMIT 1000
Try it!

Same-sex couples

SELECT
?h
?hLabel
?spouse
?spouseLabel
?genderLabel
WHERE {
   ?h wdt:P21 ?gender .
   ?h wdt:P26 ?spouse .
   ?spouse wdt:P21 ?genderr .
   FILTER (?gender = ?genderr)
   SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
 }
LIMIT 1000
Try it!

How can I help?

  1. Add sexual orientation (P91) and sex or gender (P21) to items about LGBT people
  2. Create items about LGBT associations, national or local (LGBTQ+ rights organization (Q6458277))
  3. Create items about Pride parades (pride parade (Q51404))
  4. Create items about LGBT choruses (LGBT chorus (Q1820625))
  5. Create items about LGBT bars (gay bar (Q1043639))
  6. Create items about LGBT film festival (LGBT film festival (Q62018250)). Looking on https://filmfreeway.com/festivals with "queer" as keyword yield still lots of results
  7. Add and complete characters with properties such as LGBTFansDB character ID (P6780), or properties linked to LezWatch.TV (Q65659302)
  8. Discuss with us about the project!
  9. Talk about Wikidata and WikiProject LGBT in your LGBT organization

Participants

[+] Add yourself to the list

The participants listed below can be notified using the following template in discussions:
{{Ping project|LGBT}}

Reports