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

In topic aspect, add panel on relevant events #514

Open
Daniel-Mietchen opened this Issue Sep 29, 2018 · 3 comments

Comments

1 participant
@Daniel-Mietchen
Copy link
Collaborator

Daniel-Mietchen commented Sep 29, 2018

no urgent needs, since we have very few events indexed so far, but probably quite neat in the long run.

@Daniel-Mietchen Daniel-Mietchen added this to To do in Events via automation Sep 29, 2018

@Daniel-Mietchen Daniel-Mietchen added this to To do in Topics via automation Sep 29, 2018

@Daniel-Mietchen

This comment has been minimized.

Copy link
Collaborator Author

Daniel-Mietchen commented Dec 21, 2018

Could be framed as "Events attended by people/ organizations working/ publishing on the topic"

@Daniel-Mietchen

This comment has been minimized.

Copy link
Collaborator Author

Daniel-Mietchen commented Mar 13, 2019

Prototype:

SELECT DISTINCT ?item ?itemLabel WHERE {
   ?item wdt:P921 wd:Q11660 ;
         wdt:P31*/wdt:P279* wd:Q2020153 .
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
  
}
@Daniel-Mietchen

This comment has been minimized.

Copy link
Collaborator Author

Daniel-Mietchen commented Mar 13, 2019

Next iteration, taking into account events attended by people who have published on the topic:

SELECT DISTINCT ?item ?itemLabel WHERE {
  { ?item wdt:P921 wd:Q11660 ;
         wdt:P31*/wdt:P279* wd:Q2020153 .}
  UNION
  {
    { ?item wdt:P664 ?author .}
    UNION
    { ?item wdt:P823 ?author .}
    UNION
    { ?item wdt:P710 ?author .}
    ?work wdt:P921 wd:Q11660; 
          wdt:P50 ?author .       
  }
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
  
}

Still needs some scoring.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
You can’t perform that action at this time.
You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session.