Channel #semsol: Logs

This is a public chat log generated from the #semsol IRC channel.

12:29:03 rgeorgy: hello everyone
12:40:26 kwijibo: hi
12:41:01 rgeorgy: I wanted to use SPARQL+ to insert some triples to an existing uri (bnode actually)
12:41:26 rgeorgy: the datasset before the insert was like this:-
12:41:43 rgeorgy: '_:b725535005_atib_agent' => array 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type' => array 0 => string 'http://xmlns.com/foaf/0.1/Agent' (length=31) 'http://xmlns.com/foaf/0.1/name' => array 0 => string 'Karim Ratib' (length=11) 'http://xmlns.com/foaf/0.1/givenname' => array 0 => string 'Karim' (length=5) 'http://xmlns.com/foaf/0.1/family_name' => array
12:42:01 rgeorgy: sorry for the bad formating
12:43:03 rgeorgy: I wanted to insert that '_:b725535005_atib_agent' also has an online account @ linkedin, so
12:43:27 rgeorgy: PREFIX foaf: <http://xmlns.com/foaf/0.1/> .
12:43:29 rgeorgy: PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
12:43:30 rgeorgy:
12:43:32 rgeorgy: INSERT INTO <http://profiler.open-craft.com/linkedin> CONSTRUCT
12:43:35 rgeorgy: {
12:43:37 rgeorgy: ?s foaf:holdsAccount _:linkedinAcc .
12:43:39 rgeorgy: _:linkedinAcc rdf:type foaf:OnlineAccount .
12:43:41 rgeorgy: _:linkedinAcc foaf:accountServiceHomepage \"$accountServiceHomepage\" .
12:43:44 rgeorgy: _:linkedinAcc foaf:accountProfilePage \"$accountProfilePage\" .
12:43:45 rgeorgy: _:linkedinAcc foaf:accountName \"$accountName\" .
12:43:47 rgeorgy: }
12:43:49 rgeorgy: WHERE
12:43:52 rgeorgy: {
12:43:53 rgeorgy: ?s rdf:type foaf:Agent .
12:43:55 rgeorgy: ?s foaf:name ?n .
12:43:56 rgeorgy: }
12:44:27 rgeorgy: Actually I found that the triples have been added to a new blanknode
12:44:49 rgeorgy: instead of beinng added to the selected one in the Where clause
12:45:37 rgeorgy: what do you think? :)