conjunction(email(?who, "nobody@w3.org"),
            name(?who, ?name))
vs.
who = new Variable();
name = new Variable();
conjunction = new Conjunction();
conjunction.add(new Term(new URI("email"), who, new Literal("nobody@w3.org")));
conjunction.add(new Term(new URI("name"), who, name));
bindings = KB.query(conj);3 of 17  |