Yields the first relation id of the chunk.
(self)
| 327 | |
| 328 | @property |
| 329 | def relation(self): |
| 330 | """ Yields the first relation id of the chunk. |
| 331 | """ |
| 332 | # [(2,OBJ), (3,OBJ)])] => 2 |
| 333 | return len(self.relations) > 0 and self.relations[0][0] or None |
| 334 | |
| 335 | @property |
| 336 | def role(self): |