public IActionResult GetOneStore(int id)
        {
            var result = _graphData.GetProducts(id);

            return(Ok(result));
        }