Difference between revisions of "Project:Adtech/Cleanup/Template"

From Wikibase Personal data
Jump to navigation Jump to search
Line 5: Line 5:
 
   ?item {{{extra}}}.    # {{{extra_label}}}
 
   ?item {{{extra}}}.    # {{{extra_label}}}
 
   SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
 
   SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
+
}}
  
 
{{SPARQL|label={{{basis_label}}} MINUS {{{extra_label}}}
 
{{SPARQL|label={{{basis_label}}} MINUS {{{extra_label}}}
Line 15: Line 15:
 
   }.
 
   }.
 
   SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
 
   SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
+
}}

Revision as of 20:28, 6 January 2020

PREFIX pdio: <https://wiki.personaldata.io/entity/>
PREFIX pdiot: <https://wiki.personaldata.io/prop/direct/>
PREFIX pdiop: <https://wiki.personaldata.io/prop/>
PREFIX pdiops: <https://wiki.personaldata.io/prop/statement/>
PREFIX pdiopq: <https://wiki.personaldata.io/prop/qualifier/>
SELECT ?item ?itemLabel WHERE
{
   ?item {{{basis}}}.      # {{{basis_label}}}
   ?item {{{extra}}}.    # {{{extra_label}}}
   SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }

{{{basis_label}}} AND {{{extra_label}}} (embedded)


PREFIX pdio: <https://wiki.personaldata.io/entity/>
PREFIX pdiot: <https://wiki.personaldata.io/prop/direct/>
PREFIX pdiop: <https://wiki.personaldata.io/prop/>
PREFIX pdiops: <https://wiki.personaldata.io/prop/statement/>
PREFIX pdiopq: <https://wiki.personaldata.io/prop/qualifier/>
SELECT ?item ?itemLabel WHERE
{
   ?item {{{basis}}}.      # {{{basis_label}}}
   MINUS {
       ?item {{{extra}}}.    # {{{extra_label}}}
   }.
   SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }

{{{basis_label}}} MINUS {{{extra_label}}} (embedded)