Skip to content
Snippets Groups Projects
Select Git revision
  • 29a3a66630e7aed2b3f2036605fcf371328eb00f
  • develop default protected
  • master protected
  • 1.2.1
  • 1.2.0
  • 1.1.0
  • 1.0.5
  • 1.0.4
  • 1.0.3
  • 1.0.2
  • 1.0.0
11 results

gradle-wrapper.properties

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    preperation.txt 12.28 KiB
    ##############################################################################
    PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
    PREFIX dct:	<http://purl.org/dc/terms/>
    PREFIX dbc:	<http://dbpedia.org/resource/Category:>
    
    SELECT DISTINCT ?film_title
    WHERE {
        ?film_title rdf:type <http://dbpedia.org/ontology/Film> .
        ?film_title dct:subject dbc:Comedy.
    } LIMIT 1000 OFFSET 0
    ##############################################################################
    
    
    PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
    PREFIX wd: <http://www.wikidata.org/entity/>
    PREFIX wdt: <http://www.wikidata.org/prop/direct/>
    PREFIX xsd:  <http://www.w3.org/2001/XMLSchema#>
    
    SELECT DISTINCT ?movie ?label
    
    WHERE{
      ?movie wdt:P31 wd:Q11424.
      ?movie rdfs:label ?label.
    }
    
    921517 Ergebnisse in 9599 ms
    
    PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
    PREFIX wd: <http://www.wikidata.org/entity/>
    PREFIX wdt: <http://www.wikidata.org/prop/direct/>
    PREFIX xsd:  <http://www.w3.org/2001/XMLSchema#>
    
    SELECT DISTINCT ?movie ?label
    
    WHERE{
      # node who instances of films
      ?movie wdt:P31 wd:Q11424.
      
      
      # nodes who are instances of y as a subclass of films.
      OPTIONAL {
        ?movie wdt:P31 [
          wdt:P279 wd:Q11424
        ].
      }
      
      ?movie rdfs:label ?label.
    }
    
    921514 Ergebnisse
    
    PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
    PREFIX wd: <http://www.wikidata.org/entity/>
    PREFIX wdt: <http://www.wikidata.org/prop/direct/>
    PREFIX xsd:  <http://www.w3.org/2001/XMLSchema#>
    
    SELECT DISTINCT ?movie ?label
    
    WHERE{
      # node who instances of films
      ?movie wdt:P31 wd:Q11424.
      
      
      # nodes who are instances of y as a subclass of films.
      OPTIONAL {
        ?movie wdt:P31 [
          wdt:P279 wd:Q11424
        ].
      }
      # nodes who are instances of y as a instance of a film genre.