SAMPLE QUERY

定期的にこちらのTwitter Collectionにクエリを埋め込んだツイートを公開予定なので参考にしてみてください. 各ツイートのリンクをクリックすることで、HOMEにて該当クエリが実行されます.

サンプル【5本目】オティヌスが登場する原作小説のイラストページ ( クエリを実行 )

        
          prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
          prefix schema: <http://schema.org/>
          prefix foaf: <http://xmlns.com/foaf/0.1/>
          prefix toaru: <https://metadata.moe/toaru-sparql/>
          prefix toaru-class: <https://metadata.moe/toaru-sparql/class/>
          prefix toaru-resource: <https://metadata.moe/toaru-sparql/resource/>
          prefix toaru-bib: <https://metadata.moe/toaru-sparql/bib/>
          prefix toaru-bib-class: <https://metadata.moe/toaru-sparql/bib/class/>
          prefix toaru-bib-resource: <https://metadata.moe/toaru-sparql/bib/resource/>
          prefix toaru-authority: <https://metadata.moe/toaru-sparql/authority/>
          prefix xsd: <http://www.w3.org/2001/XMLSchema#>

          SELECT ?title ?sp ?ep WHERE {
            ?illust toaru-bib:appered <https://metadata.moe/toaru-sparql/resource/オティヌス> ;
                    toaru-bib:start_page_number ?sp;
                    toaru-bib:end_page_number ?ep;
                    toaru-bib:isIncludedIn ?novel.
            ?novel toaru-bib:title ?title;
                   toaru-bib:dengeki_bunko_consecutive_number ?d_id.
          }ORDER BY ASC (?d_id) ASC (?sp)