Student Use: Difference between revisions
(→Your Graph: Added Path to interest) |
(→Your Graph: added: Completed items) |
||
Line 36: | Line 36: | ||
}} | }} | ||
It shows the <span style="background-color:#e8fcff;">courses</span> that you [[Property:P25|participate in]]. | |||
The <span style="background-color:#e3ffd9">items</span> that you have [[Property:P12|completed]]. | |||
And the <span style="background-color:#ffeec2">items</span> that you are [[Property:P23|interested in]]. | |||
== Path to interest == | == Path to interest == | ||
Line 53: | Line 47: | ||
PREFIX wd: <https://graphit.ur.de/entity/> | PREFIX wd: <https://graphit.ur.de/entity/> | ||
SELECT DISTINCT | SELECT DISTINCT ?item2 ?item2Label ?rgb ?dependency ?dependencyLabel ?item1 ?item1Label ?edgeLabel | ||
?item2 ?item2Label ?rgb ?dependency ?dependencyLabel ?item1 ?item1Label ?edgeLabel | |||
WHERE { | WHERE { | ||
?item1 rdfs:label "{{#username:Max Mustermann}}"@en. | ?item1 rdfs:label "{{#username:Max Mustermann}}"@en. | ||
Line 70: | Line 63: | ||
}} | }} | ||
== A complete | == Coursework == | ||
This | This query gives an overview of all courseworks to be done for the courses that you participate in. | ||
{{#widget:SPARQLquery|code= | |||
#defaultView:Graph | |||
PREFIX wdt: <https://graphit.ur.de/prop/direct/> | |||
PREFIX wd: <https://graphit.ur.de/entity/> | |||
select distinct ?course ?courseLabel ?user ?userLabel ?work ?workLabel ?rgb | |||
Where { | |||
?user rdfs:label "{{#username:Max Mustermann}}"@en. | |||
?user wdt:P25 ?course. | |||
?course wdt:P14 ?work. | |||
?work wdt:P3 wd:Q463. | |||
# Mark completed Items in green. | |||
optional { | |||
?user wdt:P12 ?work. | |||
bind (if(bound(?work), "B2FF7B", "FFFFFF") as ?rgb). # work " | |||
} | |||
# Mark Mandatory Items in red | |||
optional { | |||
?work wdt:P13 ?importance. | |||
bind (if(?importance = wd:Q324, "FF5F5C", "FFFFFF") as ?rgb). | |||
} | |||
service wikibase:label { bd:serviceParam wikibase:language "en" } | |||
} |caption= The courses that {{#username:Max Mustermann}} participates in and their (completed) 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. | |||
== A complete 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. | Meaning that the given graph will contain all prerequisites to the wanted item, as well as the direct postrequisites. | ||
'''TODO''' (user input?) | '''TODO''' (user input?) |
Revision as of 14:14, 9 October 2023
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.
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.
Coursework
This query gives an overview of all courseworks to be done for the courses that you participate in.
It shows the completed coursework. And the, yet to be completed, but mandatory coursework.
A complete 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.
TODO (user input?)