User:YULdigitalpreservation/SPARQLsoftware

This page lists SPARQL queries related to software that I have written edit

Software edit

How many pieces of software have minimal set of props edit

The following query uses these:

How many pieces of software have minimal set of props using OPTIONAL edit

The following query uses these:

How many pieces of software have these 4 props edit

The following query uses these:

Return a graph of the class/subclass relationships for software licenses 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 "Graph".

The following query uses these:

  • Properties: subclass of (P279)  View with Reasonator View with SQID
    SELECT DISTINCT ?license ?licenseLabel ?subclassOf 
    WHERE {
      ?license wdt:P279* wd:Q207621 .
      OPTIONAL { ?license wdt:P279 ?subclassOf } .
      SERVICE wikibase:label { bd:serviceParam wikibase:language "en" }
    }
    ORDER BY ?licenseLabel
    

Return a list of software titles, their licenses, and the superclass of licenses to which they belong edit

The following query uses these:

  • Properties: subclass of (P279)  View with Reasonator View with SQID, copyright license (P275)  View with Reasonator View with SQID, instance of (P31)  View with Reasonator View with SQID
    SELECT DISTINCT ?app ?appLabel ?licenseLabel ?classLabel
    WHERE {
      ?app (p:P31/ps:P31/wdt:P279*) wd:Q7397.
      ?app wdt:P275 ?license.
      ?license wdt:P279 ?class
    
      SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
    }
    

Create a bubble chart showing the license superclasses with the most software titles assigned to them 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: subclass of (P279)  View with Reasonator View with SQID, copyright license (P275)  View with Reasonator View with SQID, instance of (P31)  View with Reasonator View with SQID
    SELECT DISTINCT  ?license ?licenseLabel (COUNT(?app) AS ?count)
    WHERE {
      ?app (p:P31/ps:P31/wdt:P279*) wd:Q7397.
      ?app wdt:P275 ?license.
      ?license wdt:P279 ?class
    
      SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
    }
    
    GROUP BY ?license ?licenseLabel
    ORDER BY DESC(?count)
    

Return a ranked list of the classes used to model 3D computing resources 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, has use (P366)  View with Reasonator View with SQID
    SELECT ?class ?classLabel (count(?software) AS ?count)
    
    WHERE {
      
      ?software wdt:P31 ?class .
      ?software wdt:P366 wd:Q189177 .
                
      SERVICE wikibase:label {
    		bd:serviceParam wikibase:language "en" .
        
    }
      }
    
    GROUP BY ?class ?classLabel
    ORDER BY DESC(?count)
    

Return a list of all browsers based on Firefox edit

The following query uses these:

  • Properties: instance of (P31)  View with Reasonator View with SQID, based on (P144)  View with Reasonator View with SQID
    SELECT ?browser ?browserLabel 
    WHERE {
      ?browser wdt:P31 wd:Q6368.
      ?browser wdt:P144 wd:Q698.
    
      SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
    }
    

Return a timeline of all versions of Netscape Navigator edit

The following query uses these:

  • Properties: subclass of (P279)  View with Reasonator View with SQID, publication date (P577)  View with Reasonator View with SQID
    #defaultView:Timeline
    SELECT ?version ?versionLabel ?year
    WHERE {
      ?version wdt:P279 wd:Q235419.
      ?version wdt:P577 ?year
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }
    

Return a timeline of all versions of Maya edit

The following query uses these:

  • Properties: subclass of (P279)  View with Reasonator View with SQID, publication date (P577)  View with Reasonator View with SQID
    #defaultView:Timeline
    SELECT ?app ?appLabel ?year WHERE {
      ?app wdt:P279 wd:Q272597.
      ?app wdt:P577 ?year .
      SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
    }
    

Return an image grid of all creative works that used Autodesk Maya for animation edit

The following query uses these:

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

#defaultView:ImageGrid
SELECT ?work ?workLabel ?image
WHERE {
  ?work wdt:P2283 wd:Q272597.
  ?work wdt:P18 ?image
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}

Return an image grid of all creative works that used Renderman for animation edit

The following query uses these:

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

#defaultView:ImageGrid
SELECT ?work ?workLabel ?image WHERE {
  ?work wdt:P2283 wd:Q855971.
  ?work wdt:P18 ?image.
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}

Return a list of all creative works that used Autodesk Maya for animation edit

The following query uses these:

  • Properties: uses (P2283)  View with Reasonator View with SQID
    SELECT ?work ?workLabel 
    WHERE {
      ?work wdt:P2283 wd:Q272597.
    
      SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
    }
    

Return a list of software titles that are used for 3D computer graphics edit

The following query uses these:

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

Return a list of scientific software and their associated Twitter accounts edit

The following query uses these:

Audio player software by license type edit

The following query uses these:

  • Properties: subclass of (P279)  View with Reasonator View with SQID, copyright license (P275)  View with Reasonator View with SQID, instance of (P31)  View with Reasonator View with SQID
    SELECT DISTINCT ?player ?playerLabel ?licenseLabel
    WHERE {
      ?player (p:P31/ps:P31/wdt:P279*) wd:Q758895 .
      ?player wdt:P275 ?license .
      SERVICE wikibase:label { bd:serviceParam wikibase:language "en" }
    }
    ORDER BY ?licenseLabel
    

Return a list of CAD software by license 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, copyright license (P275)  View with Reasonator View with SQID
    SELECT ?app ?appLabel ?licenseLabel ?date
    
    WHERE {
      ?app wdt:P31/wdt:P279* wd:Q15548076.
      ?app wdt:P275 ?license .
      SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
    }
    
    ORDER BY ?license
    

Software by Adventure Soft edit

The following query uses these:

  • Properties: instance of (P31)  View with Reasonator View with SQID, developer (P178)  View with Reasonator View with SQID
    SELECT ?item ?label 
    WHERE {
      ?item wdt:P31 wd:Q7889 .
      ?item wdt:P178 wd:Q379959 .
      SERVICE wikibase:label {
        bd:serviceParam wikibase:language "en" . 
        ?item rdfs:label ?label
      }
      
    }
    LIMIT 100
    

Web server software and the languages they are written in edit

The following query uses these:

  • Properties: instance of (P31)  View with Reasonator View with SQID, programmed in (P277)  View with Reasonator View with SQID
    SELECT ?app ?appLabel ?langLabel WHERE {
      ?app wdt:P31 wd:Q11288.
      ?app wdt:P277 ?lang .
      SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
    }
    

IRC clients and the operating systems they run on edit

The following query uses these:

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

Image grid of logo images for projects of the apache software foundation edit

The following query uses these:

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

#defaultView:ImageGrid
SELECT ?project ?projectLabel ?image
WHERE 
{
  ?project wdt:P178 wd:Q489709.
  ?project wdt:P154 ?image
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}

Software projects affiliated with Software in the Public Interest edit

The following query uses these:

  • Properties: affiliation (P1416)  View with Reasonator View with SQID
    SELECT ?item ?label WHERE {
      ?item wdt:P1416 wd:Q685777.
     
      SERVICE wikibase:label {
        bd:serviceParam wikibase:language "en" . 
        ?item rdfs:label ?label
      }
    }
    

Image grid of logo images of software projects affiliated with Software in the Public Interest edit

The following query uses these:

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

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

Software with entry on Open Hub edit

The following query uses these:

  • Properties: Open Hub ID (P1972)  View with Reasonator View with SQID
    SELECT ?software ?softwareLabel  ?valueLabel
    {
    	?software wdt:P1972 ?value .
    	SERVICE wikibase:label { bd:serviceParam wikibase:language "en,en"  }    
    }
    LIMIT 1000
    

Return a list of all intelligent personal assistant software in Wikidata edit

The following query uses these:

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

Software repositories edit

The following query uses these:

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

Media Player software by license type edit

The following query uses these:

  • Properties: subclass of (P279)  View with Reasonator View with SQID, copyright license (P275)  View with Reasonator View with SQID, instance of (P31)  View with Reasonator View with SQID
    SELECT DISTINCT ?player ?playerLabel ?licenseLabel WHERE {
      ?player (p:P31/ps:P31/wdt:P279*) wd:Q210337.
      ?player wdt:P275 ?license.
      SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
    }
    ORDER BY ?licenseLabel
    

Software for the Apple IIGS edit

The following query uses these:

  • Properties: platform (P400)  View with Reasonator View with SQID, game mode (P404)  View with Reasonator View with SQID
    SELECT DISTINCT ?software ?softwareLabel ?modeLabel WHERE {
      ?software wdt:P400 wd:Q1282269.
      OPTIONAL {?software wdt:P404 ?mode}.
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }
    

Software that have FLAC as a readable file format edit

The following query uses these:

Software available under a free software license that can read FLAC and logos edit

The following query uses these:

Software 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:Q7397.
      ?item wdt:P178 wd:Q628051.
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }
    

Feed readers and the languages they are written in edit

The following query uses these:

  • Properties: instance of (P31)  View with Reasonator View with SQID, programmed in (P277)  View with Reasonator View with SQID
    SELECT ?app ?appLabel ?langLabel WHERE {
      ?app wdt:P31 wd:Q498267.
      ?app wdt:P277 ?lang.
      SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
    }
    

Software titles that contain the word "winter" 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 DISTINCT ?app ?appLabel 
    WHERE {
      ?app (wdt:P31/wdt:P279*) wd:Q7397.
      ?app rdfs:label ?appLabel.
      FILTER(CONTAINS(?appLabel, "winter")).
      
    }
    LIMIT 100
    

Graph of subclasses of computer graphics software 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:Q868410 ;
                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" }
}

Debuggers and the operating systems they run on edit

The following query uses these:

  • Properties: instance of (P31)  View with Reasonator View with SQID, operating system (P306)  View with Reasonator View with SQID
    SELECT ?debugger ?debuggerLabel ?osLabel
    WHERE 
    {
      ?debugger wdt:P31 wd:Q193231.
      ?debugger wdt:P306 ?os.
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }
    

Software used for 3D graphics by license edit

The following query uses these:

Software use for 3D graphics by license with logo image edit

The following query uses these:

Bubble chart of 3d graphics software titles ranked by count of readable file formats edit

The following query uses these:

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

#defaultView:BubbleChart
SELECT DISTINCT ?software ?softwareLabel  (count (?ff) as ?count)

WHERE {
  
  ?software wdt:P31/wdt:P279* wd:Q7397.
  ?software wdt:P366 wd:Q189177 .
  ?software wdt:P1072 ?ff.
           
  SERVICE wikibase:label {
		bd:serviceParam wikibase:language "en" .
    
}
  }

GROUP BY ?software ?softwareLabel

ORDER BY DESC(?count)

Bubble chart of women developers in order of number of software titles they have developed 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:Q7397.
      ?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)
    

Bubble chart of CAD software by count of readable file formats edit

The following query uses these:

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

#defaultView:BubbleChart
SELECT ?app ?appLabel (count (?ff) as ?count)

WHERE {
  ?app wdt:P31/wdt:P279* wd:Q15548076.
  OPTIONAL {?app wdt:P1072 ?ff.}
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}

GROUP BY ?app ?appLabel


ORDER BY DESC(?count)

Software with an external ID for the FSF Resource Directory edit

The following query uses these:

Software with an external ID for the FSF Resource Directory with logo images edit

The following query uses these:

Feed readers by OS and license edit

The following query uses these:

Software of the Gnu Project edit

The following query uses these:

  • Properties: developer (P178)  View with Reasonator View with SQID, logo image (P154)  View with Reasonator View with SQID
    SELECT ?software ?softwareLabel ?logo WHERE {
      ?software  wdt:P178 wd:Q7598.
      OPTIONAL {?software wdt:P154 ?logo.}
      
      SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
    }
    

Software that powers Wikidata and license info edit

The following query uses these:

  • Properties: software engine (P408)  View with Reasonator View with SQID, copyright license (P275)  View with Reasonator View with SQID
    SELECT ?engine ?engineLabel ?license ?licenseLabel
    WHERE 
    {
      wd:Q2013 wdt:P408 ?engine.
      ?engine wdt:P275 ?license.
      SERVICE wikibase:label 
              { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }
    

Software available under a free software license that can read .epub files edit

The following query uses these:

SDKs and logo images 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 ?sdk ?sdkLabel ?image WHERE {
      ?sdk wdt:P31 wd:Q467707.
      OPTIONAL {?sdk wdt:P154 ?image.}
      
      SERVICE wikibase:label {bd:serviceParam wikibase:language "en" }
    }
    

edit

The following query uses these:

Software of KDE Applications bundle and external identifiers edit

The following query uses these:

Software used for sequence alignment by license and programming language 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, copyright license (P275)  View with Reasonator View with SQID, programmed in (P277)  View with Reasonator View with SQID
    SELECT DISTINCT ?software ?softwareLabel ?licenseLabel ?langLabel WHERE {
      ?software (wdt:P31/wdt:P279*) wd:Q7397.
      {?software wdt:P366 wd:Q827246}
      UNION {?software wdt:P366 wd:Q1377767.}
      OPTIONAL {?software wdt:P275 ?license.}
      OPTIONAL {?software wdt:P277 ?lang}.
      SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
    }
    

Software for the CP/M operating system 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, operating system (P306)  View with Reasonator View with SQID, image (P18)  View with Reasonator View with SQID
    SELECT ?software ?softwareLabel ?image
    WHERE 
    {
      ?software wdt:P31/wdt:P279* wd:Q7397.
      ?software wdt:P306 wd:Q219528.
      OPTIONAL {?software wdt:P18 ?image}.
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }
    

Software named after Pi 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
    SELECT ?software ?softwareLabel  WHERE {
      ?software wdt:P31/wdt:P279* wd:Q7397.
      ?software wdt:P138 wd:Q167.
    SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
      }
    

Software that is described in the FSF resource directory and also has a Flatpack ID edit

The following query uses these:

Software developers and their ISNI numbers 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, ISNI (P213)  View with Reasonator View with SQID
    SELECT DISTINCT ?software ?softwareLabel ?devLabel ?ISNI
    WHERE 
    {
      ?software wdt:P31/wdt:P279* wd:Q7397.
      ?software wdt:P178 ?dev.
      ?dev wdt:P213 ?ISNI.
      
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }
    

Software titles and their subreddits 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, subreddit (P3984)  View with Reasonator View with SQID
    SELECT DISTINCT ?software ?softwareLabel ?subreddit
    WHERE 
    {
      ?software wdt:P31/wdt:P279* wd:Q7397.
      ?software wdt:P3984 ?subreddit.
     
      
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }
    

Free Software External IDs edit

The following query uses these:

Software developed by United States Department of Energy national laboratories edit

The following query uses these:

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

Software written in Lisp edit

The following query uses these:

  • Properties: programmed in (P277)  View with Reasonator View with SQID
    SELECT DISTINCT ?software  ?softwareLabel 
    
    WHERE {
      ?software wdt:P277 wd:Q132874
      
      SERVICE wikibase:label {
    		bd:serviceParam wikibase:language "en" .
        
    }
      }
    

Software written in Lisp and logo images edit

The following query uses these:

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

edit

The following query uses these:

  • Properties: part of (P361)  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 ?app ?appLabel ?licenseLabel ?image WHERE {
      ?app wdt:P361 wd:Q2896872.
      OPTIONAL {?app wdt:P275 ?license.}
      OPTIONAL {?app wdt:P154 ?image.}
      
      
    SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
    }
    

File formats that Diffoscope can compare edit

The following query uses these:

  • Properties: readable file format (P1072)  View with Reasonator View with SQID, file extension (P1195)  View with Reasonator View with SQID, media type (P1163)  View with Reasonator View with SQID
    SELECT ?fileformat ?fileformatLabel ?ext ?media WHERE {
      wd:Q50989245 wdt:P1072 ?fileformat.
      OPTIONAL { ?fileformat wdt:P1195 ?ext. }
      OPTIONAL { ?fileformat wdt:P1163 ?media. }
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }
    

Software used for crystallography 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 DISTINCT ?software ?softwareLabel WHERE {
      ?software wdt:P31/wdt:P279* wd:Q7397.
      ?software wdt:P366 wd:Q160398.
      SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
    }
    

Package Managers 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 ?item ?itemLabel ?logo
    WHERE 
    {
      ?item wdt:P31 wd:Q891055.
      OPTIONAL {?item wdt:P154 ?logo.}
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }
    

Software used for Crystallography 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 DISTINCT ?software ?softwareLabel WHERE {
      ?software wdt:P31/wdt:P279* wd:Q7397.
      {?software wdt:P366 wd:Q160398}
      UNION {?software wdt:P366 wd:Q826582.}
      SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
    }
    

Software used for crystallography and scientific articles about the software titles 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, main subject (P921)  View with Reasonator View with SQID
    SELECT DISTINCT ?software ?softwareLabel ?articleLabel WHERE {
      ?software wdt:P31/wdt:P279* wd:Q7397.
      {?software wdt:P366 wd:Q160398}
      UNION {?software wdt:P366 wd:Q826582.}
      OPTIONAL {?article wdt:P921 ?software.}
      SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
    }
    

Software titles that can read .PNG files edit

The following query uses these:

  • Properties: readable file format (P1072)  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:P1072 wd:Q178051.
      OPTIONAL { ?software wdt:P275 ?license. }
      OPTIONAL { ?software wdt:P154 ?image. }
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }
    

GAS graph of subclasses of compiler 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:Q47506 ;
                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" }
}

Software titles (that are not video games) that do not have any readable file formats listed yet 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 DISTINCT ?software ?softwareLabel 
    WHERE 
    {
      ?software wdt:P31/wdt:P279* wd:Q7397.
      FILTER NOT EXISTS {?software wdt:P1072 ?ff}.
      MINUS {?software wdt:P31/wdt:P279* wd:Q7889.}
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }
    

Software titles that have a link to their user's manual 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, user manual URL (P2078)  View with Reasonator View with SQID, logo image (P154)  View with Reasonator View with SQID
    SELECT ?software ?softwareLabel ?userManualLink ?logo
    WHERE 
    {
      ?software wdt:P31/wdt:P279* wd:Q7397.
      ?software wdt:P2078 ?userManualLink.
      OPTIONAL {?software wdt:P154 ?logo}.
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }
    

Scientific software and their user manuals and logo image edit

The following query uses these:

Software titles with records in the LOC NAF with logo images edit

The following query uses these:

Software titles and dependencies 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, depends on software (P1547)  View with Reasonator View with SQID
    SELECT ?application ?applicationLabel ?softwareLabel
    WHERE 
    {
      ?application wdt:P31/wdt:P279* wd:Q7397.
      ?application wdt:P1547 ?software.
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }
    

Bubble chart of software titles ranked by the number of dependencies listed for them in Wikidata edit

The following query uses these:

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

#defaultView:BubbleChart
SELECT ?application ?applicationLabel  (COUNT(?software) AS ?count)
WHERE 
{
  ?application wdt:P31/wdt:P279* wd:Q7397.
  ?application wdt:P1547 ?software.
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
GROUP BY ?application ?applicationLabel
ORDER BY DESC (?count)

LIMIT 60

Software dependencies for systemd edit

The following query uses these:

  • Properties: depends on software (P1547)  View with Reasonator View with SQID, instance of (P31)  View with Reasonator View with SQID
    SELECT ?software ?softwareLabel ?classLabel
    WHERE 
    {
      
      wd:Q286124 wdt:P1547 ?software.
      ?software wdt:P31 ?class.
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }
    

Bubble chart of Research Institutes by # of software titles developed edit

The following query uses these:

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

#defaultView:BubbleChart
SELECT  ?institute ?instituteLabel (COUNT (?software) AS ?COUNT)
WHERE 
{
  ?institute wdt:P31 wd:Q31855.
  ?software wdt:P31/wdt:P279* wd:Q7397.
  ?software wdt:P178 ?institute.
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}

GROUP BY ?institute ?instituteLabel

ORDER BY DESC (?count)

Research institutes and the software they have developed with license info 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, copyright license (P275)  View with Reasonator View with SQID
    SELECT  ?institute ?instituteLabel ?software ?softwareLabel ?license ?licenseLabel
    WHERE 
    {
      ?institute wdt:P31 wd:Q31855.
      ?software wdt:P31/wdt:P279* wd:Q7397.
      ?software wdt:P178 ?institute.
      OPTIONAl {?software wdt:P275 ?license}.
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }
    

Individuals who are software developers by the number of software titles credited to them 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 ?developer ?developerLabel (COUNT(?software) AS ?count) WHERE {
      ?software (p:P31/ps:P31/wdt:P279*) wd:Q7397.
      ?software wdt:P178 ?developer.
      ?developer wdt:P31 wd:Q5
       MINUS {?software wdt:P31/wdt:P279* wd:Q7889.}
      SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
    }
    GROUP BY ?developer ?developerLabel
    ORDER BY DESC(?count)
    LIMIT 50
    

Operating systems by the number of other operating systems based on 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, based on (P144)  View with Reasonator View with SQID
    SELECT ?os ?osLabel (COUNT(?item) AS ?count)
    WHERE 
    {
      ?item wdt:P31/wdt:P279* wd:Q9135.
      ?item wdt:P144 ?os.
      ?os wdt:P31/wdt:P279* wd:Q9135.
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }
    
    GROUP BY ?os ?osLabel
    ORDER BY DESC (?count)
    

Software that can read .stl files with license info and logo images edit

The following query uses these:

Timeline of software repositories edit

The following query uses these:

  • Properties: instance of (P31)  View with Reasonator View with SQID, inception (P571)  View with Reasonator View with SQID, logo image (P154)  View with Reasonator View with SQID
    SELECT ?item ?itemLabel ?date ?logo WHERE {
      {?item wdt:P31 wd:Q3133368.}
      UNION {?item wdt:P31 wd:Q1334294}.
      OPTIONAL {?item wdt:P571 ?date}.
      OPTIONAL {?item wdt:P154 ?logo}.
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
      }
    

Software funded by sponsor 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, sponsor (P859)  View with Reasonator View with SQID
    SELECT DISTINCT ?item ?itemLabel ?funder ?funderLabel
    WHERE 
    {
      ?item wdt:P31/wdt:P279* wd:Q7397.
      ?item wdt:P859 ?funder.
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }
    

Everything with use 3D by type 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 ?class ?classLabel  (COUNT(?software) AS ?count)
    
    WHERE {
      
      ?software wdt:P31 ?class.
      ?software wdt:P366 wd:Q189177 .
                
      SERVICE wikibase:label {
    		bd:serviceParam wikibase:language "en" .
        
    }
      }
    GROUP BY ?class ?classLabel
    
    ORDER BY DESC(?count)
    

Research Projects that are credited with the development of software 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 ?software ?softwareLabel
    WHERE {
      ?item (wdt:P31/wdt:P279*) wd:Q1298668.
      ?software wdt:P178 ?item.
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }
    

Organizations with a CrossRef Funder ID by the number of software titles they are credited with developing edit

The following query uses these:

  • Properties: Open Funder Registry funder ID (P3153)  View with Reasonator View with SQID, developer (P178)  View with Reasonator View with SQID
    SELECT ?item ?itemLabel (COUNT(?software) AS ?count)
    WHERE 
    {
      ?item wdt:P3153 ?value .
      ?software wdt:P178 ?item.
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }
    
    GROUP BY ?item ?itemLabel
    
    ORDER BY DESC(?count)
    

software and sources of inspiration 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, inspired by (P941)  View with Reasonator View with SQID
    SELECT DISTINCT ?application ?applicationLabel ?inspirationLabel
    WHERE 
    {
      ?application wdt:P31/wdt:P279* wd:Q7397.
      ?application wdt:P941 ?inspiration.
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }
    

software that depends on a software title that is a member of the GNU project 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:P361 wd:Q7598.
  ?char wdt:P1547 ?group.
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}

Programming Languages that the software of the GNU Project is written in edit

The following query uses these:

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

#Programming laguages in which software of the Gnu Project is written
#defaultView:Graph
SELECT ?software ?softwareLabel ?plang ?plangLabel ("00FFFF" AS ?rgb) WHERE {
  ?software wdt:P178 wd:Q7598.
  ?software wdt:P277 ?plang.
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}

Types of software described in Wikidata edit

The following query uses these:

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

Software written in Rust and the type of software it is 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, programmed in (P277)  View with Reasonator View with SQID
    SELECT ?type ?typeLabel ?software ?softwareLabel 
    WHERE 
    {
      ?type wdt:P31 wd:Q28530532.
      ?software wdt:P31/wdt:P279* ?type.
      ?software wdt:P277 wd:Q575650.
      
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }
    

Content Management Systems described in Wikidata 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 DISTINCT ?item ?itemLabel WHERE {
      ?item wdt:P31/wdt:P279* wd:Q131093.
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }
    

Content Management Systems by license 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, copyright license (P275)  View with Reasonator View with SQID
    SELECT DISTINCT ?item ?itemLabel ?licenseLabel WHERE {
      ?item wdt:P31/wdt:P279* wd:Q131093.
      OPTIONAL {?item wdt:P275 ?license}.
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }
    

Content Management Systems available under free software licenses 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, copyright license (P275)  View with Reasonator View with SQID
    SELECT DISTINCT ?item ?itemLabel ?licenseLabel 
    WHERE {
      ?item wdt:P31/wdt:P279* wd:Q131093.
      ?item wdt:P275 ?license.
      ?license (wdt:P31/wdt:P279*) wd:Q3943414.
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }
    

bubble chart of free software licenses used by cms software edit

The following query uses these:

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

#defaultView:BubbleChart
SELECT DISTINCT  ?licenseLabel (COUNT(?item) AS ?count)
WHERE {
  ?item wdt:P31/wdt:P279* wd:Q131093.
  ?item wdt:P275 ?license.
  ?license (wdt:P31/wdt:P279*) wd:Q3943414.
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
GROUP BY ?license ?licenseLabel

ORDER BY DESC(?count)

software developed by a space agency edit

The following query uses these:

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

javascript frameworks edit

The following query uses these:

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

software developed by a federal agency of the United States 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, logo image (P154)  View with Reasonator View with SQID
    SELECT ?agency ?agencyLabel ?softwareLabel ?logo
    WHERE 
    {
      ?agency wdt:P31/wdt:P279* wd:Q20857065.
      ?software wdt:P178 ?agency.
      OPTIONAL {?software wdt:P154 ?logo}.
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }
    

TedTalks 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, logo image (P154)  View with Reasonator View with SQID
    SELECT ?talk ?talkLabel ?subjectLabel ?logo
    WHERE 
    {
      ?talk wdt:P31 wd:Q23011722.
      ?talk wdt:P921 ?subject.
      ?subject wdt:P31/wdt:P279* wd:Q7397.
      OPTIONAL {?subject wdt:P154 ?logo}.
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }
    

Subclasses of software that are the topic of a Wikimedia list edit

The following query uses these:

  • Properties: subclass of (P279)  View with Reasonator View with SQID, has list (P2354)  View with Reasonator View with SQID
    SELECT ?item ?itemLabel ?list ?listLabel
    WHERE 
    {
      ?item wdt:P279* wd:Q7397.
      ?item wdt:P2354 ?list.
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }
    

Disk partitioning software by OS edit

The following query uses these:

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

Apache modules and their stack exchange tags edit

The following query uses these:

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

Audio player software by license and date edit

The following query uses these:

  • Properties: instance of (P31)  View with Reasonator View with SQID, copyright license (P275)  View with Reasonator View with SQID, inception (P571)  View with Reasonator View with SQID
    SELECT ?item ?itemLabel ?licenseLabel ?inception
    WHERE 
    {
      ?item wdt:P31 wd:Q758895.
      OPTIONAL {?item wdt:P275 ?license.}
      OPTIONAL {?item wdt:P571 ?inception.}
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }
    

edit

The following query uses these:

  • Properties: instance of (P31)  View with Reasonator View with SQID, copyright license (P275)  View with Reasonator View with SQID, inception (P571)  View with Reasonator View with SQID, logo image (P154)  View with Reasonator View with SQID
    SELECT ?item ?itemLabel ?licenseLabel ?inception ?logo
    WHERE 
    {
      ?item wdt:P31 wd:Q758895.
      OPTIONAL {?item wdt:P275 ?license.}
      OPTIONAL {?item wdt:P571 ?inception.}
      OPTIONAL {?item wdt:P154 ?logo}.
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }
    

businesses related to software edit

The following query uses these:

disk part software edit

The following query uses these:

  • Properties: instance of (P31)  View with Reasonator View with SQID, programmed in (P277)  View with Reasonator View with SQID, copyright license (P275)  View with Reasonator View with SQID, developer (P178)  View with Reasonator View with SQID
    SELECT ?item ?itemLabel ?programmingLabel ?licenseLabel ?devLabel WHERE {
      ?item wdt:P31 wd:Q24877948.
      OPTIONAL {?item wdt:P277 ?programming. }
      OPTIONAL {?item wdt:P275 ?license. }
      OPTIONAL {?item wdt:P178 ?dev. }
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }
    

edit

The following query uses these:

  • Properties: instance of (P31)  View with Reasonator View with SQID, X username (P2002)  View with Reasonator View with SQID, logo image (P154)  View with Reasonator View with SQID
    SELECT ?item ?itemLabel ?twitter ?logo
    WHERE 
    {
      ?item wdt:P31 wd:Q188860.
      ?item wdt:P2002 ?twitter.
      OPTIONAL {?item wdt:P154 ?logo.}
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }
    

Software titles that use the Qt framework edit

The following query uses these:

  • Properties: GUI toolkit or framework (P1414)  View with Reasonator View with SQID
    SELECT ?item ?itemLabel 
    WHERE 
    {
      ?item wdt:P1414 wd:Q201904.
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }
    

Computer Algebra Systems edit

The following query uses these:

  • Properties: instance of (P31)  View with Reasonator View with SQID, developer (P178)  View with Reasonator View with SQID, copyright license (P275)  View with Reasonator View with SQID, programmed in (P277)  View with Reasonator View with SQID
    SELECT ?item ?itemLabel ?devLabel ?licLabel ?plangLabel
    WHERE 
    {
      ?item wdt:P31 wd:Q830340.
      OPTIONAL {?item wdt:P178 ?dev.}
      OPTIONAL {?item wdt:P275 ?lic.}
      OPTIONAL {?item wdt:P277 ?plang.}
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }
    

Webservices edit

The following query uses these:

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

Knowledgebases and content 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, field of work (P101)  View with Reasonator View with SQID, industry (P452)  View with Reasonator View with SQID, main subject (P921)  View with Reasonator View with SQID
    SELECT ?item ?itemLabel ?fieldLabel ?industryLabel ?subjectLabel
    WHERE 
    {
      ?item (wdt:P31/wdt:P279*) wd:Q593744.
      OPTIONAL {?item wdt:P101 ?field.}
      OPTIONAL {?item wdt:P452 ?industry.}
      OPTIONAL {?item wdt:P921 ?subject.}
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }
    

Genealogy software edit

The following query uses these:

  • Properties: instance of (P31)  View with Reasonator View with SQID, developer (P178)  View with Reasonator View with SQID, inception (P571)  View with Reasonator View with SQID, logo image (P154)  View with Reasonator View with SQID
    SELECT ?item ?itemLabel ?developerLabel ?date ?logo
    WHERE 
    {
      ?item wdt:P31 wd:Q75050.
      OPTIONAL {?item wdt:P178 ?developer}.
      OPTIONAL {?item wdt:P571 ?date}.
      OPTIONAL {?item wdt:P154 ?logo}.
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }
    

Software for the Amstrad CPC edit

The following query uses these:

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

Software titles with BBC Things ID edit

The following query uses these:

  • Properties: BBC Things ID (P1617)  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 ?item ?itemLabel ?thingsID 
    WHERE 
    {
      ?item wdt:P1617 ?thingsID.
      ?item wdt:P31/wdt:P279* wd:Q7397.
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }
    

Software titles with a GoogleNews ID edit

The following query uses these:

Software GraphViz depends on edit

The following query uses these:

  • Properties: depends on software (P1547)  View with Reasonator View with SQID, logo image (P154)  View with Reasonator View with SQID
    SELECT ?software ?softwareLabel ?logo WHERE {
      wd:Q260889 wdt:P1547 ?software.
      OPTIONAL {?software wdt:P154 ?logo}
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }
    

Anything with product or material produced software edit

The following query uses these:

Orgs with a GRID id and by the count of software titles they have developed edit

The following query uses these:

  • Properties: GRID ID (P2427)  View with Reasonator View with SQID, developer (P178)  View with Reasonator View with SQID
    SELECT ?item ?itemLabel (COUNT(?software) AS ?count)
    WHERE 
    {
      ?item wdt:P2427 ?value .
      ?software wdt:P178 ?item.
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }
    
    GROUP BY ?item ?itemLabel
    
    ORDER BY DESC(?count)
    

Orgs with a GRID id and the count of software titles (that are not video games) that they have developed edit

The following query uses these:

  • Properties: GRID ID (P2427)  View with Reasonator View with SQID, developer (P178)  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 ?item ?itemLabel (COUNT(?software) AS ?count)
    WHERE 
    {
      ?item wdt:P2427 ?value .
      ?software wdt:P178 ?item.
      ?software wdt:P31/wdt:P279* wd:Q7397.
      MINUS {?software wdt:P31/wdt:P279* wd:Q7889.}
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }
    
    GROUP BY ?item ?itemLabel
    
    ORDER BY DESC(?count)
    

Orgs with Ringgold ID and the count of software titles (that are not video games) that they have developed edit

The following query uses these:

  • Properties: Ringgold ID (P3500)  View with Reasonator View with SQID, developer (P178)  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 ?item ?itemLabel (COUNT(?software) AS ?count)
    WHERE 
    {
      ?item wdt:P3500 ?value .
      ?software wdt:P178 ?item.
      ?software wdt:P31/wdt:P279* wd:Q7397.
      MINUS {?software wdt:P31/wdt:P279* wd:Q7889.}
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }
    
    GROUP BY ?item ?itemLabel
    
    ORDER BY DESC(?count)
    

Software developed by organizations with a Ringgold ID edit

The following query uses these:

  • Properties: Ringgold ID (P3500)  View with Reasonator View with SQID, developer (P178)  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 DISTINCT ?item ?itemLabel ?software ?softwareLabel
    WHERE 
    {
      ?item wdt:P3500 ?value .
      ?software wdt:P178 ?item.
      ?software wdt:P31/wdt:P279* wd:Q7397.
      MINUS {?software wdt:P31/wdt:P279* wd:Q7889.}
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }
    

Graph of subclasses of OS 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:Q9135 ;
                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" }
}

Graph of subclasses of macos 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:Q43627 ;
                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" }
}

Quantum computers edit

The following query uses these:

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

NVIDIA manufactures edit

The following query uses these:

  • Properties: manufacturer (P176)  View with Reasonator View with SQID
    SELECT  ?NVIDIAmanufactures ?NVIDIAmanufacturesLabel 
    WHERE 
    {
      ?NVIDIAmanufactures wdt:P176 wd:Q182477.
      
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }
    

NVIDIA develops edit

The following query uses these:

  • Properties: developer (P178)  View with Reasonator View with SQID
    SELECT  ?NVIDIAdevelops  ?NVIDIAdevelopsLabel 
    WHERE 
    {
      ?NVIDIAdevelops wdt:P178 wd:Q182477.
      
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }
    

Software with Internet Archive ID edit

The following query uses these:

Software (minus video games) with Internet Archive Id 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, Internet Archive ID (P724)  View with Reasonator View with SQID
    SELECT ?software ?softwareLabel ?archiveID
    {
      ?software wdt:P31/wdt:P279* wd:Q7397.
       ?software wdt:P724 ?archiveID.
      MINUS {?software wdt:P31/wdt:P279* wd:Q7889.}
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }
    

Types of Software edit

The following query uses these:

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

Audio software titles by the count of readable file formats edit

The following query uses these:

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

#defaultView:BubbleChart
SELECT ?app ?appLabel (count (?ff) as ?count)

WHERE {
  ?app wdt:P31/wdt:P279* wd:Q15562063.
  OPTIONAL {?app wdt:P1072 ?ff.}
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}

GROUP BY ?app ?appLabel


ORDER BY DESC(?count)

Software titles with articles with Encyclopædia Britannica Online ID edit

The following query uses these:

Software developed by members of German Research Network 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:Q2514863.
      ?software wdt:P178 ?member.
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }
    

Software titles with Encyc Britannica id by license class edit

The following query uses these: