query-c371e1f70e0fac7ba68d331463e480b8

rq turtle/ttl

Performance of scholarly test server?I was hoping to do performance comparisons at some point but I don't think that's going to be possible - I was looking for a certain sample of article items and ran this query:

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX ps: <http://www.wikidata.org/prop/statement/>
PREFIX pq: <http://www.wikidata.org/prop/qualifier/>
PREFIX p: <http://www.wikidata.org/prop/>
select ?item ?stated_as WHERE {
  ?item p:P50 [ps:P50 ?author; pq:P1932 ?stated_as] .
  FILTER(wikibase:isSomeValue(?author))
} LIMIT 10

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?author") v3("?item"):::projected v2("?stated_as"):::projected a1((" ")) f0[["http://wikiba.se/ontology#isSomeValue(?author)"]] f0 --> v1 a1 --"p:statement/P50"--> v1 a1 --"p:qualifier/P1932"--> v2 v3 --"p:P50"--> a1