| 456 | } |
| 457 | |
| 458 | type ArticleRelated struct { |
| 459 | ID string `jsonapi:"primary,articles"` |
| 460 | Title string `jsonapi:"attribute" json:"title"` |
| 461 | Author *Author `jsonapi:"relationship" json:"author,omitempty"` |
| 462 | Comments []*Comment `jsonapi:"relationship" json:"comments,omitempty"` |
| 463 | } |
| 464 | |
| 465 | type ArticleRelatedWithContact struct { |
| 466 | ID string `jsonapi:"primary,articles"` |
nothing calls this directly
no outgoing calls
no test coverage detected