Skip to content

Instantly share code, notes, and snippets.

@banjun
Forked from takanakahiko/sample.rq
Last active January 2, 2020 07:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save banjun/9d7766e88f58b6cf719aa23aaab208fb to your computer and use it in GitHub Desktop.
Save banjun/9d7766e88f58b6cf719aa23aaab208fb to your computer and use it in GitHub Desktop.
そらみスマイルのライブ一覧
PREFIX prism: <https://prismdb.takanakahiko.me/prism-schema.ttl#>
SELECT ?n ?st ?title
WHERE {
?live a prism:Live;
prism:performer/prism:name_kana "そらみすまいる";
prism:songPerformed/prism:name ?title;
prism:liveOfEpisode ?ep.
?ep a prism:Episode;
prism:話数 ?n;
prism:サブタイトル ?st.
}
ORDER BY ?n
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment