Skip to content

Commit 31eb925

Browse files
committed
Fix #156
1 parent 0062814 commit 31eb925

38 files changed

+106
-38
lines changed

samples/learn/schema/DroidObject.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
// WARNING! Do not edit this file manually, your changes will be overwritten.
55

6-
#include "StarWarsObjects.h"
6+
#include "DroidObject.h"
77

88
#include "graphqlservice/introspection/Introspection.h"
99

samples/learn/schema/HumanObject.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
// WARNING! Do not edit this file manually, your changes will be overwritten.
55

6-
#include "StarWarsObjects.h"
6+
#include "HumanObject.h"
77

88
#include "graphqlservice/introspection/Introspection.h"
99

samples/learn/schema/MutationObject.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33

44
// WARNING! Do not edit this file manually, your changes will be overwritten.
55

6-
#include "StarWarsObjects.h"
6+
#include "MutationObject.h"
7+
#include "ReviewObject.h"
78

89
#include "graphqlservice/introspection/Introspection.h"
910

samples/learn/schema/QueryObject.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@
33

44
// WARNING! Do not edit this file manually, your changes will be overwritten.
55

6-
#include "StarWarsObjects.h"
6+
#include "QueryObject.h"
7+
#include "HumanObject.h"
8+
#include "DroidObject.h"
79

810
#include "graphqlservice/introspection/Introspection.h"
911

samples/learn/schema/ReviewObject.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
// WARNING! Do not edit this file manually, your changes will be overwritten.
55

6-
#include "StarWarsObjects.h"
6+
#include "ReviewObject.h"
77

88
#include "graphqlservice/introspection/Introspection.h"
99

samples/today/separate/AppointmentConnectionObject.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@
33

44
// WARNING! Do not edit this file manually, your changes will be overwritten.
55

6-
#include "TodayObjects.h"
6+
#include "AppointmentConnectionObject.h"
7+
#include "PageInfoObject.h"
8+
#include "AppointmentEdgeObject.h"
79

810
#include "graphqlservice/introspection/Introspection.h"
911

samples/today/separate/AppointmentEdgeObject.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33

44
// WARNING! Do not edit this file manually, your changes will be overwritten.
55

6-
#include "TodayObjects.h"
6+
#include "AppointmentEdgeObject.h"
7+
#include "AppointmentObject.h"
78

89
#include "graphqlservice/introspection/Introspection.h"
910

samples/today/separate/AppointmentObject.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
// WARNING! Do not edit this file manually, your changes will be overwritten.
55

6-
#include "TodayObjects.h"
6+
#include "AppointmentObject.h"
77

88
#include "graphqlservice/introspection/Introspection.h"
99

samples/today/separate/CompleteTaskPayloadObject.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33

44
// WARNING! Do not edit this file manually, your changes will be overwritten.
55

6-
#include "TodayObjects.h"
6+
#include "CompleteTaskPayloadObject.h"
7+
#include "TaskObject.h"
78

89
#include "graphqlservice/introspection/Introspection.h"
910

samples/today/separate/ExpensiveObject.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
// WARNING! Do not edit this file manually, your changes will be overwritten.
55

6-
#include "TodayObjects.h"
6+
#include "ExpensiveObject.h"
77

88
#include "graphqlservice/introspection/Introspection.h"
99

0 commit comments

Comments
 (0)