| 281 | |
| 282 | @dataclass |
| 283 | class IssueComment(Node): |
| 284 | body: str |
| 285 | fullDatabaseId: int |
| 286 | _repository: GraphQLId |
| 287 | |
| 288 | def repository(self, info: GraphQLResolveInfo) -> Repository: |
| 289 | return github_state(info).repositories[self._repository] |
| 290 | |
| 291 | |
| 292 | @dataclass |
no outgoing calls
no test coverage detected