query-968ed7a1b0023732ff0c1e2192cdf023

rq turtle/ttl

FontsWhere was the original query? There were a lot of issues with semantics. compare font whose description is "particular size, weight and style of a typeface".(Q4868296)font see Standard Music Font Layout(Q106776681)Standard Music Font Layout PostScript core fonts level 2(Q55078030)PostScript core fonts level 2 Font classification Unicode typeface(Q4526631)Unicode typeface dingbat typeface(Q47167051)dingbat typeface sans-serif typeface(Q864011)sans-serif serif typeface(Q58480509)serif typeface Typeface(Q17451)typeface Instances of a typeface Palatino(Q1093499)Palatino Noto Sans Siddham(Q75925623)Noto Sans Siddham Noto Sans(Q74538912)Noto Sans Noto Music(Q75905102)Noto Music Symbol typeface(Q187829)Symbol Times New Roman(Q213048)Times New Roman Publishers International Typeface Corporation(Q1504199)International Typeface Corporation Mergenthaler Linotype(Q2075244)Mergenthaler Linotype Company Microsoft(Q2283)Microsoft Monotype(Q1583606)Monotype Adobe (Q11463)Adobe (P4586)type foundry Type Foundry Adobe Type (part of Adobe)(Q145253)Adobe Type (P10687)Google Fonts ID Google Font ID

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?font ?fontLabel ?publisher ?publisherLabel
{
  # instance of a type face (aka font family?)
  ?font wdt:P31/wdt:P279* wd:Q17451 .

  optional {
    ?font wdt:P123 ?publisher .
  }

  optional {
    ?font wdt:P4586 ?foundry .
  }

  SERVICE wikibase:label {
     bd:serviceParam wikibase:language "en" .
  }

} ORDER BY ?fontLabel

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?font"):::projected v1("?fontLabel"):::projected v4("?foundry") v3("?publisher"):::projected a1((" ")) c7(["bd:serviceParam"]):::iri c3(["wd:Q17451"]):::iri c9(["en"]):::literal v2 --"wdt:P31"--> a1 a1 --"wdt:P279"--> c3 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P123".-> v3 end subgraph optional1["(optional)"] style optional1 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P4586".-> v4 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end