-
Notifications
You must be signed in to change notification settings - Fork 24
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
Assigment1-Prueba #115
base: master
Are you sure you want to change the base?
Assigment1-Prueba #115
Conversation
El assignment 4 será revisado por @dgarijo en las próximas semanas. No contará para la calificación final, al haber sido enviado tan tarde. |
SELECT DISTINCT ?Persons ?PersonsS WHERE { | ||
?Persons RDF:type ns:Person. | ||
?Subclass RDFS:subClassOf ns:Person. | ||
?PersonsS RDF:type ?Subclass |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is listing all persons and the subclasses of person. Instead, it should list all individuals from a subclass of person (including person). It's almost correct, you need to do something like:
?subclass rdfs:subClassOf* ns:Person.
?person rdf:type ?subclass
Please see the issues with exercise 7. |
No description provided.