File tree Expand file tree Collapse file tree 18 files changed +123
-171
lines changed Expand file tree Collapse file tree 18 files changed +123
-171
lines changed Original file line number Diff line number Diff line change 7
7
8
8
export module GraphQL.Client;
9
9
10
+ export import GraphQL.Response;
11
+
10
12
export namespace graphql ::client {
11
13
12
14
// clang-format off
Original file line number Diff line number Diff line change 7
7
8
8
export module GraphQL.JSONResponse;
9
9
10
+ export import GraphQL.Response;
11
+
10
12
export namespace graphql ::response {
11
13
12
14
// clang-format off
Original file line number Diff line number Diff line change 7
7
8
8
export module GraphQL.Service;
9
9
10
+ export import GraphQL.Parse;
11
+ export import GraphQL.Response;
12
+
10
13
export namespace graphql {
11
14
12
15
namespace schema {
Original file line number Diff line number Diff line change 9
9
10
10
export module GraphQL.Introspection.IntrospectionSchema;
11
11
12
- namespace included = graphql::introspection;
12
+ export import GraphQL.Introspection.SchemaObject;
13
+ export import GraphQL.Introspection.TypeObject;
14
+ export import GraphQL.Introspection.FieldObject;
15
+ export import GraphQL.Introspection.InputValueObject;
16
+ export import GraphQL.Introspection.EnumValueObject;
17
+ export import GraphQL.Introspection.DirectiveObject;
13
18
14
19
export namespace graphql ::introspection {
15
20
Original file line number Diff line number Diff line change 12
12
#include < string_view>
13
13
14
14
import GraphQL.Client;
15
- import GraphQL.Response;
16
15
import GraphQL.Service;
17
16
18
- import GraphQL.Today.TodaySchema;
19
-
20
- import GraphQL.Today.QueryObject;
21
- import GraphQL.Today.MutationObject;
22
- import GraphQL.Today.SubscriptionObject;
23
-
24
- import GraphQL.Today.AppointmentEdgeObject;
25
- import GraphQL.Today.AppointmentObject;
26
- import GraphQL.Today.AppointmentConnectionObject;
27
- import GraphQL.Today.CompleteTaskPayloadObject;
28
- import GraphQL.Today.ExpensiveObject;
29
- import GraphQL.Today.FolderEdgeObject;
30
- import GraphQL.Today.FolderObject;
31
- import GraphQL.Today.FolderConnectionObject;
32
- import GraphQL.Today.NestedTypeObject;
33
- import GraphQL.Today.NodeObject;
34
- import GraphQL.Today.PageInfoObject;
35
- import GraphQL.Today.TaskConnectionObject;
36
- import GraphQL.Today.TaskEdgeObject;
37
- import GraphQL.Today.TaskObject;
38
- import GraphQL.Today.UnionTypeObject;
39
-
40
17
import GraphQL.Today.Mock;
41
18
42
19
import GraphQL.Benchmark.BenchmarkClient;
Original file line number Diff line number Diff line change 9
9
10
10
export module GraphQL.StarWars.StarWarsSchema;
11
11
12
- namespace included = graphql::learn;
12
+ export import GraphQL.StarWars.CharacterObject;
13
+ export import GraphQL.StarWars.HumanObject;
14
+ export import GraphQL.StarWars.DroidObject;
15
+ export import GraphQL.StarWars.QueryObject;
16
+ export import GraphQL.StarWars.ReviewObject;
17
+ export import GraphQL.StarWars.MutationObject;
13
18
14
19
export namespace graphql ::learn {
15
20
Original file line number Diff line number Diff line change 7
7
8
8
export module GraphQL.Today.Mock;
9
9
10
+ export import GraphQL.Today.TodaySchema;
11
+
10
12
export namespace graphql ::today {
11
13
12
14
// clang-format off
Original file line number Diff line number Diff line change 11
11
#include < string_view>
12
12
13
13
import GraphQL.Parse;
14
- import GraphQL.Response;
15
14
import GraphQL.JSONResponse;
16
15
import GraphQL.Service;
17
16
18
- import GraphQL.Today.TodaySchema;
19
-
20
- import GraphQL.Today.QueryObject;
21
- import GraphQL.Today.MutationObject;
22
- import GraphQL.Today.SubscriptionObject;
23
-
24
- import GraphQL.Today.AppointmentEdgeObject;
25
- import GraphQL.Today.AppointmentObject;
26
- import GraphQL.Today.AppointmentConnectionObject;
27
- import GraphQL.Today.CompleteTaskPayloadObject;
28
- import GraphQL.Today.ExpensiveObject;
29
- import GraphQL.Today.FolderEdgeObject;
30
- import GraphQL.Today.FolderObject;
31
- import GraphQL.Today.FolderConnectionObject;
32
- import GraphQL.Today.NestedTypeObject;
33
- import GraphQL.Today.NodeObject;
34
- import GraphQL.Today.PageInfoObject;
35
- import GraphQL.Today.TaskConnectionObject;
36
- import GraphQL.Today.TaskEdgeObject;
37
- import GraphQL.Today.TaskObject;
38
- import GraphQL.Today.UnionTypeObject;
39
-
40
17
import GraphQL.Today.Mock;
41
18
42
19
using namespace graphql ;
Original file line number Diff line number Diff line change 9
9
10
10
export module GraphQL.Today.TodaySchema;
11
11
12
- namespace included = graphql::today;
12
+ export import GraphQL.Today.NodeObject;
13
+ export import GraphQL.Today.UnionTypeObject;
14
+ export import GraphQL.Today.QueryObject;
15
+ export import GraphQL.Today.PageInfoObject;
16
+ export import GraphQL.Today.AppointmentEdgeObject;
17
+ export import GraphQL.Today.AppointmentConnectionObject;
18
+ export import GraphQL.Today.TaskEdgeObject;
19
+ export import GraphQL.Today.TaskConnectionObject;
20
+ export import GraphQL.Today.FolderEdgeObject;
21
+ export import GraphQL.Today.FolderConnectionObject;
22
+ export import GraphQL.Today.CompleteTaskPayloadObject;
23
+ export import GraphQL.Today.MutationObject;
24
+ export import GraphQL.Today.SubscriptionObject;
25
+ export import GraphQL.Today.AppointmentObject;
26
+ export import GraphQL.Today.TaskObject;
27
+ export import GraphQL.Today.FolderObject;
28
+ export import GraphQL.Today.NestedTypeObject;
29
+ export import GraphQL.Today.ExpensiveObject;
13
30
14
31
export namespace graphql ::today {
15
32
Original file line number Diff line number Diff line change 7
7
#include < stdexcept>
8
8
9
9
import GraphQL.Parse;
10
- import GraphQL.Response;
11
10
import GraphQL.JSONResponse;
12
11
import GraphQL.Service;
13
12
14
- import GraphQL.Today.TodaySchema;
15
-
16
- import GraphQL.Today.QueryObject;
17
- import GraphQL.Today.MutationObject;
18
- import GraphQL.Today.SubscriptionObject;
19
-
20
- import GraphQL.Today.AppointmentEdgeObject;
21
- import GraphQL.Today.AppointmentObject;
22
- import GraphQL.Today.AppointmentConnectionObject;
23
- import GraphQL.Today.CompleteTaskPayloadObject;
24
- import GraphQL.Today.ExpensiveObject;
25
- import GraphQL.Today.FolderEdgeObject;
26
- import GraphQL.Today.FolderObject;
27
- import GraphQL.Today.FolderConnectionObject;
28
- import GraphQL.Today.NestedTypeObject;
29
- import GraphQL.Today.NodeObject;
30
- import GraphQL.Today.PageInfoObject;
31
- import GraphQL.Today.TaskConnectionObject;
32
- import GraphQL.Today.TaskEdgeObject;
33
- import GraphQL.Today.TaskObject;
34
- import GraphQL.Today.UnionTypeObject;
35
-
36
13
import GraphQL.Today.Mock;
37
14
38
15
using namespace graphql ;
You can’t perform that action at this time.
0 commit comments