(s *string)
| 218 | } |
| 219 | |
| 220 | func ghId(s *string) *githubv4.ID { |
| 221 | if s == nil { |
| 222 | return nil |
| 223 | } |
| 224 | if *s == "" { |
| 225 | r := githubv4.ID(nil) |
| 226 | return &r |
| 227 | } |
| 228 | r := githubv4.ID(*s) |
| 229 | return &r |
| 230 | } |
| 231 | |
| 232 | func ghString(s *string) *githubv4.String { |
| 233 | if s == nil { |
no test coverage detected