Skip to content

Commit f603111

Browse files
committed
Fix #156
1 parent 835f9a0 commit f603111

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+124
-45
lines changed

samples/learn/schema/CharacterObject.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 "CharacterObject.h"
77

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

samples/learn/schema/DroidObject.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 "DroidObject.h"
7+
#include "CharacterObject.h"
78

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

samples/learn/schema/HumanObject.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 "HumanObject.h"
7+
#include "CharacterObject.h"
78

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

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: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,10 @@
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 "CharacterObject.h"
8+
#include "HumanObject.h"
9+
#include "DroidObject.h"
710

811
#include "graphqlservice/introspection/Introspection.h"
912

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

0 commit comments

Comments
 (0)