User:YULdigitalpreservation/SPARQL2

This subpage uses the SPARQL2 template to present SPARQL queries I've written to support my Wikidata work edit

Device Drivers edit

Return a list of all instances or subclasses of device driver edit

The following query uses these:

  • Properties: subclass of (P279)  View with Reasonator View with SQID, instance of (P31)  View with Reasonator View with SQID
    #Drivers
    SELECT ?item ?itemLabel WHERE {
      ?item (p:P31/ps:P31/wdt:P279*) wd:Q1033951.
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }
    

News edit

Software that has been connected to NYT topic ID edit

The following query uses these:

Fonts edit

Instances of typeface edit

The following query uses these:

  • Properties: subclass of (P279)  View with Reasonator View with SQID, instance of (P31)  View with Reasonator View with SQID
    SELECT ?item ?itemLabel 
    WHERE {
      ?item (p:P31/ps:P31/wdt:P279*) wd:Q17451.
     
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }
    

Graph of subclasses of typeface edit

The following query uses these:

Features: Graph (Q24515287)  View with Reasonator View with SQID

#defaultView:Graph
PREFIX gas: <http://www.bigdata.com/rdf/gas#>

SELECT ?item ?itemLabel ?pic ?linkTo
WHERE
{
  SERVICE gas:service {
    gas:program gas:gasClass "com.bigdata.rdf.graph.analytics.SSSP" ;
                gas:in wd:Q17451 ;
                gas:traversalDirection "Reverse" ;
                gas:out ?item ;
                gas:out1 ?depth ;
                gas:maxIterations 4 ;
                gas:linkType wdt:P279 .
  }
  OPTIONAL { ?item wdt:P279 ?linkTo }
  OPTIONAL { ?item wdt:P18 ?pic }
  SERVICE wikibase:label {bd:serviceParam wikibase:language "en" }
}

File Systems edit

Return a list of file systems and subclasses of file system edit

The following query uses these:

  • Properties: subclass of (P279)  View with Reasonator View with SQID, instance of (P31)  View with Reasonator View with SQID
    SELECT ?item ?itemLabel 
    WHERE 
    {
      ?item (p:P31/ps:P31/wdt:P279*) wd:Q174989.
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }
    

Return a list of file systems with information about the developer and the publication date, if available edit

The following query uses these:

Return a list of file systems, their developers, publication date, and operating system if available edit

The following query uses these:

File systems developed by Apple edit

The following query uses these:

Bubble chart of developers by number of file systems created edit

The following query uses these:

Features: BubbleChart (Q24515280)  View with Reasonator View with SQID

#defaultView:BubbleChart
SELECT ?developer ?developerLabel (COUNT(?software) AS ?count) WHERE {
  ?software (p:P31/ps:P31/wdt:P279*) wd:Q174989.
  ?software wdt:P178 ?developer.
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}
GROUP BY ?developer ?developerLabel
ORDER BY DESC(?count)

Programming Languages edit

Languages influenced by Lisp edit

The following query uses these:

  • Properties: influenced by (P737)  View with Reasonator View with SQID
    SELECT DISTINCT ?lang  ?langLabel 
    
    WHERE {
      ?lang wdt:P737 wd:Q132874 .
      
      SERVICE wikibase:label {
    		bd:serviceParam wikibase:language "en" .
        
    }
      }
    

Programming Languages created before 1970 edit

The following query uses these:

  • Properties: instance of (P31)  View with Reasonator View with SQID, inception (P571)  View with Reasonator View with SQID
    #defaultView:Timeline
    SELECT ?lang ?langLabel ?time
    {
      ?lang wdt:P31 wd:Q9143 .
      ?lang wdt:P571 ?time .
    FILTER((?time) < "1970-01-01"^^xsd:dateTime)
      SERVICE wikibase:label { bd:serviceParam wikibase:language "en" }
    }
    

Programming Languages created between 2007-2017 edit

The following query uses these:

  • Properties: instance of (P31)  View with Reasonator View with SQID, inception (P571)  View with Reasonator View with SQID
    #defaultView:Timeline
    SELECT ?lang ?langLabel ?time
    {
      ?lang wdt:P31 wd:Q9143 .
      ?lang wdt:P571 ?time .
    FILTER((?time) > "2007-01-01"^^xsd:dateTime)
      SERVICE wikibase:label { bd:serviceParam wikibase:language "en" }
    }
    

Subclasses of Programming Language edit

The following query uses these:

Features: Graph (Q24515287)  View with Reasonator View with SQID

#defaultView:Graph
SELECT DISTINCT ?class ?classabel ?subclassOf WHERE {
  ?class wdt:P279* wd:Q9143.
  OPTIONAL { ?class wdt:P279 ?subclassOf. }
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}
ORDER BY ?classLabel

Return a list of software written in the Fortran programming language and their uses edit

The following query uses these:

  • Properties: programmed in (P277)  View with Reasonator View with SQID, has use (P366)  View with Reasonator View with SQID
    SELECT ?software ?softwareLabel ?useLabel
    WHERE 
    {
      ?software wdt:P277 wd:Q83303.
       ?software wdt:P366 ?use
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }
    

Return a list of software written in Perl along with the Wikidata class for the software edit

The following query uses these:

  • Properties: programmed in (P277)  View with Reasonator View with SQID, instance of (P31)  View with Reasonator View with SQID
    SELECT ?soft ?softLabel ?classLabel WHERE {
     
      ?soft wdt:P277 wd:Q42478.
      ?soft wdt:P31 ?class .
      SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
    }
    

Return a list of software written in Go along with the Wikidata class for the software edit

The following query uses these:

  • Properties: programmed in (P277)  View with Reasonator View with SQID, instance of (P31)  View with Reasonator View with SQID
    SELECT ?soft ?softLabel ?classLabel WHERE {
      ?soft wdt:P277 wd:Q37227.
      ?soft wdt:P31 ?class.
      SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
    }
    

Return a list of software written in PHP along with the use of the software edit

The following query uses these:

  • Properties: programmed in (P277)  View with Reasonator View with SQID, has use (P366)  View with Reasonator View with SQID
    SELECT ?software ?softwareLabel ?useLabel  WHERE {
      ?software wdt:P277 wd:Q59.
      ?software wdt:P366 ?use.
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }
    

Software written in Ruby along with use and logo image edit

The following query uses these:

  • Properties: programmed in (P277)  View with Reasonator View with SQID, has use (P366)  View with Reasonator View with SQID, logo image (P154)  View with Reasonator View with SQID
    SELECT DISTINCT ?software ?softwareLabel ?image ?useLabel  WHERE {
      ?software wdt:P277 wd:Q161053.
      OPTIONAL { ?software wdt:P366 ?use. }
      OPTIONAL {?software wdt:P154 ?image.}
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }
    

Bubble chart of women who have developed programming languages edit

The following query uses these:

  • Properties: subclass of (P279)  View with Reasonator View with SQID, developer (P178)  View with Reasonator View with SQID, instance of (P31)  View with Reasonator View with SQID, sex or gender (P21)  View with Reasonator View with SQID
    SELECT ?developer ?developerLabel (COUNT(?software) AS ?count) WHERE {
      ?software (p:P31/ps:P31/wdt:P279*) wd:Q9143.
      ?software wdt:P178 ?developer.
      ?developer wdt:P31 wd:Q5.
      ?developer wdt:P21 wd:Q6581072.
      SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
    }
    GROUP BY ?developer ?developerLabel
    ORDER BY DESC(?count)
    

software written in rust edit

SELECT DISTINCT ?software ?softwareLabel ?image ?useLabel WHERE {
  ?software wdt:P277 wd:Q575650.
  OPTIONAL { ?software wdt:P366 ?use. }
  OPTIONAL { ?software wdt:P154 ?image. }
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
Try it!

Software written in Rust by license edit

The following query uses these:

  • Properties: programmed in (P277)  View with Reasonator View with SQID, copyright license (P275)  View with Reasonator View with SQID, logo image (P154)  View with Reasonator View with SQID
    SELECT DISTINCT ?software ?softwareLabel ?licenseLabel ?image  WHERE {
      ?software wdt:P277 wd:Q575650.
      OPTIONAL { ?software wdt:P275 ?license. }
      OPTIONAL { ?software wdt:P154 ?image. }
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }
    

Programming Languages and images of what they are named after edit

The following query uses these:

  • Properties: instance of (P31)  View with Reasonator View with SQID, subclass of (P279)  View with Reasonator View with SQID, named after (P138)  View with Reasonator View with SQID, image (P18)  View with Reasonator View with SQID
    SELECT DISTINCT ?plang ?plangLabel ?image
    WHERE 
    {
      ?plang wdt:P31/wdt:P279* wd:Q9143.
      ?plang wdt:P138 ?namesake.
      ?namesake wdt:P18 ?image. 
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }
    

Implementations of Python edit

The following query uses these:

  • Properties: implementation of (P4428)  View with Reasonator View with SQID, logo image (P154)  View with Reasonator View with SQID
    SELECT ?item ?itemLabel ?logo  WHERE {
      ?item wdt:P4428 wd:Q28865.
      OPTIONAL {?item wdt:P154 ?logo.}
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }
    

File Formats edit

Return the names of all of the writable file formats that have been described for instances of software applications in Wikidata edit

The following query uses these:

  • Properties: instance of (P31)  View with Reasonator View with SQID, writable file format (P1073)  View with Reasonator View with SQID
    SELECT ?software ?softwareLabel ?writableffLabel
    WHERE {
      ?software wdt:P31/P279*  wd:Q166142 .
      ?software wdt:P1073 ?writableff .
      
      SERVICE wikibase:label {
    		bd:serviceParam wikibase:language "en" .
        
    }
      }
    

Return the names of all of the readable file formats that have been described for instances of software applications in Wikidata edit

The following query uses these:

Return a list of software applications ranked in descending order by the number of writable file formats that have been listed in Wikidata edit

The following query uses these:

  • Properties: subclass of (P279)  View with Reasonator View with SQID, writable file format (P1073)  View with Reasonator View with SQID, instance of (P31)  View with Reasonator View with SQID
    SELECT ?app ?appLabel (COUNT(?format) AS ?count)
    WHERE {
      ?app (p:P31/ps:P31/wdt:P279*) wd:Q7397 .
      ?app wdt:P1073 ?format .
                
      SERVICE wikibase:label {
    		bd:serviceParam wikibase:language "en" .
        
    }
      }
    
    GROUP BY ?app ?appLabel
    ORDER BY DESC(?count)
    

Return a list of software applications ranked in descending order by the number of readable file formats that have been listed in Wikidata edit

The following query uses these:

Features: BubbleChart (Q24515280)  View with Reasonator View with SQID

#defaultView:BubbleChart 
SELECT ?app ?appLabel (COUNT(?format) AS ?count)
WHERE {
  ?app (p:P31/ps:P31/wdt:P279) wd:Q7397 .
  ?app wdt:P1072 ?format .
            
  SERVICE wikibase:label {
		bd:serviceParam wikibase:language "en" .
    
}
  }

GROUP BY ?app ?appLabel
ORDER BY DESC(?count)

Return a list of all software applications known to read MXF file formats edit

The following query uses these:

Return a list of all software known to read .dxf files edit

The following query uses these:

Return a list of all subclasses of Windows edit

The following query uses these:

  • Properties: subclass of (P279)  View with Reasonator View with SQID
    SELECT ?app ?appLabel 
    WHERE {
      ?app (wdt:P279*) wd:Q1406.
      
      SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
    }
    

Return a list of digital container formats edit

The following query uses these:

  • Properties: subclass of (P279)  View with Reasonator View with SQID, instance of (P31)  View with Reasonator View with SQID
    SELECT ?format ?formatLabel 
    WHERE {
      ?format  (p:P31/ps:P31/wdt:P279*) wd:Q167772.
     
      SERVICE wikibase:label {
    		bd:serviceParam wikibase:language "en" .
        
    }
      }
    

Return a list of all file formats with file format identification patterns edit

The following query uses these:

Return a list of file formats and the ISO standards that define them edit

The following query uses these:

  • Properties: subclass of (P279)  View with Reasonator View with SQID, ISO standard (P503)  View with Reasonator View with SQID, instance of (P31)  View with Reasonator View with SQID
    SELECT ?format ?formatLabel ?standardLabel 
    WHERE 
    {
      
      ?format  (p:P31/ps:P31/wdt:P279*) wd:Q235557 .
      ?format wdt:P503 ?standard.
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }
    

Return list ff and ISO standards- distinct and date edit

The following query uses these:

File formats described by other standards edit

The following query uses these:

Return a list of file formats and info about endianness edit

The following query uses these:

  • Properties: subclass of (P279)  View with Reasonator View with SQID, endianness (P3374)  View with Reasonator View with SQID, instance of (P31)  View with Reasonator View with SQID
    SELECT ?format ?formatLabel ?endianLabel
    
    WHERE {
      
      ?format  (p:P31/ps:P31/wdt:P279*) wd:Q235557 .
      ?format wdt:P3374 ?endian .
      
      SERVICE wikibase:label {
    		bd:serviceParam wikibase:language "en" .
        
    }
      }
    

Return a list of file formats that have magic number identification patterns and provide the source edit

The following query uses these:

  • Properties: file format identification pattern (P4152)  View with Reasonator View with SQID, stated in (P248)  View with Reasonator View with SQID
    SELECT ?item ?itemLabel ?valueLabel ?detail ?source ?prov ?nameLabel
    {
       ?item wdt:P4152 ?value .
       ?item p:P4152 ?detail .
       ?detail prov:wasDerivedFrom      ?source .
          OPTIONAL { 
       ?source pr:P248 ?name      
     }
       SERVICE wikibase:label { bd:serviceParam wikibase:language "en,en"  }    
    }
    LIMIT 1000
    

File Formats by extension and media type edit

The following query uses these:

  • Properties: subclass of (P279)  View with Reasonator View with SQID, file extension (P1195)  View with Reasonator View with SQID, media type (P1163)  View with Reasonator View with SQID, instance of (P31)  View with Reasonator View with SQID
    SELECT DISTINCT ?idExtension ?extension ?mediaType ?idExtensionLabel 
    WHERE
    {
    	?idExtension (p:P31/ps:P31/wdt:P279*) wd:Q235557
    	; wdt:P1195 ?extension .
    	OPTIONAL { ?idExtension wdt:P1163 ?mediaType }
    	SERVICE wikibase:label { bd:serviceParam wikibase:language "en" }
    } 
    ORDER BY ?extension ?mediaType
    

File formats developed by AutoDesk edit

The following query uses these:

  • Properties: subclass of (P279)  View with Reasonator View with SQID, developer (P178)  View with Reasonator View with SQID, instance of (P31)  View with Reasonator View with SQID
    SELECT ?item ?itemLabel 
    WHERE 
    {
      ?item (p:P31/ps:P31/wdt:P279*) wd:Q235557.
      ?item wdt:P178 wd:Q628051.
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }
    

File formats developed by Autodesk with file extension and mediatype information edit

The following query uses these:

File formats dev by Autodesk with file extension, media type, PUID, and Just Solve wiki page edit

The following query uses these:

File formats with a PUID link edit

The following query uses these:

  • Properties: PRONOM file format ID (P2748)  View with Reasonator View with SQID
    SELECT DISTINCT ?format ?formatLabel ?puid
    
    WHERE {
      
      ?format wdt:P2748 ?puid .
       
      SERVICE wikibase:label {
    		bd:serviceParam wikibase:language "en" .
        
    }
      }
    

File formats developed by Microsoft edit

The following query uses these:

  • Properties: subclass of (P279)  View with Reasonator View with SQID, developer (P178)  View with Reasonator View with SQID, instance of (P31)  View with Reasonator View with SQID
    SELECT ?item ?itemLabel WHERE {
      ?item (p:P31/ps:P31/wdt:P279) wd:Q235557.
      ?item wdt:P178 wd:Q2283.
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }
    

Software known to read .PLY files edit

The following query uses these:

File formats for 3D computer graphics edit

The following query uses these:

  • Properties: instance of (P31)  View with Reasonator View with SQID, has use (P366)  View with Reasonator View with SQID
    SELECT ?item ?label  WHERE {
      ?item  wdt:P31 wd:Q235557.
      ?item wdt:P366 wd:Q189177.
      SERVICE wikibase:label {
        bd:serviceParam wikibase:language "en" . 
        ?item rdfs:label ?label
      }
    }
    

File formats for 3D graphics and mimetypes edit

The following query uses these:

  • Properties: instance of (P31)  View with Reasonator View with SQID, has use (P366)  View with Reasonator View with SQID, media type (P1163)  View with Reasonator View with SQID
    SELECT ?item ?label ?media WHERE {
      ?item  wdt:P31 wd:Q235557.
      ?item wdt:P366 wd:Q189177.
      ?item wdt:P1163 ?media.
      SERVICE wikibase:label {
        bd:serviceParam wikibase:language "en" . 
        ?item rdfs:label ?label
      }
    }
    

Count of # of file formats that have same file extension string edit

The following query uses these:

  • Properties: subclass of (P279)  View with Reasonator View with SQID, file extension (P1195)  View with Reasonator View with SQID, instance of (P31)  View with Reasonator View with SQID
    SELECT DISTINCT ?extension ?extensionLabel (COUNT(?format) AS ?count)
    WHERE
    {
     ?format (p:P31/ps:P31/wdt:P279*) wd:Q235557
     ; wdt:P1195 ?extension .
     SERVICE wikibase:label { bd:serviceParam wikibase:language "en" }
    }
    group by ?extension ?extensionLabel
    ORDER BY DESC (?count)
    

Bubble chart of file formats by developer edit

The following query uses these:

Features: BubbleChart (Q24515280)  View with Reasonator View with SQID

##defaultView:BubbleChart
SELECT ?developer ?developerLabel (COUNT(?ff) AS ?count) WHERE {
  ?ff wdt:P31/wdt:P279* wd:Q235557.
  ?ff wdt:P178 ?developer.
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}
GROUP BY ?developer ?developerLabel
ORDER BY DESC(?count)

(Gas) graph of subclasses of file format edit

The following query uses these:

Features: Graph (Q24515287)  View with Reasonator View with SQID

#defaultView:Graph
PREFIX gas: <http://www.bigdata.com/rdf/gas#>

SELECT ?item ?itemLabel ?pic ?linkTo
WHERE
{
  SERVICE gas:service {
    gas:program gas:gasClass "com.bigdata.rdf.graph.analytics.SSSP" ;
                gas:in wd:Q235557 ;
                gas:traversalDirection "Reverse" ;
                gas:out ?item ;
                gas:out1 ?depth ;
                gas:maxIterations 4 ;
                gas:linkType wdt:P279 .
  }
  OPTIONAL { ?item wdt:P279 ?linkTo }
  OPTIONAL { ?item wdt:P18 ?pic }
  SERVICE wikibase:label {bd:serviceParam wikibase:language "en" }
}

Return a list of file formats that have information about their MIME type edit

The following query uses these:

  • Properties: instance of (P31)  View with Reasonator View with SQID, subclass of (P279)  View with Reasonator View with SQID, media type (P1163)  View with Reasonator View with SQID
    SELECT DISTINCT ?ff ?ffLabel ?mediaType 
    WHERE
    {
    	?ff wdt:P31/wdt:P279* wd:Q235557.
    	?ff wdt:P1163 ?mediaType.
    	SERVICE wikibase:label { bd:serviceParam wikibase:language "en" }
    }
    

Return a list of file formats developed by Adobe edit

The following query uses these:

  • Properties: subclass of (P279)  View with Reasonator View with SQID, developer (P178)  View with Reasonator View with SQID, instance of (P31)  View with Reasonator View with SQID
    SELECT ?item ?itemLabel WHERE {
      ?item (p:P31/ps:P31/wdt:P279*) wd:Q235557.
      ?item wdt:P178 wd:Q11463.
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }
    

Return a bubble chart of mediatypes by count of file formats edit

The following query uses these:

  • Properties: instance of (P31)  View with Reasonator View with SQID, subclass of (P279)  View with Reasonator View with SQID, media type (P1163)  View with Reasonator View with SQID
    SELECT DISTINCT ?mediaType (COUNT (?ff) as ?count)
    WHERE
    {
    	?ff wdt:P31/wdt:P279* wd:Q235557.
    	?ff wdt:P1163 ?mediaType.
    	SERVICE wikibase:label { bd:serviceParam wikibase:language "en" }
    }
    
    GROUP BY ?mediaType 
    ORDER BY DESC (?count)
    

File formats that have PUID, LOC FDD, and Just Solve ids edit

The following query uses these:

File formats developed by Adobe with file extension, media type, PUID, and Just Solve IDs edit

The following query uses these:

Software available under a free software license that can open .OBJ files with logo images edit

The following query uses these:

Executable file formats edit

The following query uses these:

The Netpbm file format family edit

The following query uses these:

Audio File Formats by extension edit

The following query uses these:

  • Properties: instance of (P31)  View with Reasonator View with SQID, file extension (P1195)  View with Reasonator View with SQID
    SELECT DISTINCT ?item ?itemLabel ?ext WHERE {
      {?item wdt:P31 wd:Q682626.}
      UNION {?item wdt:P31 wd:Q758871}.
      ?item wdt:P1195 ?ext.
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }
    

Audio File Formats by ext, media type, and PUID edit

The following query uses these:

Video File formats by ext, media type, and PUID edit

The following query uses these:

  • Properties: instance of (P31)  View with Reasonator View with SQID, file extension (P1195)  View with Reasonator View with SQID, media type (P1163)  View with Reasonator View with SQID, PRONOM file format ID (P2748)  View with Reasonator View with SQID
    SELECT DISTINCT ?item ?itemLabel ?ext ?media ?puid WHERE {
      { ?item wdt:P31 wd:Q18359031. }
      UNION
      { ?item wdt:P31 wd:Q10715094. }
      ?item wdt:P1195 ?ext.
      OPTIONAL { ?item wdt:P1163 ?media. }
      OPTIONAL { ?item wdt:P2748 ?puid. }
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }
    

File Formats with PUID external ID and mime type edit

The following query uses these:

  • Properties: PRONOM file format ID (P2748)  View with Reasonator View with SQID, media type (P1163)  View with Reasonator View with SQID
    SELECT DISTINCT ?format ?formatLabel ?puid ?mime
    
    WHERE {
      
      ?format wdt:P2748 ?puid .
      OPTIONAL {?format wdt:P1163 ?mime .}
       
      SERVICE wikibase:label {
    		bd:serviceParam wikibase:language "en" .
        
    }
      }
    

File formats ranked in order of the largest number of software titles known to be able to read them edit

The following query uses these:

  • Properties: instance of (P31)  View with Reasonator View with SQID, subclass of (P279)  View with Reasonator View with SQID, readable file format (P1072)  View with Reasonator View with SQID
    SELECT ?format ?formatLabel (COUNT(?app) AS ?count)
    WHERE {
      ?format wdt:P31/wdt:P279* wd:Q235557.
      ?app wdt:P1072 ?format.
      SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
    }
    
    GROUP BY ?format ?formatLabel
    
    ORDER BY DESC(?count)
    
    LIMIT 50
    

File formats by length of extension edit

The following query uses these:

  • Properties: file extension (P1195)  View with Reasonator View with SQID
    SELECT  ?format ?formatLabel ?ext
    WHERE {
      ?format wdt:P1195 ?ext.
      
      
     
      SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
    }
    
    ORDER BY(STRLEN(?ext))
    

File formats that have documentation links edit

The following query uses these:

File formats that scientific software titles can read edit

The following query uses these:

  • Properties: instance of (P31)  View with Reasonator View with SQID, subclass of (P279)  View with Reasonator View with SQID, readable file format (P1072)  View with Reasonator View with SQID, has use (P366)  View with Reasonator View with SQID
    SELECT ?format ?formatLabel  (COUNT(?app) AS ?count)
    WHERE {
      ?format wdt:P31/wdt:P279* wd:Q235557.
      ?app wdt:P1072 ?format.
       ?app wdt:P366 wd:Q336 .
      SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
    }
    
    GROUP BY ?format ?formatLabel
    
    ORDER BY DESC(?count)
    
    LIMIT 50
    

File formats used in chemistry edit

The following query uses these:

  • Properties: instance of (P31)  View with Reasonator View with SQID, subclass of (P279)  View with Reasonator View with SQID, has use (P366)  View with Reasonator View with SQID
    SELECT ?item ?label  WHERE {
      ?item wdt:P31/wdt:P279* wd:Q235557.
      ?item wdt:P366 wd:Q2329.
      SERVICE wikibase:label {
        bd:serviceParam wikibase:language "en" . 
        ?item rdfs:label ?label
      }
      
    
    }
    

Tree map of media types by file formats by developer edit

The following query uses these:

  • Properties: instance of (P31)  View with Reasonator View with SQID, subclass of (P279)  View with Reasonator View with SQID, media type (P1163)  View with Reasonator View with SQID, developer (P178)  View with Reasonator View with SQID
    #defaultView:TreeMap
    SELECT ?mimetype  ?developerLabel
    WHERE 
    {
      ?fileFormat wdt:P31/wdt:P279* wd:Q235557.
      ?fileFormat wdt:P1163 ?mimetype.
      ?fileFormat wdt:P178 ?developer.            
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }
    

File formats and the sources that describe them edit

The following query uses these:

  • Properties: subclass of (P279)  View with Reasonator View with SQID, described by source (P1343)  View with Reasonator View with SQID, instance of (P31)  View with Reasonator View with SQID
    SELECT ?format ?formatLabel ?source ?sourceLabel ?classLabel
    WHERE 
    {
      
      ?format  (p:P31/ps:P31/wdt:P279*) wd:Q235557 .
      ?format wdt:P1343 ?source.
      ?source wdt:P31 ?class
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }
    

Publications that have a file format as the main subject edit

The following query uses these:

  • Properties: main subject (P921)  View with Reasonator View with SQID, instance of (P31)  View with Reasonator View with SQID, subclass of (P279)  View with Reasonator View with SQID
    SELECT ?work ?workLabel 
    WHERE {
      
      ?work wdt:P921 ?format .
      ?format wdt:P31/wdt:P279* wd:Q235557.          
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
        
    }
    

Software titles known to read smiles edit

The following query uses these:

File format families by count of component parts edit

The following query uses these:

Features: BubbleChart (Q24515280)  View with Reasonator View with SQID

#File format families by count of component parts
#defaultView:BubbleChart
SELECT ?item ?itemLabel (COUNT (?part) as ?count)
WHERE 
{
  ?item wdt:P31 wd:Q26085352.
  ?item wdt:P527 ?part.
  
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}

GROUP BY ?item ?itemLabel
ORDER BY DESC (?count)

Developers of file format families edit

The following query uses these:

Features: BubbleChart (Q24515280)  View with Reasonator View with SQID

#defaultView:BubbleChart
SELECT ?dev ?devLabel (COUNT (?item) as ?count)
WHERE 
{
  ?item wdt:P31 wd:Q26085352.
  ?item wdt:P527 ?part.
  ?item wdt:P178 ?dev.
  
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}

GROUP BY ?dev ?devLabel
ORDER BY DESC (?count)

File formats that have their own identifier in the Getty Art and Architecture Thesaurus edit

The following query uses these:

  • Properties: instance of (P31)  View with Reasonator View with SQID, subclass of (P279)  View with Reasonator View with SQID, Art & Architecture Thesaurus ID (P1014)  View with Reasonator View with SQID
    #File formats that have their own identifier in the Getty Art and Architecture Thesaurus
    SELECT ?item ?itemLabel ?AATID
    WHERE 
    {
      ?item wdt:P31/wdt:P279* wd:Q235557.
      ?item wdt:P1014 ?AATID.
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }
    

File formats by count of scholarly articles edit

The following query uses these:

  • Properties: instance of (P31)  View with Reasonator View with SQID, subclass of (P279)  View with Reasonator View with SQID, main subject (P921)  View with Reasonator View with SQID
    SELECT ?item ?itemLabel (COUNT(?article) AS ?count)
    WHERE 
    {
      ?item wdt:P31/wdt:P279* wd:Q235557.
      ?article wdt:P31 wd:Q13442814.
      ?article wdt:P921 ?item.
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }
    
    GROUP BY ?item ?itemLabel
    ORDER BY DESC(?count)
    

File formats used in bioinformatics ranked by the number of software titles known to read them edit

The following query uses these:

Features: BubbleChart (Q24515280)  View with Reasonator View with SQID

#defaultView:BubbleChart
SELECT ?fileFormat ?fileFormatLabel (COUNT(?item) AS ?count)
WHERE 
{
  ?item wdt:P31/wdt:P279* wd:Q7397.
  ?item wdt:P366 wd:Q128570.
  ?item wdt:P1072 ?fileFormat.
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
GROUP BY ?fileFormat ?fileFormatLabel

ORDER BY DESC(?count)

Disk image file formats edit

The following query uses these:

  • Properties: instance of (P31)  View with Reasonator View with SQID
    SELECT ?item ?itemLabel 
    WHERE 
    {
      ?item wdt:P31 wd:Q592312.
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }
    

File formats developed by religious organizations edit

The following query uses these:

  • Properties: instance of (P31)  View with Reasonator View with SQID, subclass of (P279)  View with Reasonator View with SQID, developer (P178)  View with Reasonator View with SQID
    SELECT ?item ?itemLabel ?dev ?devLabel
    WHERE 
    {
      ?item wdt:P31/wdt:P279* wd:Q235557.
      ?item wdt:P178 ?dev.
      ?dev wdt:P31/wdt:P279* wd:Q13414953.
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }
    

File format families graph edit

The following query uses these:

Features: Graph (Q24515287)  View with Reasonator View with SQID

#defaultView:Graph
SELECT ?char ?charLabel ?group ?groupLabel ("7FFF00" AS ?rgb) WHERE {
  ?group wdt:P31 wd:Q26085352.
  ?group wdt:P1163 ?media.
  #?char wdt:P361 ?group.
  ?group wdt:P527 ?char.
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}

File formats missing mediatype edit

The following query uses these:

  • Properties: instance of (P31)  View with Reasonator View with SQID, subclass of (P279)  View with Reasonator View with SQID, media type (P1163)  View with Reasonator View with SQID
    SELECT DISTINCT ?fileformat ?fileformatLabel 
    
    WHERE {
      ?fileformat wdt:P31/wdt:P279* wd:Q235557.
      
     FILTER NOT EXISTS { ?fileformat p:P1163 ?mediatype }
      
     SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
      }
    

File formats from Microsoft by ext, ids, mimetype edit

The following query uses these:

Emulators edit

Return a list of all instances of emulators in Wikidata edit

The following query uses these:

  • Properties: instance of (P31)  View with Reasonator View with SQID
    SELECT ?emulator ?emulatorLabel
    WHERE {
      
      ?emulator wdt:P31 wd:Q202871 .
                
      SERVICE wikibase:label {
    		bd:serviceParam wikibase:language "en" .
        
    }
      }
    

Return a list of all instances of and subclasses of emulator edit

The following query uses these:

  • Properties: instance of (P31)  View with Reasonator View with SQID, subclass of (P279)  View with Reasonator View with SQID
    SELECT ?emulator ?emulatorLabel
    WHERE {
      
      ?emulator wdt:P31/wdt:P279* wd:Q202871 .
                
      SERVICE wikibase:label {
    		bd:serviceParam wikibase:language "en" .
        
    }
      }
    

Return a list of emulators and what they emulate edit

The following query uses these:

  • Properties: subclass of (P279)  View with Reasonator View with SQID, emulates (P4043)  View with Reasonator View with SQID, instance of (P31)  View with Reasonator View with SQID
    SELECT ?emulator ?emulatorLabel ?targetLabel
    
    WHERE {
      
      ?emulator  (p:P31/ps:P31/wdt:P279*) wd:Q202871 .
      ?emulator wdt:P4043 ?target          
      SERVICE wikibase:label {
    		bd:serviceParam wikibase:language "en" .
        
    }
      }
    

Color-coded graph of emulators and what they emulate edit

The following query uses these:

Features: Graph (Q24515287)  View with Reasonator View with SQID

#defaultView:Graph
SELECT ?emulator ?emulatorLabel ?target ?targetLabel ("00FFFF" AS ?rgb)

WHERE {
  
  ?emulator  (p:P31/ps:P31/wdt:P279*) wd:Q202871 .
  ?emulator wdt:P4043 ?target          
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    
  }

Return list of all emulators that have a logo image edit

The following query uses these:

  • Properties: instance of (P31)  View with Reasonator View with SQID, logo image (P154)  View with Reasonator View with SQID
    SELECT ?emulator ?emulatorLabel ?image
    WHERE {
      
      ?emulator wdt:P31 wd:Q202871 .
      ?emulator wdt:P154 ?image .          
      SERVICE wikibase:label {
    		bd:serviceParam wikibase:language "en" .
        
    }
      }
    

}}

Return a list of all hypervisors in Wikidata edit

The following query uses these:

  • Properties: subclass of (P279)  View with Reasonator View with SQID, instance of (P31)  View with Reasonator View with SQID
    SELECT ?item ?label WHERE {
      ?item (p:P31/ps:P31/wdt:P279*) wd:Q1077480.
      SERVICE wikibase:label {
        bd:serviceParam wikibase:language "en" . 
        ?item rdfs:label ?label
      }
      
    
    }
    LIMIT 100
    

Return an image grid of the logos for raster graphics editor software edit

The following query uses these:

Features: ImageGrid (Q24515278)  View with Reasonator View with SQID

#defaultView:ImageGrid
SELECT ?item ?label ?image WHERE {
  ?item wdt:P31 wd:Q2351962.
  ?item wdt:P154 ?image.
  SERVICE wikibase:label {
    bd:serviceParam wikibase:language "en" . 
    ?item rdfs:label ?label
  }
}

Knowledge bases edit

The following query uses these:

  • Properties: instance of (P31)  View with Reasonator View with SQID
    SELECT ?item ?label WHERE {
      ?item wdt:P31 wd:Q593744.
      SERVICE wikibase:label {
        bd:serviceParam wikibase:language "en" . 
        ?item rdfs:label ?label
      }
    }
    

Knowledge bases and subclasses edit

The following query uses these:

  • Properties: subclass of (P279)  View with Reasonator View with SQID, instance of (P31)  View with Reasonator View with SQID
    SELECT ?item ?label WHERE {
      ?item (p:P31/ps:P31/wdt:P279*) wd:Q593744.
      SERVICE wikibase:label {
        bd:serviceParam wikibase:language "en" . 
        ?item rdfs:label ?label
      }
    }
    

plugins edit

The following query uses these:

  • Properties: instance of (P31)  View with Reasonator View with SQID, subclass of (P279)  View with Reasonator View with SQID
    SELECT ?software ?softwareLabel
    
    WHERE {
      
      ?software wdt:P31/wdt:P279*  wd:Q184148
      
                
      SERVICE wikibase:label {
    		bd:serviceParam wikibase:language "en" .
        
    }
      }
    

Operating Systems edit

Return a list of all instances of operating system in Wikidata edit

The following query uses these:

  • Properties: instance of (P31)  View with Reasonator View with SQID
    SELECT ?os ?osLabel 
    WHERE {
      
      ?os wdt:P31 wd:Q9135 .
                
      SERVICE wikibase:label {
    		bd:serviceParam wikibase:language "en" .
        
    }
      }
    

Return all operating systems grouped by developer edit

The following query uses these:

  • Properties: subclass of (P279)  View with Reasonator View with SQID, developer (P178)  View with Reasonator View with SQID, instance of (P31)  View with Reasonator View with SQID
    SELECT DISTINCT ?os ?osLabel ?devLabel
    WHERE {
      
      ?os (p:P31/ps:P31/wdt:P279*) wd:Q9135 .
      ?os wdt:P178 ?dev.          
      SERVICE wikibase:label {
    		bd:serviceParam wikibase:language "en" .
        
    }
      }
    ORDER BY ?devLabel
    

Return a list of os grouped by developer and listing what class they belong to edit

The following query uses these:

  • Properties: subclass of (P279)  View with Reasonator View with SQID, developer (P178)  View with Reasonator View with SQID, instance of (P31)  View with Reasonator View with SQID
    SELECT DISTINCT ?os ?osLabel ?devLabel ?classLabel
    WHERE {
      
      ?os (p:P31/ps:P31/wdt:P279*) wd:Q9135 .
      ?os wdt:P178 ?dev.          
      ?os wdt:P279 ?class.
      SERVICE wikibase:label {
    		bd:serviceParam wikibase:language "en" .
        
    }
      }
    ORDER BY ?devLabel
    

Return a graph of all class/subclass relationships for operating systems edit

The following query uses these:

Features: Graph (Q24515287)  View with Reasonator View with SQID

#defaultView:Graph
SELECT DISTINCT ?os ?osLabel ?subclassOf WHERE {
  ?os wdt:P279* wd:Q9135 .
  OPTIONAL { ?os wdt:P279 ?subclassOf } .
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en" }
}
ORDER BY ?osLabel

Return a list of all software for DOS in Wikidata edit

The following query uses these:

  • Properties: operating system (P306)  View with Reasonator View with SQID
    SELECT ?app ?appLabel WHERE {
      ?app wdt:P306 wd:Q170434.
      SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
    }
    

Return a list of all software for DOS (union OS and platform) edit

The following query uses these:

Return an image grid of all GNU/Linux distributions edit

The following query uses these:

Features: ImageGrid (Q24515278)  View with Reasonator View with SQID

#defaultView:ImageGrid
SELECT ?dist ?distLabel ?image WHERE {
  ?dist wdt:P31 wd:Q131669.
  ?dist wdt:P18 ?image.
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}

Operating Systems and the kernels that power them edit

The following query uses these:

  • Properties: instance of (P31)  View with Reasonator View with SQID, part of (P361)  View with Reasonator View with SQID
    SELECT ?kernel ?kernelLabel ?osLabel
    WHERE {
      ?kernel wdt:P31 wd:Q9662.
      ?kernel wdt:P361 ?os .
      SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
    }
    

Return a graph of all subclasses of Microsoft Windows edit

The following query uses these:

Features: Graph (Q24515287)  View with Reasonator View with SQID

#defaultView:Graph
SELECT DISTINCT ?os ?osLabel ?subclassOf WHERE {
  
  ?os wdt:P279* wd:Q1406.
  OPTIONAL { ?os wdt:P279 ?subclassOf. }
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}
ORDER BY ?osLabel

Alternative version for above to get a few more edit

The following query uses these:

Features: Graph (Q24515287)  View with Reasonator View with SQID

#defaultView:Graph
SELECT DISTINCT ?os ?osLabel ?subclassOf WHERE {
  ?os (p:P31/ps:P31/wdt:P279*) wd:Q9135.
  ?os wdt:P178 wd:Q2283.
  ?os wdt:P279* wd:Q1406.
  OPTIONAL { ?os wdt:P279 ?subclassOf. }
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}
ORDER BY ?osLabel

Bubble chart of os by developer edit

The following query uses these:

Features: BubbleChart (Q24515280)  View with Reasonator View with SQID

#defaultView:BubbleChart
SELECT ?developer ?developerLabel (COUNT(?os) AS ?count) WHERE {
  ?os (p:P31/ps:P31/wdt:P279) wd:Q9135.
  ?os wdt:P178 ?developer.
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}
GROUP BY ?developer ?developerLabel
ORDER BY DESC(?count)

(Gas) GNU/Linux edit

The following query uses these:

Features: Graph (Q24515287)  View with Reasonator View with SQID

#defaultView:Graph
PREFIX gas: <http://www.bigdata.com/rdf/gas#>

SELECT ?item ?itemLabel ?pic ?linkTo
WHERE
{
  SERVICE gas:service {
    gas:program gas:gasClass "com.bigdata.rdf.graph.analytics.SSSP" ;
                gas:in wd:Q388 ;
                gas:traversalDirection "Forward" ;
                gas:out ?item ;
                gas:out1 ?depth ;
                gas:maxIterations 4 ;
                gas:linkType wdt:P279 .
  }
  OPTIONAL { ?item wdt:P279 ?linkTo }
  OPTIONAL { ?item wdt:P18 ?pic }
  SERVICE wikibase:label {bd:serviceParam wikibase:language "en" }
}

(Gas) GNU/Linux and subclasses edit

The following query uses these:

Features: Graph (Q24515287)  View with Reasonator View with SQID

#defaultView:Graph
PREFIX gas: <http://www.bigdata.com/rdf/gas#>

SELECT ?item ?itemLabel ?pic ?linkTo
WHERE
{
  SERVICE gas:service {
    gas:program gas:gasClass "com.bigdata.rdf.graph.analytics.SSSP" ;
                gas:in wd:Q388 ;
                gas:traversalDirection "Reverse" ;
                gas:out ?item ;
                gas:out1 ?depth ;
                gas:maxIterations 4 ;
                gas:linkType wdt:P279 .
  }
  OPTIONAL { ?item wdt:P279 ?linkTo }
  OPTIONAL { ?item wdt:P18 ?pic }
  SERVICE wikibase:label {bd:serviceParam wikibase:language "en" }
}

Who develops operating systems edit

The following query uses these:

Features: BubbleChart (Q24515280)  View with Reasonator View with SQID

#defaultView:BubbleChart
SELECT ?class ?classLabel (COUNT(?developer) AS ?count) WHERE {
  ?os wdt:P31/wdt:P279* wd:Q9135.
  ?os wdt:P178 ?developer.
  ?developer wdt:P31 ?class
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}
GROUP BY ?class ?classLabel
ORDER BY DESC(?count)

Hardware edit

Return a graph of class/subclass relationships for computer peripheral equipment edit

The following query uses these:

Features: Graph (Q24515287)  View with Reasonator View with SQID

#defaultView:Graph
SELECT ?per ?perLabel ?subclassOf 
WHERE {
  ?per wdt:P279* wd:Q178648.
  OPTIONAL { ?per wdt:P279 ?subclassOf. }
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}
ORDER BY ?perlabel

Return a graph of class/subclass relationships for computer data storage edit

The following query uses these:

Features: Graph (Q24515287)  View with Reasonator View with SQID

#defaultView:Graph
SELECT DISTINCT ?storage ?storageLabel ?subclassOf 
WHERE {
  ?storage wdt:P279* wd:Q66221 .
  OPTIONAL { ?storage wdt:P279 ?subclassOf } .
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en" }
}
ORDER BY ?storageLabel

Return a list of virtual reality headsets edit

The following query uses these:

  • Properties: instance of (P31)  View with Reasonator View with SQID
    SELECT ?item ?label  WHERE {
      ?item wdt:P31 wd:Q22980233.
      SERVICE wikibase:label {
        bd:serviceParam wikibase:language "en" . 
        ?item rdfs:label ?label
      }
      
    }
    

Return a graph of all subclasses of integrated circuit edit

The following query uses these:

Features: Graph (Q24515287)  View with Reasonator View with SQID

#defaultView:Graph
SELECT DISTINCT ?ic ?icLabel ?subclassOf WHERE {
  ?ic wdt:P279* wd:Q80831.
  OPTIONAL { ?ic wdt:P279 ?subclassOf. }
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}
ORDER BY ?icLabel

(Gas) Return a gas graph of peripheral equipment edit

The following query uses these:

Features: Graph (Q24515287)  View with Reasonator View with SQID

#defaultView:Graph
PREFIX gas: <http://www.bigdata.com/rdf/gas#>

SELECT ?item ?itemLabel ?pic ?linkTo
WHERE
{
  SERVICE gas:service {
    gas:program gas:gasClass "com.bigdata.rdf.graph.analytics.SSSP" ;
                gas:in wd:Q178648 ;
                gas:traversalDirection "Reverse" ;
                gas:out ?item ;
                gas:out1 ?depth ;
                gas:maxIterations 4 ;
                gas:linkType wdt:P279 .
  }
  OPTIONAL { ?item wdt:P279 ?linkTo }
  OPTIONAL { ?item wdt:P18 ?pic }
  SERVICE wikibase:label {bd:serviceParam wikibase:language "en" }
}

(Gas) Return a graph of subclasses of computer hardware edit

The following query uses these:

Features: Graph (Q24515287)  View with Reasonator View with SQID

#defaultView:Graph
PREFIX gas: <http://www.bigdata.com/rdf/gas#>

SELECT ?item ?itemLabel ?pic ?linkTo
WHERE
{
  SERVICE gas:service {
    gas:program gas:gasClass "com.bigdata.rdf.graph.analytics.SSSP" ;
                gas:in wd:Q3966 ;
                gas:traversalDirection "Reverse" ;
                gas:out ?item ;
                gas:out1 ?depth ;
                gas:maxIterations 4 ;
                gas:linkType wdt:P279 .
  }
  OPTIONAL { ?item wdt:P279 ?linkTo }
  OPTIONAL { ?item wdt:P18 ?pic }
  SERVICE wikibase:label {bd:serviceParam wikibase:language "en" }
}

(GAS) return a graph of subclasses of computer data storage edit

The following query uses these:

Features: Graph (Q24515287)  View with Reasonator View with SQID

#defaultView:Graph
PREFIX gas: <http://www.bigdata.com/rdf/gas#>

SELECT ?item ?itemLabel ?pic ?linkTo
WHERE
{
  SERVICE gas:service {
    gas:program gas:gasClass "com.bigdata.rdf.graph.analytics.SSSP" ;
                gas:in wd:Q66221 ;
                gas:traversalDirection "Reverse" ;
                gas:out ?item ;
                gas:out1 ?depth ;
                gas:maxIterations 4 ;
                gas:linkType wdt:P279 .
  }
  OPTIONAL { ?item wdt:P279 ?linkTo }
  OPTIONAL { ?item wdt:P18 ?pic }
  SERVICE wikibase:label {bd:serviceParam wikibase:language "en" }
}

Intel chipsets edit

The following query uses these:

  • Properties: instance of (P31)  View with Reasonator View with SQID, manufacturer (P176)  View with Reasonator View with SQID, image (P18)  View with Reasonator View with SQID
    SELECT ?item ?label ?_image WHERE {
      ?item wdt:P31 wd:Q182656.
      ?item wdt:P176 wd:Q248.
      SERVICE wikibase:label {
        bd:serviceParam wikibase:language "en" . 
        ?item rdfs:label ?label
      }
      
    OPTIONAL { ?item wdt:P18 ?_image. }
    }
    LIMIT 100
    

Image grid of VR headsets edit

The following query uses these:

Features: ImageGrid (Q24515278)  View with Reasonator View with SQID

#defaultView:ImageGrid
SELECT ?headset ?headsetLabel ?image
WHERE {
  ?headset wdt:P31 wd:Q22980233.
  OPTIONAL {?headset wdt:P18 ?image}.
  SERVICE wikibase:label {
    bd:serviceParam wikibase:language "en" . 
  }
}

Image grid of video game consoles with InternetArchiveIDs edit

The following query uses these:

Features: ImageGrid (Q24515278)  View with Reasonator View with SQID

#defaultView:ImageGrid
SELECT DISTINCT ?comp ?compLabel ?archiveidLabel ?image WHERE {
  ?comp (wdt:P31/wdt:P279*) wd:Q8076.
  ?comp wdt:P724 ?archiveid.
  OPTIONAL { ?comp wdt:P18 ?image. }
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}

Image grid of models of personal computer with InternetArchiveIDs edit

The following query uses these:

Features: ImageGrid (Q24515278)  View with Reasonator View with SQID

#defaultView:ImageGrid
SELECT DISTINCT ?comp ?compLabel ?archiveidLabel ?image WHERE {
  ?comp (wdt:P31/wdt:P279*) wd:Q17444171.
  ?comp wdt:P724 ?archiveid.
  OPTIONAL { ?comp wdt:P18 ?image. }
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}

Image grid of home computers with InternetArchiveIDs edit

The following query uses these:

Features: ImageGrid (Q24515278)  View with Reasonator View with SQID

#defaultView:ImageGrid
SELECT DISTINCT ?comp ?compLabel ?archiveidLabel ?image WHERE {
  ?comp (wdt:P31/wdt:P279*) wd:Q473708.
  ?comp wdt:P724 ?archiveid.
  OPTIONAL { ?comp wdt:P18 ?image. }
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}

One of a Kind Computers edit

The following query uses these:

  • Properties: instance of (P31)  View with Reasonator View with SQID, image (P18)  View with Reasonator View with SQID
    SELECT ?computer ?computerLabel ?image WHERE {
      ?computer wdt:P31 wd:Q28542014.
      OPTIONAL {?computer wdt:P18 ?image}.
       SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
      }
    

Bubble chart of sound cards by manufacturer edit

The following query uses these:

  • Properties: instance of (P31)  View with Reasonator View with SQID, manufacturer (P176)  View with Reasonator View with SQID
    SELECT  ?manufacturer ?manufacturerLabel(COUNT(?item) AS ?count)
    WHERE 
    {
      ?item wdt:P31 wd:Q4343.
      ?item wdt:P176 ?manufacturer
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }
    GROUP BY ?manufacturer ?manufacturerLabel
    
    ORDER BY DESC(?count)
    

Soundcards by manufacturer and date edit

The following query uses these:

  • Properties: instance of (P31)  View with Reasonator View with SQID, manufacturer (P176)  View with Reasonator View with SQID, inception (P571)  View with Reasonator View with SQID
    SELECT ?item ?itemLabel ?manufacturerLabel ?date
    WHERE 
    {
      ?item wdt:P31 wd:Q4343.
      OPTIONAL {?item wdt:P176 ?manufacturer.}
      OPTIONAL {?item wdt:P571 ?date}.
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }
    

Soundcards, images, date of publication timeline edit

The following query uses these:

  • Properties: instance of (P31)  View with Reasonator View with SQID, image (P18)  View with Reasonator View with SQID, manufacturer (P176)  View with Reasonator View with SQID, inception (P571)  View with Reasonator View with SQID
    SELECT ?item ?itemLabel ?manufacturerLabel ?date ?image
    WHERE 
    {
      ?item wdt:P31 wd:Q4343.
      ?item wdt:P18 ?image.
      OPTIONAL {?item wdt:P176 ?manufacturer.}
      OPTIONAL {?item wdt:P571 ?date}.
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }
    

Image grid of soundcards edit

The following query uses these:

Features: ImageGrid (Q24515278)  View with Reasonator View with SQID

#defaultView:ImageGrid
SELECT ?item ?itemLabel ?image
WHERE 
{
  ?item wdt:P31 wd:Q4343.
  ?item wdt:P18 ?image.
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}

Commands edit

Return a list of all of the environment variables that the 'ls' command can read edit

The following query uses these:

  • Properties: reads environment variable (P4810)  View with Reasonator View with SQID
    SELECT ?var ?varLabel
    WHERE 
    {
      wd:Q283503 wdt:P4810 ?var
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }
    

Return a list of all command line options for 'make' edit

The following query uses these:

  • Properties: has command line option (P4837)  View with Reasonator View with SQID
    SELECT  ?value 
    {
    	wd:Q300867 wdt:P4837 ?value.
        
    	SERVICE wikibase:label { bd:serviceParam wikibase:language "en,en"  }    
    }
    

Return a bubble chart of standard UNIX utilities ranked in the order of the number of environment variables they can read edit

The following query uses these:

Features: BubbleChart (Q24515280)  View with Reasonator View with SQID

#defaultView:BubbleChart
SELECT ?itemLabel (COUNT(?item) as ?count)
WHERE 
{
  ?item wdt:P31 wd:Q18343316.
  ?item wdt:P4810 ?var.
  ?item rdfs:label ?itemLabel .
  FILTER (lang(?itemLabel)="en")
  } GROUP BY ?itemLabel
ORDER BY DESC(?count)

Scholarly Communication edit

Return a list of scientific articles that have metadata about what software was used in the study edit

The following query uses these:

  • Properties: instance of (P31)  View with Reasonator View with SQID, uses (P2283)  View with Reasonator View with SQID
    SELECT ?article ?articleLabel ?softwareLabel
    
    WHERE {
      ?article wdt:P31 wd:Q13442814 .
      ?article wdt:P2283 ?software .
                
      SERVICE wikibase:label {
    		bd:serviceParam wikibase:language "en" .
        
    }
      }
    

Return a ranked list of pieces of software used in scientific articles grouped by the numbers of papers that report use of the software edit

There is a button on WQS labled "Display". Clicking on that button will trigger a drop-down menu of visualization options. To see this as a graph select "Bubble Chart".

The following query uses these:

  • Properties: instance of (P31)  View with Reasonator View with SQID, uses (P2283)  View with Reasonator View with SQID
    SELECT ?software ?softwareLabel (COUNT(?article) AS ?count)
    
    WHERE {
      ?article wdt:P31 wd:Q13442814.
      ?article wdt:P2283 ?software .
                
      SERVICE wikibase:label {
    		bd:serviceParam wikibase:language "en" .
        
    }
      }
    GROUP BY ?software ?softwareLabel 
    ORDER BY DESC(?count)
    

Return a list of all scientific articles that use STATA software and list the version edit

The following query uses these:

Return a list of all scientific articles that have external data available at URL statements edit

The following query uses these:

Return a list of all scientific articles that have external data available at URL statements from the ISPS collection edit

The following query uses these:

  • Properties: instance of (P31)  View with Reasonator View with SQID, external data available at URL (P1325)  View with Reasonator View with SQID, collection (P195)  View with Reasonator View with SQID
    PREFIX ps: <http://www.wikidata.org/prop/statement/>
    PREFIX p: <http://www.wikidata.org/prop/>
    PREFIX pq: <http://www.wikidata.org/prop/qualifier/>
    SELECT ?article ?articleLabel 
    
    WHERE {
      ?article wdt:P31 wd:Q13442814 .
      ?article  p:P1325 [pq:P195 wd:Q32968689] .
     
              SERVICE wikibase:label {
    		bd:serviceParam wikibase:language "en" .
        
    }
      }
    

Return a list of all works that have software citation as a main subject edit

The following query uses these:

  • Properties: main subject (P921)  View with Reasonator View with SQID
    SELECT ?work ?workLabel 
    WHERE {
      
      ?work wdt:P921 wd:Q33115358 .
                
      SERVICE wikibase:label {
    		bd:serviceParam wikibase:language "en" .
        
    }
      }
    

Return a list of all works that have linked data or linked open data as a main subject edit

The following query uses these:

  • Properties: main subject (P921)  View with Reasonator View with SQID
    SELECT ?work ?workLabel 
    WHERE {
      
      ?work wdt:P921 wd:Q515701 .
                
    OPTIONAL {
      
      ?work wdt:P921 wd:wd:Q18692990.
    }
      
      SERVICE wikibase:label {
    		bd:serviceParam wikibase:language "en" .
        
    }
      }
    

Return a list of all software that has a DOI edit

The following query uses these:

  • Properties: subclass of (P279)  View with Reasonator View with SQID, DOI (P356)  View with Reasonator View with SQID, instance of (P31)  View with Reasonator View with SQID
    SELECT ?software ?softwareLabel ?doi
    WHERE 
    {
      ?software (p:P31/ps:P31/wdt:P279*) wd:Q7397 .
      ?software wdt:P356 ?doi .
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }
    

Return a list of universities in the U.S. that have their GRID ID listed in Wikidata edit

The following query uses these:

Return a list of universities in the PRC that have their GRID ID listed in Wikidata and display labels in Chinese edit

The following query uses these:

Scientific articles that have a piece of software as a main subject edit

The following query uses these:

  • Properties: instance of (P31)  View with Reasonator View with SQID, main subject (P921)  View with Reasonator View with SQID, subclass of (P279)  View with Reasonator View with SQID
    SELECT ?item ?itemLabel ?subjectLabel
    WHERE 
    {
      ?item wdt:P31 wd:Q13442814.
      ?item wdt:P921 ?subject.
      ?subject wdt:P31/wdt:P279* wd:Q7397.
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }
    

Scientific articles that have a piece of scientific software as a main subject ranked by # of mentions edit

The following query uses these:

  • Properties: instance of (P31)  View with Reasonator View with SQID, main subject (P921)  View with Reasonator View with SQID, subclass of (P279)  View with Reasonator View with SQID, has use (P366)  View with Reasonator View with SQID
    SELECT  ?subject ?subjectLabel (COUNT (?item) AS ?count) 
    WHERE 
    {
      ?item wdt:P31 wd:Q13442814.
      ?item wdt:P921 ?subject.
      ?subject wdt:P31/wdt:P279* wd:Q7397.
      ?subject wdt:P366 wd:Q336.
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }
    
    GROUP BY ?subject ?subjectLabel
    
    ORDER BY DESC (?count)
    

Journals that have published the highest number of articles that have a software title as a main subject edit

The following query uses these:

  • Properties: instance of (P31)  View with Reasonator View with SQID, main subject (P921)  View with Reasonator View with SQID, subclass of (P279)  View with Reasonator View with SQID, published in (P1433)  View with Reasonator View with SQID
    SELECT ?journal ?journalLabel (COUNT (?item) AS ?count)
    WHERE 
    {
      ?item wdt:P31 wd:Q13442814.
      ?item wdt:P921 ?subject.
      ?subject wdt:P31/wdt:P279* wd:Q7397.
      ?item wdt:P1433 ?journal.
      ?journal wdt:P31 wd:Q5633421.
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }
    
    GROUP BY ?journal ?journalLabel
    
    
    ORDER BY DESC(?count)
    
    LIMIT 75
    

Journals that have published the highest number of articles that have a file format as a main subject edit

The following query uses these:

  • Properties: instance of (P31)  View with Reasonator View with SQID, main subject (P921)  View with Reasonator View with SQID, subclass of (P279)  View with Reasonator View with SQID, published in (P1433)  View with Reasonator View with SQID
    SELECT ?journal ?journalLabel (COUNT(?item) AS ?count) WHERE {
      ?item wdt:P31 wd:Q13442814.
      ?item wdt:P921 ?subject.
      ?subject (wdt:P31/wdt:P279*) wd:Q235557.
      ?item wdt:P1433 ?journal.
      ?journal wdt:P31 wd:Q5633421.
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }
    GROUP BY ?journal ?journalLabel
    ORDER BY DESC(?count)
    LIMIT 75
    

Institutions w CrossRef Funder ID edit

The following query uses these:

Video Games edit

Return a graph of all subclasses of video game edit

The following query uses these:

Features: Graph (Q24515287)  View with Reasonator View with SQID

#defaultView:Graph
SELECT DISTINCT ?vid ?vidLabel ?subclassOf 
WHERE {
  ?vid wdt:P279* wd:Q7889 .
  OPTIONAL { ?vid wdt:P279 ?subclassOf } .
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en" }
}
ORDER BY ?vidLabel

Return a list of all Twitter accounts for video games listed in Wikidata edit

The following query uses these:

  • Properties: subclass of (P279)  View with Reasonator View with SQID, X username (P2002)  View with Reasonator View with SQID, instance of (P31)  View with Reasonator View with SQID
    SELECT DISTINCT ?appLabel ?twitter 
    WHERE {
        ?app (p:P31/ps:P31/wdt:P279*) wd:Q7889.
        ?app wdt:P2002 ?twitter .
    
      SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
    }
    

Return a timeline of all the games in the King's Quest series by date of publication edit

The following query uses these:

  • Properties: part of the series (P179)  View with Reasonator View with SQID, publication date (P577)  View with Reasonator View with SQID
    #defaultView:Timeline
    SELECT ?game ?gameLabel ?date
    WHERE 
    {
      ?game wdt:P179 wd:Q1161804.
      ?game wdt:P577 ?date.
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }
    

(GAS) return a graph of subclasses of video game edit

The following query uses these:

Features: Graph (Q24515287)  View with Reasonator View with SQID

#defaultView:Graph
PREFIX gas: <http://www.bigdata.com/rdf/gas#>

SELECT ?item ?itemLabel ?pic ?linkTo
WHERE
{
  SERVICE gas:service {
    gas:program gas:gasClass "com.bigdata.rdf.graph.analytics.SSSP" ;
                gas:in wd:Q7889 ;
                gas:traversalDirection "Reverse" ;
                gas:out ?item ;
                gas:out1 ?depth ;
                gas:maxIterations 4 ;
                gas:linkType wdt:P279 .
  }
  OPTIONAL { ?item wdt:P279 ?linkTo }
  OPTIONAL { ?item wdt:P18 ?pic }
  SERVICE wikibase:label {bd:serviceParam wikibase:language "en" }
}

Video Games Listed in the World of Spectrum (the official world archive for the Sinclair ZX Spectrum) which are available to play in an emulator right now via the Internet Archive edit

The following query uses these:

  • Properties: ZXDB ID (P4705)  View with Reasonator View with SQID, Internet Archive ID (P724)  View with Reasonator View with SQID
    SELECT ?item ?itemLabel ?WorldOfSpectrumID ?archiveID
    {
    	?item wdt:P4705 ?WorldOfSpectrumID.
            ?item wdt:P724 ?archiveID.
    	SERVICE wikibase:label { bd:serviceParam wikibase:language "en,en"  }    
    }
    

Characters that have GIF sets on Giphy edit

The following query uses these:

  • Properties: instance of (P31)  View with Reasonator View with SQID, subclass of (P279)  View with Reasonator View with SQID, Giphy username (P4013)  View with Reasonator View with SQID
    SELECT DISTINCT ?item ?itemLabel ?giphy WHERE {
      ?item wdt:P31/wdt:P279* wd:Q95074.
      ?item wdt:P4013 ?giphy.
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }
    

Video games set in the Star Wars Expanded Universe by game mode edit

The following query uses these:

Video games dev by people who worked at a national lab edit

The following query uses these:

  • Properties: instance of (P31)  View with Reasonator View with SQID, developer (P178)  View with Reasonator View with SQID, employer (P108)  View with Reasonator View with SQID
    SELECT ?item ?itemLabel 
    WHERE 
    {
      ?item wdt:P31 wd:Q7889.
      ?item wdt:P178 ?dev.
      ?dev wdt:P108 ?employer.
      ?employer wdt:P31 wd:Q2624320.
      
      
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }
    

===Video games that have Mobygames group ID and subreddit

The following query uses these:

  • Properties: instance of (P31)  View with Reasonator View with SQID, MobyGames group ID (former scheme) (P5360)  View with Reasonator View with SQID, subreddit (P3984)  View with Reasonator View with SQID, image (P18)  View with Reasonator View with SQID
    #Video game series that have Moby games group ID and a subreddit
    SELECT ?series ?seriesLabel ?mobyGroup ?subreddit ?image
    WHERE 
    {
      ?series wdt:P31 wd:Q7058673.
      ?series wdt:P5360 ?mobyGroup.
      ?series wdt:P3984 ?subreddit.
      OPTIONAL {?series wdt:P18 ?image.}
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }
    

Awards edit

Return an image grid of all winners of the Free Software Foundation's Free Software Awards edit

The following query uses these:

Features: ImageGrid (Q24515278)  View with Reasonator View with SQID

#defaultView:ImageGrid
SELECT  ?personLabel  ?image 

WHERE {
  ?person wdt:P166 wd:Q1389573 .
  ?person wdt:P18 ?image .
  SERVICE wikibase:label {
		bd:serviceParam wikibase:language "en" .
    
}
  }

Return an image grid of winners of FSF free software award with their notable work displayed under the image edit

The following query uses these:

Features: ImageGrid (Q24515278)  View with Reasonator View with SQID

#defaultView:ImageGrid
SELECT  ?personLabel  ?image ?notableLabel

WHERE {
  ?person wdt:P166 wd:Q1389573 .
  ?person wdt:P18 ?image .
  ?person wdt:P800 ?notable
  SERVICE wikibase:label {
		bd:serviceParam wikibase:language "en" .
    
}
  }

Return a list of all winners of a DPC award edit

The following query uses these:

  • Properties: award received (P166)  View with Reasonator View with SQID, conferred by (P1027)  View with Reasonator View with SQID
    SELECT  ?recLabel  ?awardLabel 
    
    WHERE {
      ?rec wdt:P166 ?award .
      ?award wdt:P1027 wd:Q30256408
      SERVICE wikibase:label {
    		bd:serviceParam wikibase:language "en" .
        
    }
      }
    

Winners of the Computer Pioneers Award and where they were educated edit

The following query uses these:

  • Properties: award received (P166)  View with Reasonator View with SQID, educated at (P69)  View with Reasonator View with SQID
    SELECT ?person ?personLabel ?schoolLabel
    WHERE {
       ?person wdt:P166 wd:Q4363133;
              p:P69 [ps:P69 ?school].
     SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
       }
    

Return an image grid of people inducted into the Women in Technology International Hall of Fame edit

The following query uses these:

Features: ImageGrid (Q24515278)  View with Reasonator View with SQID

#defaultView:ImageGrid
SELECT ?awardeeLabel ?image WHERE {
  ?awardee wdt:P166 wd:Q55200.
  ?awardee wdt:P18 ?image.
 SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
  
}

Return a list of women who have given oral histories to the Computer History Museum along with their image and list awards they have rec'd edit

The following query uses these:

  • Properties: archives at (P485)  View with Reasonator View with SQID, sex or gender (P21)  View with Reasonator View with SQID, award received (P166)  View with Reasonator View with SQID, image (P18)  View with Reasonator View with SQID
    SELECT  ?person ?personLabel  ?image ?awardLabel 
    
    WHERE {
      ?person wdt:P485 wd:Q964035.
      ?person wdt:P21 wd:Q6581072.
      OPTIONAL {?person wdt:P166 ?award}.
      OPTIONAL {?person wdt:P18 ?image.}
      
      SERVICE wikibase:label {
    		bd:serviceParam wikibase:language "en" .
        
    }
      }
    

People who have been elected into the Internet Hall of Fame edit

The following query uses these:

  • Properties: award received (P166)  View with Reasonator View with SQID, image (P18)  View with Reasonator View with SQID
    SELECT ?person ?personLabel ?image WHERE {
      ?person wdt:P166 wd:Q6055547.
      OPTIONAL {?person wdt:P18 ?image}.
        
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }
    

Map of birthplaces of people who have been elected to the Internet Hall of Fame edit

The following query uses these:

Features: map (Q24515275)  View with Reasonator View with SQID

#defaultView:Map
SELECT DISTINCT ?person ?personLabel ?birthplaceLabel ?coord ?lat ?lon ?image WHERE {
  ?person wdt:P166 wd:Q6055547.
  OPTIONAL {?person wdt:P18 ?image}.
     ?person wdt:P19 ?birthplace
  OPTIONAL {?birthplace wdt:P625 ?coord. }
   OPTIONAL {
    ?birthplace p:P625 ?statement.
    ?statement psv:P625 ?node.
    ?node wikibase:geoLatitude ?lat.
    ?node wikibase:geoLongitude ?lon.
   }
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}

NAS occupation computer sci edit

The following query uses these:

Orgs Supporting Digital edit

Return an image grid of all institutions that are members of DLF edit

The following query uses these:

Features: ImageGrid (Q24515278)  View with Reasonator View with SQID

#defaultView:ImageGrid 
SELECT ?memberLabel ?image WHERE {
  ?member wdt:P463 wd:Q5275906.
  ?member wdt:P18 ?image.
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}

Return a list of all members of DLF edit

The following query uses these:

  • Properties: member of (P463)  View with Reasonator View with SQID
    SELECT ?memberLabel WHERE {
      ?member wdt:P463 wd:Q5275906.
      
      SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
    }
    

Return a list of all members of JISC edit

The following query uses these:

  • Properties: member of (P463)  View with Reasonator View with SQID
    SELECT ?memberLabel WHERE {
      ?member wdt:P463 wd:Q6269240.
      SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
    }
    

Software developed by members of JISC edit

The following query uses these:

  • Properties: member of (P463)  View with Reasonator View with SQID, developer (P178)  View with Reasonator View with SQID
    SELECT ?member ?memberLabel ?software ?softwareLabel WHERE {
      ?member wdt:P463 wd:Q6269240.
      ?software wdt:P178 ?member.
      SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
    }
    

Return a map plotted with the geo coordinates for the locations of JISC member institutions edit

The following query uses these:

Features: map (Q24515275)  View with Reasonator View with SQID

#defaultView:Map
PREFIX psv: <http://www.wikidata.org/prop/statement/value/>

SELECT ?orgLabel ?hqLabel ?coord ?lat ?lon WHERE {
  ?org wdt:P463 wd:Q6269240.
  ?org wdt:P159 ?hq.
  OPTIONAL { ?hq wdt:P625 ?coord. }
  OPTIONAL {
    ?hq p:P625 ?statement.
    ?statement psv:P625 ?node.
    ?node wikibase:geoLatitude ?lat.
    ?node wikibase:geoLongitude ?lon.
  }
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}

Return a map plotted with the geocoordinates for the locations of DLF member institutions edit

The following query uses these:

Features: map (Q24515275)  View with Reasonator View with SQID

#defaultView:Map
PREFIX psv: <http://www.wikidata.org/prop/statement/value/>
SELECT ?orgLabel ?hqLabel ?coord ?lat ?lon WHERE {
  ?org wdt:P463 wd:Q5275906.
  ?org wdt:P159 ?hq.
  OPTIONAL { ?hq wdt:P625 ?coord. }
  OPTIONAL {
    ?hq p:P625 ?statement.
    ?statement psv:P625 ?node.
    ?node wikibase:geoLatitude ?lat.
    ?node wikibase:geoLongitude ?lon.
  }
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}

Return a map plotted with the locations of ARL member institutions edit

The following query uses these:

Features: map (Q24515275)  View with Reasonator View with SQID

PREFIX psv: <http://www.wikidata.org/prop/statement/value/>

#defaultView:Map
SELECT ?orgLabel ?hqLabel ?coord ?lat ?lon WHERE {
  ?org wdt:P463 wd:Q4810036.
  ?org wdt:P159 ?hq.
  OPTIONAL { ?hq wdt:P625 ?coord. }
  OPTIONAL {
    ?hq p:P625 ?statement.
    ?statement psv:P625 ?node.
    ?node wikibase:geoLatitude ?lat.
    ?node wikibase:geoLongitude ?lon.
  }
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}

ARL member institutions that have a Twitter username in Wikidata edit

The following query uses these:

  • Properties: member of (P463)  View with Reasonator View with SQID, X username (P2002)  View with Reasonator View with SQID
    SELECT DISTINCT ?memberLabel ?twitter WHERE {
      ?member wdt:P463 wd:Q4810036.
      ?member wdt:P2002 ?twitter
      SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
    }
    

Overlap between ARL and ORCID memberships edit

The following query uses these:

  • Properties: member of (P463)  View with Reasonator View with SQID
    SELECT DISTINCT ?memberLabel  WHERE {
      ?member wdt:P463 wd:Q4810036.
      ?member wdt:P463 wd:Q19861084.
      SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
    }
    

Organizations that are members of ORCID and JISC edit

The following query uses these:

  • Properties: member of (P463)  View with Reasonator View with SQID
    SELECT DISTINCT ?memberLabel WHERE {
      ?member wdt:P463 wd:Q6269240.
      ?member wdt:P463 wd:Q19861084.
      SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
    }
    

Web archives edit

The following query uses these:

  • Properties: instance of (P31)  View with Reasonator View with SQID
    SELECT ?item ?label  WHERE {
      ?item wdt:P31 wd:Q30047053.
      SERVICE wikibase:label {
        bd:serviceParam wikibase:language "en" . 
        ?item rdfs:label ?label
      }
    }
    

Organizations and their Name Assigning Authority Numbers edit

The following query uses these:

  • Properties: Name Assigning Authority Number (P1870)  View with Reasonator View with SQID
    SELECT ?institution ?institutionLabel ?value 
    {
    	?institution wdt:P1870 ?value .
    	SERVICE wikibase:label { bd:serviceParam wikibase:language "en,en"  }    
    }
    

Digital Libraries edit

The following query uses these:

Institutions with memberships to the DPC and other organizations of which they are also members edit

The following query uses these:

  • Properties: member of (P463)  View with Reasonator View with SQID
    #defaultView:Dimensions
    SELECT ?memberLabel ?othersLabel
    
    WHERE {
       	?member	wdt:P463 wd:Q5275956 .
        ?member	wdt:P463 ?others .
                
      SERVICE wikibase:label {
    		bd:serviceParam wikibase:language "en" .
        
    }
      }
    

Institutions with memberships to the OPF and other organizations of which they are also members edit

The following query uses these:

  • Properties: member of (P463)  View with Reasonator View with SQID
    #defaultView:Dimensions
    SELECT ?memberLabel ?othersLabel
    
    WHERE {
       	?member	wdt:P463 wd:Q27981723.
        ?member	wdt:P463 ?others .
                
      SERVICE wikibase:label {
    		bd:serviceParam wikibase:language "en" .
        
    }
      }
    

Institutions that are members of the OPF and images edit

The following query uses these:

  • Properties: member of (P463)  View with Reasonator View with SQID, image (P18)  View with Reasonator View with SQID
    SELECT ?member ?memberLabel ?image
    
    WHERE {
       	?member	wdt:P463 wd:Q27981723 .
        ?member wdt:P18 ?image.
                
      SERVICE wikibase:label {
    		bd:serviceParam wikibase:language "en" .
        
    }
      }
    

Return an image grid of organizations that are members of the International Internet Preservation Consortium edit

The following query uses these:

Features: ImageGrid (Q24515278)  View with Reasonator View with SQID

#defaultView:ImageGrid
SELECT DISTINCT ?memberLabel ?image WHERE {
  ?member wdt:P463 wd:Q697497.
  ?member wdt:P18 ?image
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}

Return a list of all metadata registries and their websites edit

The following query uses these:

Return a list of software titles developed by people/orgs that have archival material at the Computer History Museum edit

The following query uses these:

  • Properties: archives at (P485)  View with Reasonator View with SQID, developer (P178)  View with Reasonator View with SQID
    SELECT  ?person ?personLabel   ?software ?softwareLabel
    
    WHERE {
      ?person wdt:P485 wd:Q964035 .
      ?software wdt:P178 ?person.
     
      SERVICE wikibase:label {
    		bd:serviceParam wikibase:language "en" .
        
    }
      }
    

Supporters of IOC edit

The following query uses these:

  • Properties: P1962, logo image (P154)  View with Reasonator View with SQID
    SELECT ?supporter ?supporterLabel ?logo WHERE {
      wd:Q29188397 wdt:P1962 ?supporter.
      OPTIONAL {?supporter wdt:P154 ?logo.}
     SERVICE wikibase:label {
    		bd:serviceParam wikibase:language "en" .
    }
      }
    

Software titles developed by members of OPF edit

The following query uses these:

  • Properties: member of (P463)  View with Reasonator View with SQID, developer (P178)  View with Reasonator View with SQID
    SELECT ?member ?memberLabel ?software ?softwareLabel WHERE {
      ?member wdt:P463 wd:Q27981723.
      ?software wdt:P178 ?member.
      SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
    }
    

IIIF edit

Return a list of all members of the IIIF Consortium edit

The following query uses these:

  • Properties: member of (P463)  View with Reasonator View with SQID
    SELECT ?memberLabel  WHERE {
      ?member wdt:P463 wd:Q35677307.
      SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
    }
    

Create a map with the coordinates of all orgs that are members of IIIF Consortium edit

Template:SPARQL2

YCBA edit

Female Printmakers edit

Template:SPARQL2

Female Printmakers 1700s edit

Template:SPARQL2

FRBR in Wikidata edit

Works and their editions edit

Template:SPARQL2

Document Typesetting edit

Applications that depend on TeX edit

Template:SPARQL2

Commands for Tex and Latex edit

Template:SPARQL2

Digital Preservation edit

Software with 'use' digital preservation edit

Template:SPARQL2

Anything with 'use' digital preservation edit

Template:SPARQL2

Anything with 'use' digital preservation and what class it belongs to edit

Template:SPARQL2

Wikidata edit

Return a list of people who have accounts on Wikidata listed in Wikidata edit

Template:SPARQL2

Architecture edit

Return a list of CT buildings for which we know the architect edit

Template:SPARQL2

Return an image grid of CT buildings for which we know the architect edit

Template:SPARQL2

Return an image grid of IL buildings for which we know the architect edit

Template:SPARQL2

Return an image grid of PA buildings for which we know the architect edit

Template:SPARQL2

Return a list of architects and the institutions that hold their papers edit

Template:SPARQL2

Return a map of the architecture firms w/ geocoodinates of their headquarters in Wikidata edit

Template:SPARQL2

Return an image grid of ICAM members edit

Template:SPARQL2

Return a list of all members of ICAM edit

Template:SPARQL2

Computer Network Protocol edit

Return a list of computer network protocol edit

Template:SPARQL2

Return a list of all protocols that have data about the associated RFC edit

Template:SPARQL2

Return a list of protocols and the ports they use edit

Template:SPARQL2

Standards edit

Return a list of standards from the W3C along with what type of thing they govern edit

Template:SPARQL2

Return a bubble chart visualization of standards bodies by the number of standards they are connected to in Wikidata edit

Template:SPARQL2

Algorithms edit

Return a list of algorithms and the tasks they are used to solve edit

Template:SPARQL2

GAS graph of the subclasses of algorithm edit

Template:SPARQL2

Items with an entry in the Dictionary of Data Structures and Alogrithms edit

Template:SPARQL2

Platforms edit

Return a list of all software that runs on the Amiga platform edit

Template:SPARQL2

X as a Service edit

All Subclasses of "as a Service" edit

Template:SPARQL2

Instances of software as a service edit

Template:SPARQL2

Programming Languages edit

Langs influenced by smalltalk edit

Template:SPARQL2

Graph of subclasses of programming language edit

Template:SPARQL2

Unmanned vehicles edit

GAS graph of the subclasses of unmanned vehicle edit

Template:SPARQL2

Drones edit

Subclasses of unmanned aerial vehicle edit

Template:SPARQL2

Graph of the subclasses of unmanned aerial vehicle edit

Template:SPARQL2

Cryptocurrencies edit

What cryptocurrencies are described in Wikidata edit

Template:SPARQL2

Cryptocurrencies named after people or things edit

Template:SPARQL2

Cryptocurrencies and the type of proof they use edit

Template:SPARQL2

Return an image grid of the people or things after which cryptocurrencies are named edit

Template:SPARQL2

Image grid of logos for cryptocurrencies edit

Template:SPARQL2

Malware edit

(GAS) graph of subclasses of malware edit

Template:SPARQL2

Computer worms and pictures of what they are named after edit

Template:SPARQL2

Knowledge Organization edit

Template:SPARQL2

Transatlantic communications cables edit

Return a map plotted with the terminus coordinates of transatlantic cables edit

Template:SPARQL2

Robots edit

Return an image grid of robots edit

Template:SPARQL2

Return a (GAS) graph of the subclasses of robot edit

Template:SPARQL2

Bots edit

Chatbots edit

Template:SPARQL2

Chatbots by dev and date edit

Template:SPARQL2

Smart Speakers edit

Return a list of smart speakers edit

Template:SPARQL2

Smart Speakers and the virtual assistants they employ edit

Template:SPARQL2

Digital Art edit

Return an image grid of people who are in the compArt database Digital Art (daDA) of the University of Bremen edit

Template:SPARQL2

TO FIX edit

federated edit

Template:SPARQL2

YCBA edit

Template:SPARQL2

IDEs and programming languages edit

It is unclear to me if we are all using these props consistently. Does programming language here mean the lang the IDE is written in, or does it mean the lang the IDE can be used to support? Template:SPARQL2

Bridges edit

Plot a map of covered bridges edit

Template:SPARQL2

Romanian settlement with wrong diacritics in non-ro and non-tr labels edit

Template:SPARQL2

Forests edit

Return a graph of subclasses of forest edit

Template:SPARQL2

Bibliographies edit

Instances of bibliography edit

Template:SPARQL2

Instances of bibliography and the topics they cover edit

Template:SPARQL2

Computer Science edit

GAS graph of subclasses of computer science edit

Template:SPARQL2

Named After edit

Cycling teams named after software edit

Template:SPARQL2

Yale edit

Template:SPARQL2

Genes named after fictional characters and the scientific articles in which these names were established edit

Template:SPARQL2

Airports that "have facility" wifi edit

Template:SPARQL2