mirror of
https://github.com/Shchoholiev/shopping-assistant-api.git
synced 2025-04-03 16:19:46 +00:00
25 lines
738 B
C#
25 lines
738 B
C#
using ShoppingAssistantApi.Api.Queries;
|
|
using ShoppingAssistantApi.Api.Mutations;
|
|
|
|
namespace ShoppingAssistantApi.Api.ApiExtentions;
|
|
|
|
public static class GraphQlExtention
|
|
{
|
|
public static IServiceCollection AddGraphQl(this IServiceCollection services)
|
|
{
|
|
services
|
|
.AddGraphQLServer()
|
|
.AddQueryType()
|
|
.AddTypeExtension<UsersQuery>()
|
|
.AddTypeExtension<RolesQuery>()
|
|
.AddMutationType()
|
|
.AddTypeExtension<AccessMutation>()
|
|
.AddTypeExtension<UsersMutation>()
|
|
.AddTypeExtension<RolesMutation>()
|
|
.AddAuthorization()
|
|
.InitializeOnStartup(keepWarm: true);
|
|
|
|
return services;
|
|
}
|
|
}
|