using GraphQL.Client.Http; using GraphQL.Client.Serializer.Newtonsoft; using ShoppingAssistantWebClient.Web.Network; namespace ShoppingAssistantWebClient.Web.Configurations; public static class DependencyInjectionExtension { public static IServiceCollection AddApiClient(this IServiceCollection services, IConfiguration configuration) { services.AddHttpContextAccessor(); var apiUrl = configuration.GetValue("ApiUrl"); services.AddHttpClient("ApiHttpClient", client => { client.BaseAddress = new Uri(apiUrl + "api/"); }); services.AddSingleton(p => new GraphQLHttpClient(apiUrl + "graphql", new NewtonsoftJsonSerializer()) ); services.AddScoped(); services.AddScoped(); return services; } }