public async Task <IActionResult> GetById([FromRoute] string controller, [FromRoute] string ns,
                                                  [FromRoute] ulong rs, [FromRoute] Guid id)
        {
            var record = await _store.GetByIdAsync(id, CancellationToken);

            if (record == default)
            {
                return(NotFound());
            }

            return(Ok(_example.ToModel(record)));
        }