Is it possible to use a variable to determine the graph (s) affected in the SPARQL update? For example, can I:
INSERT { GRAPH ?dest { ?person foaf:name ?name . ?person foaf:mbox ?email } } WHERE { GRAPH <http://example/people> { ?person foaf:name ?name . } }
?dest should be determined by the WHERE (otherwise how does the system know where the data is in INSERT ?).
?dest
WHERE
INSERT
If you mean all the named graphs, add GRAPH ?dest {} to the WHERE .
GRAPH ?dest {}
Source: https://habr.com/ru/post/1498832/More articles:No way to update model attributes using block syntax? - ruby-on-railsConstant width in ggplot barplots - rIn C # MVC4 how to get server path? - c #jQuery and masonry (): animated objects flicker in Chrome - javascriptSetting timeout in JTA configuration - javaUsing child css selector in ruby ββelement selenium-webdriver find_elements - cssError: "Copying the source file " - javaHow to configure pngquant on a Linux server? - linuxTable of vector tools by two factors - rWhat are my options for an associative compile-time container? - c ++All Articles