In the Turtle serialization of an RDF graph, I have many triples like this (many individuals, all with a common value of type):
:A a :b .
:B a :b .
:C a :b .
:D a :b .
# …
:Z a :b .
Is there any way to write this succinctly in Turtle? In SPARQL, which has some similarities to Turtle, we can write:
:b ^a :A, :B, :C, …, :Z .
Is there a counterpart in Turtle?