@@ -1829,7 +1829,7 @@ Operations::Operations()cpp";
1829
1829
sourceFile << R"cpp( schema->AddType(")cpp" << scalarType.type
1830
1830
<< R"cpp( ", std::make_shared<)cpp" << s_introspectionNamespace
1831
1831
<< R"cpp( ::ScalarType>(")cpp" << scalarType.type
1832
- << R"cpp( ", " )cpp" << scalarType.description << R"cpp( "));
1832
+ << R"cpp( ", R"gql( )cpp" << scalarType.description << R"cpp( )gql "));
1833
1833
)cpp" ;
1834
1834
}
1835
1835
}
@@ -1841,7 +1841,7 @@ Operations::Operations()cpp";
1841
1841
sourceFile << R"cpp( auto type)cpp" << enumType.type
1842
1842
<< R"cpp( = std::make_shared<)cpp" << s_introspectionNamespace
1843
1843
<< R"cpp( ::EnumType>(")cpp" << enumType.type
1844
- << R"cpp( ", " )cpp" << enumType.description << R"cpp( ");
1844
+ << R"cpp( ", R"gql( )cpp" << enumType.description << R"cpp( )gql ");
1845
1845
schema->AddType(")cpp" << enumType.type
1846
1846
<< R"cpp( ", type)cpp" << enumType.type
1847
1847
<< R"cpp( );
@@ -1856,7 +1856,7 @@ Operations::Operations()cpp";
1856
1856
sourceFile << R"cpp( auto type)cpp" << inputType.type
1857
1857
<< R"cpp( = std::make_shared<)cpp" << s_introspectionNamespace
1858
1858
<< R"cpp( ::InputObjectType>(")cpp" << inputType.type
1859
- << R"cpp( ", " )cpp" << inputType.description << R"cpp( ");
1859
+ << R"cpp( ", R"gql( )cpp" << inputType.description << R"cpp( )gql ");
1860
1860
schema->AddType(")cpp" << inputType.type
1861
1861
<< R"cpp( ", type)cpp" << inputType.type
1862
1862
<< R"cpp( );
@@ -1871,7 +1871,7 @@ Operations::Operations()cpp";
1871
1871
sourceFile << R"cpp( auto type)cpp" << unionType.type
1872
1872
<< R"cpp( = std::make_shared<)cpp" << s_introspectionNamespace
1873
1873
<< R"cpp( ::UnionType>(")cpp" << unionType.type
1874
- << R"cpp( ", " )cpp" << unionType.description << R"cpp( ");
1874
+ << R"cpp( ", R"gql( )cpp" << unionType.description << R"cpp( )gql ");
1875
1875
schema->AddType(")cpp" << unionType.type
1876
1876
<< R"cpp( ", type)cpp" << unionType.type
1877
1877
<< R"cpp( );
@@ -1886,7 +1886,7 @@ Operations::Operations()cpp";
1886
1886
sourceFile << R"cpp( auto type)cpp" << interfaceType.type
1887
1887
<< R"cpp( = std::make_shared<)cpp" << s_introspectionNamespace
1888
1888
<< R"cpp( ::InterfaceType>(")cpp" << interfaceType.type
1889
- << R"cpp( ", " )cpp" << interfaceType.description << R"cpp( ");
1889
+ << R"cpp( ", R"gql( )cpp" << interfaceType.description << R"cpp( )gql ");
1890
1890
schema->AddType(")cpp" << interfaceType.type
1891
1891
<< R"cpp( ", type)cpp" << interfaceType.type
1892
1892
<< R"cpp( );
@@ -1901,7 +1901,7 @@ Operations::Operations()cpp";
1901
1901
sourceFile << R"cpp( auto type)cpp" << objectType.type
1902
1902
<< R"cpp( = std::make_shared<)cpp" << s_introspectionNamespace
1903
1903
<< R"cpp( ::ObjectType>(")cpp" << objectType.type
1904
- << R"cpp( ", " )cpp" << objectType.description << R"cpp( ");
1904
+ << R"cpp( ", R"gql( )cpp" << objectType.description << R"cpp( )gql ");
1905
1905
schema->AddType(")cpp" << objectType.type
1906
1906
<< R"cpp( ", type)cpp" << objectType.type
1907
1907
<< R"cpp( );
@@ -1934,7 +1934,7 @@ Operations::Operations()cpp";
1934
1934
1935
1935
firstValue = false ;
1936
1936
sourceFile << R"cpp( { ")cpp" << enumValue.value
1937
- << R"cpp( ", " )cpp" << enumValue.description << R"cpp( " })cpp" ;
1937
+ << R"cpp( ", R"gql( )cpp" << enumValue.description << R"cpp( )gql " })cpp" ;
1938
1938
}
1939
1939
1940
1940
sourceFile << R"cpp(
@@ -1989,8 +1989,8 @@ Operations::Operations()cpp";
1989
1989
firstValue = false ;
1990
1990
sourceFile << R"cpp( std::make_shared<)cpp" << s_introspectionNamespace
1991
1991
<< R"cpp( ::InputValue>(")cpp" << inputField.name
1992
- << R"cpp( ", " )cpp" << inputField.description
1993
- << R"cpp( ", )cpp" << getIntrospectionType (inputField.type , inputField.modifiers )
1992
+ << R"cpp( ", R"gql( )cpp" << inputField.description
1993
+ << R"cpp( )gql ", )cpp" << getIntrospectionType (inputField.type , inputField.modifiers )
1994
1994
<< R"cpp( , default)cpp" << inputType.type << inputField.name << R"cpp( ))cpp" ;
1995
1995
}
1996
1996
@@ -2079,8 +2079,8 @@ Operations::Operations()cpp";
2079
2079
firstValue = false ;
2080
2080
sourceFile << R"cpp( std::make_shared<)cpp" << s_introspectionNamespace
2081
2081
<< R"cpp( ::Field>(")cpp" << interfaceField.name
2082
- << R"cpp( ", " )cpp" << interfaceField.description
2083
- << R"cpp( ", std::vector<std::shared_ptr<)cpp" << s_introspectionNamespace
2082
+ << R"cpp( ", R"gql( )cpp" << interfaceField.description
2083
+ << R"cpp( )gql ", std::vector<std::shared_ptr<)cpp" << s_introspectionNamespace
2084
2084
<< R"cpp( ::InputValue>>()cpp" ;
2085
2085
2086
2086
if (!interfaceField.arguments .empty ())
@@ -2106,8 +2106,8 @@ Operations::Operations()cpp";
2106
2106
firstArgument = false ;
2107
2107
sourceFile << R"cpp( std::make_shared<)cpp" << s_introspectionNamespace
2108
2108
<< R"cpp( ::InputValue>(")cpp" << argument.name
2109
- << R"cpp( ", " )cpp" << argument.description
2110
- << R"cpp( ", )cpp" << getIntrospectionType (argument.type , argument.modifiers )
2109
+ << R"cpp( ", R"gql( )cpp" << argument.description
2110
+ << R"cpp( )gql ", )cpp" << getIntrospectionType (argument.type , argument.modifiers )
2111
2111
<< R"cpp( , default)cpp" << interfaceType.type << interfaceField.name << argument.name << R"cpp( ))cpp" ;
2112
2112
}
2113
2113
@@ -2194,8 +2194,8 @@ Operations::Operations()cpp";
2194
2194
firstValue = false ;
2195
2195
sourceFile << R"cpp( std::make_shared<)cpp" << s_introspectionNamespace
2196
2196
<< R"cpp( ::Field>(")cpp" << objectField.name
2197
- << R"cpp( ", " )cpp" << objectField.description
2198
- << R"cpp( ", std::vector<std::shared_ptr<)cpp" << s_introspectionNamespace
2197
+ << R"cpp( ", R"gql( )cpp" << objectField.description
2198
+ << R"cpp( )gql ", std::vector<std::shared_ptr<)cpp" << s_introspectionNamespace
2199
2199
<< R"cpp( ::InputValue>>()cpp" ;
2200
2200
2201
2201
if (!objectField.arguments .empty ())
@@ -2221,8 +2221,8 @@ Operations::Operations()cpp";
2221
2221
firstArgument = false ;
2222
2222
sourceFile << R"cpp( std::make_shared<)cpp" << s_introspectionNamespace
2223
2223
<< R"cpp( ::InputValue>(")cpp" << argument.name
2224
- << R"cpp( ", " )cpp" << argument.description
2225
- << R"cpp( ", )cpp" << getIntrospectionType (argument.type , argument.modifiers )
2224
+ << R"cpp( ", R"gql( )cpp" << argument.description
2225
+ << R"cpp( )gql ", )cpp" << getIntrospectionType (argument.type , argument.modifiers )
2226
2226
<< R"cpp( , default)cpp" << objectType.type << objectField.name << argument.name << R"cpp( ))cpp" ;
2227
2227
}
2228
2228
0 commit comments