Advertisement
Guest User

Untitled

a guest
Jul 6th, 2018
365
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SPARQL 0.69 KB | None | 0 0
  1. SELECT DISTINCT ?af_node ?af_node_root {
  2.   VALUES ?value {
  3.     ("CompanySizeTurnoverSegmentation")
  4.     ("NumberOfEmployees")
  5.     ("CompanySizeSegmentation")
  6.     ("Turnover")
  7.     ("AnnualAccountsFlag")
  8.   }
  9.  
  10.   ?af_node <cd:is_a> <http://site.eu/entity-type#ArteFact> .
  11.   ?af_node <cd:identifier>  "450285fa-9390-41d7-ad51-006624c43db2" .
  12.   hint:Prior hint:runFirst TRUE .
  13.   ?af_node <cd:has_root>+ ?af_node_root .
  14.            
  15.   ?word <cd:is_a>   <http://site.eu/entity-type#Word>;
  16.         <cd:value> ?value;
  17.         <cd:value> ?word_value;
  18.         <cd:is_related_to> ?af_sentence .
  19.   ?af_sentence <cd:is_a> <http://site.eu/entity-type#SentenceWord>;
  20.                            <cd:belongs_to> ?af_node
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement