afs commented on issue #3617:
URL: https://github.com/apache/jena/issues/3617#issuecomment-3614459387

   ```turtle
       Node r = NodeFactory.createTripleTerm(NodeFactory.createURI(ns + "a"), 
NodeFactory.createURI(ns + "b"), NodeFactory.createURI(ns + "c"));
   //    g2.add(r, NodeFactory.createURI(ns + "p"), NodeFactory.createURI(ns + 
"o"));
   
       // Allocate a reifer
       Node reifier = NodeFactory.createBlankNode();
       // Create two triples
       Triple t1 = Triple.create(reifier, RDF.Nodes.reifies, r);
       Triple t2 = Triple.create(reifier, NodeFactory.createURI(ns + "p"), 
NodeFactory.createURI(ns + "o"));
       // Add both
       g2.add(t1);
       g2.add(t2);
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to