Skip to content

Instantly share code, notes, and snippets.

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 crssnky/3469763e7217902e896a797d0a7650af to your computer and use it in GitHub Desktop.
Save crssnky/3469763e7217902e896a797d0a7650af to your computer and use it in GitHub Desktop.
PREFIX schema: <http://schema.org/>
PREFIX imas: <https://sparql.crssnky.xyz/imasrdf/URIs/imas-schema.ttl#>
select ?利き手 ?名前
where{
?s schema:name|schema:alternateName ?name;
imas:Handedness ?利き手;
filter(regex(str(?name), "まゆ")).
?idol imas:Handedness ?利き手;
schema:name ?名前.
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment