| 26 | } |
| 27 | |
| 28 | type Comment struct { |
| 29 | ID string `json:"id"` |
| 30 | Author CommentAuthor `json:"author"` |
| 31 | AuthorAssociation string `json:"authorAssociation"` |
| 32 | Body string `json:"body"` |
| 33 | CreatedAt time.Time `json:"createdAt"` |
| 34 | IncludesCreatedEdit bool `json:"includesCreatedEdit"` |
| 35 | IsMinimized bool `json:"isMinimized"` |
| 36 | MinimizedReason string `json:"minimizedReason"` |
| 37 | ReactionGroups ReactionGroups `json:"reactionGroups"` |
| 38 | URL string `json:"url,omitempty"` |
| 39 | ViewerDidAuthor bool `json:"viewerDidAuthor"` |
| 40 | } |
| 41 | |
| 42 | type CommentCreateInput struct { |
| 43 | Body string |
nothing calls this directly
no outgoing calls
no test coverage detected