| 505 | GraphName string `json:"GraphName"` |
| 506 | } |
| 507 | type createGraphResponse struct { |
| 508 | GraphUUID string `json:"GraphUUID"` |
| 509 | Txid int64 `json:"TXId"` |
| 510 | } |
| 511 | |
| 512 | func (s *server) createGraph(ctx context.Context, req *createGraphRequest) (*createGraphResponse, error) { |
| 513 | gID, curTx, err := s.db.CreateGraph(ctx, req.GraphName) |
nothing calls this directly
no outgoing calls
no test coverage detected