> After getting 2.2 Descendants of a Given Parent, how can you also get the scope notes (value string) for each.
> This is the question for anyone who would make a simple term list.
Hi Marcia!
Here's a query:
select * {
?x gvp:broaderExtended aat:300194567; skos:inScheme aat: ;
gvp:prefLabelGVP/xl:literalForm ?label;
skos:scopeNote [dct:language gvp_lang:en; rdf:value ?note]
}
I've added to query 2.2: the last line looks for a scopeNote that has dct:language English, then gets its value.
I'll add this query in the next version of the doc.
Cheers! V