Re: From syntactic to interpreted triple

On 2/8/21 3:39 PM, Olaf Hartig wrote:
> REQUEST 1:
>
>    PREFIX owl: <http://www.w3.org/2002/07/owl#>
>    INSERT DATA { :fall owl:sameAs :autumn }
>
> Now you can do exactly the same steps as described in my email and, in the 
> end, the endpoint will return true in response to the following query:
>
>    PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
>    ASK WHERE { <<:autumn :hasWeather :rainy>> rdf:type :claim }


Hi Olaf,

Do I accurately read the above as syntax-sugar (or shorthand) for the
following?

PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX : <#>
 
ASK WHERE { 
              :thisClaim a rdf:Statement ;
                         rdf:subject :autumn ;
                         rdf:predicate :hasWeather ;
                         rdf:object :rainy . 
           }


-- 
Regards,

Kingsley Idehen       
Founder & CEO 
OpenLink Software   
Home Page: http://www.openlinksw.com
Community Support: https://community.openlinksw.com
Weblogs (Blogs):
Company Blog: https://medium.com/openlink-software-blog
Virtuoso Blog: https://medium.com/virtuoso-blog
Data Access Drivers Blog: https://medium.com/openlink-odbc-jdbc-ado-net-data-access-drivers

Personal Weblogs (Blogs):
Medium Blog: https://medium.com/@kidehen
Legacy Blogs: http://www.openlinksw.com/blog/~kidehen/
              http://kidehen.blogspot.com

Profile Pages:
Pinterest: https://www.pinterest.com/kidehen/
Quora: https://www.quora.com/profile/Kingsley-Uyi-Idehen
Twitter: https://twitter.com/kidehen
Google+: https://plus.google.com/+KingsleyIdehen/about
LinkedIn: http://www.linkedin.com/in/kidehen

Web Identities (WebID):
Personal: http://kingsley.idehen.net/public_home/kidehen/profile.ttl#i
        : http://id.myopenlink.net/DAV/home/KingsleyUyiIdehen/Public/kingsley.ttl#this

Received on Monday, 8 February 2021 22:32:07 UTC