Jump to content

Main Page: Difference between revisions

From wikibase
No edit summary
Line 27: Line 27:
SELECT ?E21_Person ?E21_PersonLabel WHERE {
SELECT ?E21_Person ?E21_PersonLabel WHERE {
   SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],mul,en,es". }
   SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],mul,en,es". }
   ?E21_Person wbt:P1 wb:Q74.
   ?E21_Person wbt:P1 wb:Q42.
}
}
</sparql>
</sparql>
Line 39: Line 39:
SELECT ?tipos ?tiposLabel WHERE {
SELECT ?tipos ?tiposLabel WHERE {
   SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],mul,es,en".}
   SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],mul,es,en".}
   ?tipos wbt:P1 wb:Q100.
   ?tipos wbt:P1 wb:Q68.
}
}
</sparql>
</sparql>

Revision as of 18:57, 10 February 2026

MediaWiki has been installed.

Consult the User's Guide for information on using the wiki software.

Getting started


Listados

Consultas de ejemplo

Personas registradas

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wb: <https://grafo.laoficinacultural.org/entity/>
PREFIX wbt: <https://grafo.laoficinacultural.org/prop/direct/>

SELECT ?E21_Person ?E21_PersonLabel WHERE {
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],mul,en,es". }
  ?E21_Person wbt:P1 wb:Q42.
}

Try it!


tipos en uso:

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wb: <https://grafo.laoficinacultural.org/entity/>
PREFIX wbt: <https://grafo.laoficinacultural.org/prop/direct/>

SELECT ?tipos ?tiposLabel WHERE {
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],mul,es,en".}
  ?tipos wbt:P1 wb:Q68.
}

Try it!


Collections:

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wb: <https://grafo.laoficinacultural.org/entity/>
PREFIX wbt: <https://grafo.laoficinacultural.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>

SELECT ?E78_Curated_Holding ?E78_Curated_HoldingLabel WHERE {
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],mul,es". }
  ?E78_Curated_Holding wdt:P176 wd:Q59.
}

Try it!