| 469 | } |
| 470 | |
| 471 | type listGraphsResponseGraph struct { |
| 472 | GraphStorageLimit int64 `json:"GraphStorageLimit"` |
| 473 | GraphName string `json:"GraphName"` |
| 474 | GraphUUID string `json:"GraphUUID"` |
| 475 | GraphStorageUsage int64 `json:"GraphStorageUsage"` |
| 476 | } |
| 477 | |
| 478 | func (s *server) listGraphs(ctx context.Context, req *listGraphsRequest) (*listGraphsResponse, error) { |
| 479 | graphs, err := s.db.Graphs(ctx) |
nothing calls this directly
no outgoing calls
no test coverage detected