tags:

views:

131

answers:

1

Hi, I want write query that allow to display all comment of all class in protege and other query to display specific comment please ,Iwante the answer quickly as soon as possible .

+1  A: 

Use this query SELECT DISTINCT ?class ?comment WHERE { [] a ?class. ?class rdfs:comment ?comment }

Taz
This will display all classes with their comments
Taz