Example Queries

Top  Previous  Next

Filtering by Numeric Value

PREFIX c: <http://web3.networkedplanet.com/test/companies/types/>
PREFIX tms:<http://www.networkedplanet.com/tmsparql/>
SELECT ?exchange ?lbl WHERE {
  ?exchange a c:exchange .
  ?exchange tms:label ?lbl .
  ?exchange c:marketValue ?mktValue .
  FILTER (?mktValue < 1000000.0)
}

 

Comparing Property Values

PREFIX c: <http://web3.networkedplanet.com/test/companies/types/>
PREFIX tms:<http://www.networkedplanet.com/tmsparql/>
SELECT ?exchange WHERE {
 ?exchange a c:exchange .
 ?exchange c:marketValue ?mktValue .
 ?exchange c:shareTurnover ?turnover .
 FILTER (?turnover > ?mktValue)
}

 

Retrieving a Property Value and Scope

PREFIX c: <http://web3.networkedplanet.com/test/companies/types/>
PREFIX tms:<http://www.networkedplanet.com/tmsparql/>
SELECT ?c ?tv ?s WHERE {
 ?c tms:topicProperty ?t .
 ?t a c:ticker .
 ?t tms:value ?tv .
 ?t tms:scope ?s 
}

 

Retrieve All Related Topics For a Specific Topic (One-Hop Query)

PREFIX tms: <http://www.networkedplanet.com/tmsparql/>
SELECT ?topic WHERE {
 ?r1 tms:player <http://localhost/web3/topicmaps/d51bb6e4-.../topics/7de4a730-...> .
 ?assoc tms:role ?r1 .
 ?assoc tms:role ?r2 . 
 ?r2 tms:player ?topic .
 FILTER (!sameTerm(?topic, <http://localhost/web3/topicmaps/d51bb6e4-.../topics/7de4a730-...>))
}