예제 #1
0
        public async Task <User> GetByIdAsync(string query)
        {
            var user = await _sqlClient.GetByIdAsync(query);

            user.Images = await _mediaClient.GetByUserId(user.Id);

            user.Graph = await _graphClient.GetNthDescendants(user.Id);

            return(user);
        }