Student Use: Difference between revisions

(→‎Your Graph: added: Completed items)
m (→‎Path to interest: update for shape)
 
(4 intermediate revisions by the same user not shown)
Line 18: Line 18:
PREFIX wd: <https://graphit.ur.de/entity/>
PREFIX wd: <https://graphit.ur.de/entity/>


SELECT ?item1 ?image ?item1Label ?item2 ?image2 ?item2Label ?edgeLabel ?rgb WHERE {
SELECT ?item1 ?image ?item1Label ?item2 ?image2 ?item2Label ?edgeLabel ?rgb1 ?shape1 WHERE {
   ?item1 rdfs:label "{{#username:Max Mustermann}}"@en.
   ?item1 rdfs:label "{{#username:Max Mustermann}}"@en.
    
    
Line 30: Line 30:
           if(?prop = wdt:P12, "e3ffd9", # has completed (green)  
           if(?prop = wdt:P12, "e3ffd9", # has completed (green)  
           if(?prop = wdt:P23, "ffeec2", # interested in (orange)
           if(?prop = wdt:P23, "ffeec2", # interested in (orange)
       "FFFFFF" ))) as ?rgb).
       "FFFFFF" ))) as ?rgb1).
    bind("ellipse" as ?shape1).
    
    
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
Line 47: Line 48:
PREFIX wd: <https://graphit.ur.de/entity/>
PREFIX wd: <https://graphit.ur.de/entity/>


SELECT DISTINCT ?item2 ?item2Label ?rgb ?dependency ?dependencyLabel ?item1 ?item1Label ?edgeLabel
SELECT DISTINCT ?item2 ?item2Label ?rgb1 ?shape1 ?dependency ?dependencyLabel ?item1 ?item1Label ?edgeLabel
WHERE {
WHERE {
   ?item1 rdfs:label "{{#username:Max Mustermann}}"@en.
   ?item1 rdfs:label "{{#username:Max Mustermann}}"@en.
Line 57: Line 58:
   ?edge ?dummy ?prop ; rdf:type wikibase:Property. # edge labels
   ?edge ?dummy ?prop ; rdf:type wikibase:Property. # edge labels


   BIND ("ffeec2" as ?rgb).
   BIND ("ffeec2" as ?rgb1).
  BIND ("ellipse" as ?shape1).
    
    
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
Line 92: Line 94:
} |caption= The courses that {{#username:Max Mustermann}} participates in and their (completed) coursework
} |caption= The courses that {{#username:Max Mustermann}} participates in and their (completed) coursework
}}
}}
It shows the <span style="background-color:#B2FF7B;">completed</span> coursework.
It shows the <span style="background-color:#B2FF7B;">completed</span> coursework.
And the, yet to be completed, but <span style="background-color:#FF5F5C">mandatory</span> coursework.
And the, yet to be completed, but <span style="background-color:#FF5F5C">mandatory</span> coursework.


 
== A direct learning path ==
== A complete learning path ==
This query will give you a full learning path to an item.
This query will give you a full learning path to an item.
Meaning that the given graph will contain all prerequisites to the wanted item, as well as the direct postrequisites.
Meaning that the given graph will contain all prerequisites to the wanted item, as well as the direct postrequisites.


'''TODO''' (user input?)
''Input a custom value or just run the query to see an example. (Note: Autocomplete not currently working.)''
 
{{#queryformlink:form=Learning Path2|link text=Try running the query :D|link type=button|tooltip=Runs the query in a separate window}}

Latest revision as of 14:15, 9 April 2024

This page gives you (as a student user) an overview of your use of the graph.

How to

To use this page all you need to do is log in and this page should display the information connected to your personal item. Otherwise it will display the example student Max Mustermann.

NOTE: Your username needs to be the same as the english label of your personal item. For further information on how to do this you can check the ExampleStudent or CGBV page. Or you can take a direct look at the Max Mustermann item.

Your Graph

An Overview

This query gives an overview of all items that you have linked to from your personal item.

An overview of all linked items for Max Mustermann

It shows the courses that you participate in. The items that you have completed. And the items that you are interested in.

Path to interest

The query returns a small learning path that shows you all items that you are interested in and their direct prerequisites.

The direct prerequisites to all items that Max Mustermann is interested in.

Coursework

This query gives an overview of all courseworks to be done for the courses that you participate in.

The courses that Max Mustermann participates in and their (completed) coursework

It shows the completed coursework. And the, yet to be completed, but mandatory coursework.

A direct learning path

This query will give you a full learning path to an item. Meaning that the given graph will contain all prerequisites to the wanted item, as well as the direct postrequisites.

Input a custom value or just run the query to see an example. (Note: Autocomplete not currently working.)