@@ -22,15 +22,15 @@ class EnumValue;
2222class Schema
2323{
2424public:
25- GRAPHQLINTROSPECTION_EXPORT explicit Schema (const std::shared_ptr<schema::Schema>& schema);
25+ GRAPHQLSERVICE_EXPORT explicit Schema (const std::shared_ptr<schema::Schema>& schema);
2626
2727 // Accessors
28- GRAPHQLINTROSPECTION_EXPORT std::optional<std::string> getDescription () const ;
29- GRAPHQLINTROSPECTION_EXPORT std::vector<std::shared_ptr<object::Type>> getTypes () const ;
30- GRAPHQLINTROSPECTION_EXPORT std::shared_ptr<object::Type> getQueryType () const ;
31- GRAPHQLINTROSPECTION_EXPORT std::shared_ptr<object::Type> getMutationType () const ;
32- GRAPHQLINTROSPECTION_EXPORT std::shared_ptr<object::Type> getSubscriptionType () const ;
33- GRAPHQLINTROSPECTION_EXPORT std::vector<std::shared_ptr<object::Directive>> getDirectives ()
28+ GRAPHQLSERVICE_EXPORT std::optional<std::string> getDescription () const ;
29+ GRAPHQLSERVICE_EXPORT std::vector<std::shared_ptr<object::Type>> getTypes () const ;
30+ GRAPHQLSERVICE_EXPORT std::shared_ptr<object::Type> getQueryType () const ;
31+ GRAPHQLSERVICE_EXPORT std::shared_ptr<object::Type> getMutationType () const ;
32+ GRAPHQLSERVICE_EXPORT std::shared_ptr<object::Type> getSubscriptionType () const ;
33+ GRAPHQLSERVICE_EXPORT std::vector<std::shared_ptr<object::Directive>> getDirectives ()
3434 const ;
3535
3636private:
@@ -40,24 +40,24 @@ class Schema
4040class Type
4141{
4242public:
43- GRAPHQLINTROSPECTION_EXPORT explicit Type (const std::shared_ptr<const schema::BaseType>& type);
43+ GRAPHQLSERVICE_EXPORT explicit Type (const std::shared_ptr<const schema::BaseType>& type);
4444
4545 // Accessors
46- GRAPHQLINTROSPECTION_EXPORT TypeKind getKind () const ;
47- GRAPHQLINTROSPECTION_EXPORT std::optional<std::string> getName () const ;
48- GRAPHQLINTROSPECTION_EXPORT std::optional<std::string> getDescription () const ;
49- GRAPHQLINTROSPECTION_EXPORT std::optional<std::vector<std::shared_ptr<object::Field>>>
46+ GRAPHQLSERVICE_EXPORT TypeKind getKind () const ;
47+ GRAPHQLSERVICE_EXPORT std::optional<std::string> getName () const ;
48+ GRAPHQLSERVICE_EXPORT std::optional<std::string> getDescription () const ;
49+ GRAPHQLSERVICE_EXPORT std::optional<std::vector<std::shared_ptr<object::Field>>>
5050 getFields (std::optional<bool >&& includeDeprecatedArg) const ;
51- GRAPHQLINTROSPECTION_EXPORT std::optional<std::vector<std::shared_ptr<object::Type>>>
51+ GRAPHQLSERVICE_EXPORT std::optional<std::vector<std::shared_ptr<object::Type>>>
5252 getInterfaces () const ;
53- GRAPHQLINTROSPECTION_EXPORT std::optional<std::vector<std::shared_ptr<object::Type>>>
53+ GRAPHQLSERVICE_EXPORT std::optional<std::vector<std::shared_ptr<object::Type>>>
5454 getPossibleTypes () const ;
55- GRAPHQLINTROSPECTION_EXPORT std::optional<std::vector<std::shared_ptr<object::EnumValue>>>
55+ GRAPHQLSERVICE_EXPORT std::optional<std::vector<std::shared_ptr<object::EnumValue>>>
5656 getEnumValues (std::optional<bool >&& includeDeprecatedArg) const ;
57- GRAPHQLINTROSPECTION_EXPORT std::optional<std::vector<std::shared_ptr<object::InputValue>>>
57+ GRAPHQLSERVICE_EXPORT std::optional<std::vector<std::shared_ptr<object::InputValue>>>
5858 getInputFields () const ;
59- GRAPHQLINTROSPECTION_EXPORT std::shared_ptr<object::Type> getOfType () const ;
60- GRAPHQLINTROSPECTION_EXPORT std::optional<std::string> getSpecifiedByURL () const ;
59+ GRAPHQLSERVICE_EXPORT std::shared_ptr<object::Type> getOfType () const ;
60+ GRAPHQLSERVICE_EXPORT std::optional<std::string> getSpecifiedByURL () const ;
6161
6262private:
6363 const std::shared_ptr<const schema::BaseType> _type;
@@ -66,15 +66,15 @@ class Type
6666class Field
6767{
6868public:
69- GRAPHQLINTROSPECTION_EXPORT explicit Field (const std::shared_ptr<const schema::Field>& field);
69+ GRAPHQLSERVICE_EXPORT explicit Field (const std::shared_ptr<const schema::Field>& field);
7070
7171 // Accessors
72- GRAPHQLINTROSPECTION_EXPORT std::string getName () const ;
73- GRAPHQLINTROSPECTION_EXPORT std::optional<std::string> getDescription () const ;
74- GRAPHQLINTROSPECTION_EXPORT std::vector<std::shared_ptr<object::InputValue>> getArgs () const ;
75- GRAPHQLINTROSPECTION_EXPORT std::shared_ptr<object::Type> getType () const ;
76- GRAPHQLINTROSPECTION_EXPORT bool getIsDeprecated () const ;
77- GRAPHQLINTROSPECTION_EXPORT std::optional<std::string> getDeprecationReason () const ;
72+ GRAPHQLSERVICE_EXPORT std::string getName () const ;
73+ GRAPHQLSERVICE_EXPORT std::optional<std::string> getDescription () const ;
74+ GRAPHQLSERVICE_EXPORT std::vector<std::shared_ptr<object::InputValue>> getArgs () const ;
75+ GRAPHQLSERVICE_EXPORT std::shared_ptr<object::Type> getType () const ;
76+ GRAPHQLSERVICE_EXPORT bool getIsDeprecated () const ;
77+ GRAPHQLSERVICE_EXPORT std::optional<std::string> getDeprecationReason () const ;
7878
7979private:
8080 const std::shared_ptr<const schema::Field> _field;
@@ -83,14 +83,14 @@ class Field
8383class InputValue
8484{
8585public:
86- GRAPHQLINTROSPECTION_EXPORT explicit InputValue (
86+ GRAPHQLSERVICE_EXPORT explicit InputValue (
8787 const std::shared_ptr<const schema::InputValue>& inputValue);
8888
8989 // Accessors
90- GRAPHQLINTROSPECTION_EXPORT std::string getName () const ;
91- GRAPHQLINTROSPECTION_EXPORT std::optional<std::string> getDescription () const ;
92- GRAPHQLINTROSPECTION_EXPORT std::shared_ptr<object::Type> getType () const ;
93- GRAPHQLINTROSPECTION_EXPORT std::optional<std::string> getDefaultValue () const ;
90+ GRAPHQLSERVICE_EXPORT std::string getName () const ;
91+ GRAPHQLSERVICE_EXPORT std::optional<std::string> getDescription () const ;
92+ GRAPHQLSERVICE_EXPORT std::shared_ptr<object::Type> getType () const ;
93+ GRAPHQLSERVICE_EXPORT std::optional<std::string> getDefaultValue () const ;
9494
9595private:
9696 const std::shared_ptr<const schema::InputValue> _inputValue;
@@ -99,14 +99,14 @@ class InputValue
9999class EnumValue
100100{
101101public:
102- GRAPHQLINTROSPECTION_EXPORT explicit EnumValue (
102+ GRAPHQLSERVICE_EXPORT explicit EnumValue (
103103 const std::shared_ptr<const schema::EnumValue>& enumValue);
104104
105105 // Accessors
106- GRAPHQLINTROSPECTION_EXPORT std::string getName () const ;
107- GRAPHQLINTROSPECTION_EXPORT std::optional<std::string> getDescription () const ;
108- GRAPHQLINTROSPECTION_EXPORT bool getIsDeprecated () const ;
109- GRAPHQLINTROSPECTION_EXPORT std::optional<std::string> getDeprecationReason () const ;
106+ GRAPHQLSERVICE_EXPORT std::string getName () const ;
107+ GRAPHQLSERVICE_EXPORT std::optional<std::string> getDescription () const ;
108+ GRAPHQLSERVICE_EXPORT bool getIsDeprecated () const ;
109+ GRAPHQLSERVICE_EXPORT std::optional<std::string> getDeprecationReason () const ;
110110
111111private:
112112 const std::shared_ptr<const schema::EnumValue> _enumValue;
@@ -115,15 +115,15 @@ class EnumValue
115115class Directive
116116{
117117public:
118- GRAPHQLINTROSPECTION_EXPORT explicit Directive (
118+ GRAPHQLSERVICE_EXPORT explicit Directive (
119119 const std::shared_ptr<const schema::Directive>& directive);
120120
121121 // Accessors
122- GRAPHQLINTROSPECTION_EXPORT std::string getName () const ;
123- GRAPHQLINTROSPECTION_EXPORT std::optional<std::string> getDescription () const ;
124- GRAPHQLINTROSPECTION_EXPORT std::vector<DirectiveLocation> getLocations () const ;
125- GRAPHQLINTROSPECTION_EXPORT std::vector<std::shared_ptr<object::InputValue>> getArgs () const ;
126- GRAPHQLINTROSPECTION_EXPORT bool getIsRepeatable () const ;
122+ GRAPHQLSERVICE_EXPORT std::string getName () const ;
123+ GRAPHQLSERVICE_EXPORT std::optional<std::string> getDescription () const ;
124+ GRAPHQLSERVICE_EXPORT std::vector<DirectiveLocation> getLocations () const ;
125+ GRAPHQLSERVICE_EXPORT std::vector<std::shared_ptr<object::InputValue>> getArgs () const ;
126+ GRAPHQLSERVICE_EXPORT bool getIsRepeatable () const ;
127127
128128private:
129129 const std::shared_ptr<const schema::Directive> _directive;
0 commit comments