Difference between revisions of "University Logos"

From BITPlan cr Wiki
Jump to navigation Jump to search
Line 1: Line 1:
 +
= The logo image Wikidata Property =
 +
''graphic mark or emblem commonly used by commercial enterprises, organizations and products''
 +
* https://www.wikidata.org/wiki/Property:P154
 +
 +
= Example: University Logos =
 
<source lang='sparql'>
 
<source lang='sparql'>
 
# University Logos
 
# University Logos

Revision as of 09:20, 16 March 2023

The logo image Wikidata Property

graphic mark or emblem commonly used by commercial enterprises, organizations and products

Example: University Logos

# University Logos
# WF 2023-03-11
SELECT ?item ?itemLabel ?logo
WHERE 
{
  ?item wdt:P31 wd:Q3918.
  ?item rdfs:label ?itemLabel.
  FILTER(LANG(?itemLabel)="en")
  ?item wdt:P154 ?logo
} 
ORDER BY ?itemLabel

try it!