-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGraphQLServerModuleManifestBuilder.cs
More file actions
76 lines (65 loc) · 2.58 KB
/
GraphQLServerModuleManifestBuilder.cs
File metadata and controls
76 lines (65 loc) · 2.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
using HotChocolate.Execution.Configuration;
using Microsoft.Extensions.DependencyInjection;
namespace Modulight.Modules.Server.GraphQL
{
/// <summary>
/// Specifies the interface to build a module manifest.
/// </summary>
public interface IGraphQLServerModuleManifestBuilder : IModuleManifestBuilder<IGraphQLServerModule, GraphQLServerModuleManifest>
{
/// <summary>
/// Schema name.
/// </summary>
string SchemaName { get; set; }
/// <summary>
/// Endpoint.
/// </summary>
string Endpoint { get; set; }
/// <summary>
/// Query type for <see cref="SchemaRequestExecutorBuilderExtensions.AddQueryType(IRequestExecutorBuilder, Type)"/>.
/// </summary>
Type? QueryType { get; set; }
/// <summary>
/// Mutation type for <see cref="SchemaRequestExecutorBuilderExtensions.AddMutationType(IRequestExecutorBuilder, Type)"/>.
/// </summary>
Type? MutationType { get; set; }
/// <summary>
/// Subscription type for <see cref="SchemaRequestExecutorBuilderExtensions.AddSubscriptionType(IRequestExecutorBuilder, Type)"/>.
/// </summary>
Type? SubscriptionType { get; set; }
}
class DefaultGraphQLServerModuleManifestBuilder : IGraphQLServerModuleManifestBuilder
{
/// <summary>
/// Schema name.
/// </summary>
public string SchemaName { get; set; } = "";
/// <summary>
/// Endpoint.
/// </summary>
public string Endpoint { get; set; } = "";
/// <summary>
/// Query type for <see cref="SchemaRequestExecutorBuilderExtensions.AddQueryType(IRequestExecutorBuilder, Type)"/>.
/// </summary>
public Type? QueryType { get; set; }
/// <summary>
/// Mutation type for <see cref="SchemaRequestExecutorBuilderExtensions.AddMutationType(IRequestExecutorBuilder, Type)"/>.
/// </summary>
public Type? MutationType { get; set; }
/// <summary>
/// Subscription type for <see cref="SchemaRequestExecutorBuilderExtensions.AddSubscriptionType(IRequestExecutorBuilder, Type)"/>.
/// </summary>
public Type? SubscriptionType { get; set; }
public GraphQLServerModuleManifest Build()
{
return new GraphQLServerModuleManifest
{
SchemaName = SchemaName,
Endpoint = Endpoint,
QueryType = QueryType,
MutationType = MutationType,
SubscriptionType = SubscriptionType
};
}
}
}