An edge in a connection.
| 155 | |
| 156 | // An edge in a connection. |
| 157 | type BugEdge struct { |
| 158 | // A cursor for use in pagination. |
| 159 | Cursor string `json:"cursor"` |
| 160 | // The item at the end of the edge. |
| 161 | Node BugWrapper `json:"node"` |
| 162 | } |
| 163 | |
| 164 | type BugEditCommentInput struct { |
| 165 | // A unique identifier for the client performing the mutation. |
nothing calls this directly
no outgoing calls
no test coverage detected