User:Iwan.Aucamp/WIP/SourceMeta

ACM edit

Objects:

Properties:

Property Queries edit

Items with issued by (P2378) of Association for Computing Machinery (Q127992):

SELECT ?item ?itemLabel ?itemDescription ?instanceOf ?instanceOfLabel {
  # P2378: issued by
  # Q127992: Association for Computing Machinery
  ?item wdt:P2378 wd:Q127992.
  OPTIONAL { ?item wdt:P31 ?instanceOf }
  SERVICE wikibase:label {bd:serviceParam wikibase:language "en" }
}
Try it!


Items with ACM Digital Library author ID (P864):

SELECT ?item ?itemLabel ?itemDescription ?idValue ?instanceOf ?instanceOfLabel {
  # P864: ACM Digital Library author ID	
  ?item wdt:P864 ?idValue.
  OPTIONAL { ?item wdt:P31 ?instanceOf }
  SERVICE wikibase:label {bd:serviceParam wikibase:language "en" }
}
Try it!

Items with ACM Classification Code (2012) (P2179):

SELECT ?item ?itemLabel ?itemDescription ?idValue ?instanceOf ?instanceOfLabel {
  # P864: ACM Classification Code (2012)
  ?item wdt:P2179 ?idValue.
  OPTIONAL { ?item wdt:P31 ?instanceOf }
  SERVICE wikibase:label {bd:serviceParam wikibase:language "en" }
}
Try it!

Items with ACM Digital Library citation ID (P3332):

SELECT ?item ?itemLabel ?itemDescription ?idValue ?instanceOf ?instanceOfLabel {
  # P3332: ACM Digital Library citation ID
  ?item wdt:P3332 ?idValue.
  OPTIONAL { ?item wdt:P31 ?instanceOf }
  SERVICE wikibase:label {bd:serviceParam wikibase:language "en" }
}
Try it!

Items with ACM Digital Library event ID (P3333):

SELECT ?item ?itemLabel ?itemDescription ?idValue ?instanceOf ?instanceOfLabel {
  # P3333: ACM Digital Library event ID
  ?item wdt:P3333 ?idValue.
  OPTIONAL { ?item wdt:P31 ?instanceOf }
  SERVICE wikibase:label {bd:serviceParam wikibase:language "en" }
}
Try it!

Links edit

Other Queries edit

Items with organizer (P664) of Association for Computing Machinery (Q127992):

SELECT ?item ?itemLabel ?itemDescription ?instanceOf ?instanceOfLabel {
  # P664: organizer
  # Q127992: Association for Computing Machinery
  ?item wdt:P664 wd:Q127992.
  OPTIONAL { ?item wdt:P31 ?instanceOf }
  SERVICE wikibase:label {bd:serviceParam wikibase:language "en" }
}
Try it!

Items with publisher (P123) of Association for Computing Machinery (Q127992):

SELECT ?item ?itemLabel ?itemDescription ?instanceOf ?instanceOfLabel {
  # P123: publisher
  # Q127992: Association for Computing Machinery
  ?item wdt:P123 wd:Q127992.
  OPTIONAL { ?item wdt:P31 ?instanceOf }
  SERVICE wikibase:label {bd:serviceParam wikibase:language "en" }
}
Try it!

Items with publisher (P123) of Association for Computing Machinery (Q127992) that does NOT have instance of (P31) subclass of (P279) article (Q191067):

TODO ...

SELECT ?item ?itemLabel ?itemDescription ?instanceOf ?instanceOfLabel {
  # P123: publisher
  # Q127992: Association for Computing Machinery
  ?item wdt:P123 wd:Q127992.
  MINUS { ?item wdt:P31/wdt:P279* wd:Q191067. }
  OPTIONAL { ?item wdt:P31 ?instanceOf }
  SERVICE wikibase:label {bd:serviceParam wikibase:language "en" }
}
Try it!

Items with publisher (P123) of Association for Computing Machinery (Q127992) that that has instance of (P31) subclass of (P279) article (Q191067):

SELECT ?item ?itemLabel ?itemDescription ?instanceOf ?instanceOfLabel {
  # P123: publisher
  # Q127992: Association for Computing Machinery
  ?item wdt:P123 wd:Q127992.
  ?item wdt:P31/wdt:P279* wd:Q191067.
  OPTIONAL { ?item wdt:P31 ?instanceOf }
  SERVICE wikibase:label {bd:serviceParam wikibase:language "en" }
}
LIMIT 10
Try it!

Tools edit

Links edit

Items edit

test data edit

https://dl.acm.org/doi/10.1145/1464420.1464425
https://dl.acm.org/doi/10.1145/3377454
https://dl.acm.org/doi/10.1145/3369026
https://dl.acm.org/doi/10.1145/505282.505283

https://dl.acm.org/doi/10.4018/IRMJ.2018100104

code help edit

code queries edit

Get all formater URIs:

SELECT DISTINCT ?property ?propertyLabel ?propertyDescription ?rel ?formatterUrl {
  ?property rdf:type wikibase:Property.
  ?property ( wdt:P1630| wdt:P3303 | wdt:P1921 | wdt:P7250 | wdt:P7470 ) ?formatterUrl.
  ?property ?rel ?formatterUrl.
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
Try it!