[18:56:01] [Q] Is there a OR operator for multiple objects in a triple? I know that I can use "|" for predicates, but apparently I can't do the same for objects. [18:56:09] Proof: Executing the following query SELECT ?a {?a wdt:P2541 wd:Q13780930|wd:Q2.} [18:56:20] results in => Query is malformed: Encountered " "|" "| "" at line 1, column 37. [19:13:13] rdrg109: You can use VALUES [19:13:19] e.g. SELECT ?a {?a wdt:P2541 ?b. VALUES ?b { wd:Q13780930 wd:Q2 } } [19:43:44] markh: Thanks! That worked :)