in api/catalog.go [48:59]
func (c *catalogImpl) QueryOperations(ctx context.Context, in *proto.QueryOperationsRequest) (*proto.
QueryOperationsResponse, error) {
var rsp = &proto.QueryOperationsResponse{}
res, err := c.catalogDAL.SelectOperations(ctx, in.ServiceName, in.OperationId)
if err != nil {
return rsp, err
}
if err = gconv.Structs(res, &rsp.Operations); err != nil {
return nil, err
}
return rsp, nil
}