Edge define the contract for an edge in a relay connection
| 14 | |
| 15 | // Edge define the contract for an edge in a relay connection |
| 16 | type Edge interface { |
| 17 | GetCursor() string |
| 18 | } |
| 19 | |
| 20 | // OffsetToCursor create the cursor string from an offset |
| 21 | func OffsetToCursor(offset int) string { |
no outgoing calls
no test coverage detected