Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

どのゲームで登場した衣装なのかわかるようにしたい #459

Open
arrow2nd opened this issue Aug 15, 2021 · 2 comments
Open

Comments

@arrow2nd
Copy link
Member

https://twitter.com/arrow_2nd/status/1426511696667963396?s=20

PREFIX schema: <http://schema.org/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX imas: <https://sparql.crssnky.xyz/imasrdf/URIs/imas-schema.ttl#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>

SELECT DISTINCT ?costumeName ?costumeDesc
WHERE {
  ?d rdf:type imas:Idol;
     rdfs:label ?name;
     schema:owns ?owns.
  FILTER(CONTAINS(?name, "櫻木真乃")).
  ?owns schema:name ?costumeName;
        schema:description ?costumeDesc. 
}
ORDER BY ?costumeName

上のようなクエリで衣装のデータを取得した際、シャニマスの衣装とポプマスの衣装とが混ざった状態で返ってくるので、
これを見分けるために「どのゲームで登場したのか」という情報があればいいのではないかなと思います。

@arrow2nd
Copy link
Member Author

関連する issue #96

@tankarup
Copy link
Contributor

ユニットが登場するメディアを登録できないか、以前に相談させていただいたことがあります。そのためには、現実世界から見た作品群imas_productをまず整備する必要があるとのことでした。
#419

シャニマスとポプマスの区分についても同様かと思いますが、結構大変そうな作業ではないかと思っています…

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants