From 3bb333e7bfb503b448c004c89a2703c47a4e92ca Mon Sep 17 00:00:00 2001 From: Nicolas Raoul Date: Wed, 16 Jul 2025 17:12:51 +0900 Subject: [PATCH] formatting, comments --- app/src/main/resources/queries/query_for_item.rq | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/app/src/main/resources/queries/query_for_item.rq b/app/src/main/resources/queries/query_for_item.rq index 07e835b73..e4421da81 100644 --- a/app/src/main/resources/queries/query_for_item.rq +++ b/app/src/main/resources/queries/query_for_item.rq @@ -14,18 +14,19 @@ SELECT ?pointInTime WHERE { SERVICE { - VALUES ?item { ${ENTITY} } + VALUES ?item {${ENTITY}} } - # Get item label/class label/description in the preferred language of the user - SERVICE wikibase:label { bd:serviceParam wikibase:language "${LANG},en,aa,ab,ae,af,ak,am,an,ar,as,av,ay,az,ba,be,bg,bh,bi,bm,bn,bo,br,bs,ca,ce,ch,co,cr,cs,cu,cv,cy,da,de,dv,dz,ee,el,eo,es,et,eu,fa,ff,fi,fj,fo,fr,fy,ga,gd,gl,gn,gu,gv,ha,he,hi,ho,hr,ht,hu,hy,hz,ia,id,ie,ig,ii,ik,io,is,it,iu,ja,jv,ka,kg,ki,kj,kk,kl,km,kn,ko,kr,ks,ku,kv,kw,ky,la,lb,lg,li,ln,lo,lt,lu,lv,mg,mh,mi,mk,ml,mn,mo,mr,ms,mt,my,na,nb,nd,ne,ng,nl,nn,no,ny,oc,oj,om,or,os,pa,pi,pl,ps,pt,qu,rm,rn,ro,ru,rw,sa,sc,sd,se,sg,sh,si,sk,sl,sm,sn,so,sq,sr,ss,st,su,sv,sw,ta,te,tg,th,ti,tk,tl,tn,to,tr,ts,tt,tw,ty,ug,uk,ur,uz,ve,vi,vo,wa,wo,xh,yi,yo,za,zh,zu". } + # Get item label/class label/description in the preferred language of the user, or fallback. + SERVICE wikibase:label { bd:serviceParam wikibase:language "${LANG},en,aa,ab,ae,af,ak,am,an,ar,as,av,ay,az,ba,be,bg,bh,bi,bm,bn,bo,br,bs,ca,ce,ch,co,cr,cs,cu,cv,cy,da,de,dv,dz,ee,el,eo,es,et,eu,fa,ff,fi,fj,fo,fr,fy,ga,gd,gl,gn,gu,gv,ha,he,hi,ho,hr,ht,hu,hy,hz,ia,id,ie,ig,ii,ik,io,is,it,iu,ja,jv,ka,kg,ki,kj,kk,kl,km,kn,ko,kr,ks,ku,kv,kw,ky,la,lb,lg,li,ln,lo,lt,lu,lv,mg,mh,mi,mk,ml,mn,mo,mr,ms,mt,my,na,nb,nd,ne,ng,nl,nn,no,ny,oc,oj,om,or,os,pa,pi,pl,ps,pt,qu,rm,rn,ro,ru,rw,sa,sc,sd,se,sg,sh,si,sk,sl,sm,sn,so,sq,sr,ss,st,su,sv,sw,ta,te,tg,th,ti,tk,tl,tn,to,tr,ts,tt,tw,ty,ug,uk,ur,uz,ve,vi,vo,wa,wo,xh,yi,yo,za,zh,zu". } - OPTIONAL { ?item p:P31/ps:P31 ?class. } + # Get class (such as forest or bridge) + OPTIONAL {?item p:P31/ps:P31 ?class} - # Get picture + # Get picture (items without a picture will be shown in red on the Nearby map) OPTIONAL {?item wdt:P18 ?pic} - # Get existence + # Get existence (whether an item still exists or not) OPTIONAL {?item wdt:P576 ?destroyed} OPTIONAL {?item wdt:P582 ?endTime} OPTIONAL {?item wdt:P3999 ?dateOfOfficialClosure} @@ -34,7 +35,7 @@ WHERE { # Get Commons category OPTIONAL {?item wdt:P373 ?commonsCategory} - # Get Wikipedia article + # Get Wikipedia article OPTIONAL { ?wikipediaArticle schema:about ?item. ?wikipediaArticle schema:isPartOf . # TODO internationalization @@ -45,5 +46,4 @@ WHERE { ?commonsArticle schema:about ?item. ?commonsArticle schema:isPartOf . } - }