We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c022be9 commit 35e02d8Copy full SHA for 35e02d8
samples/today/benchmark.cpp
@@ -13,6 +13,8 @@
13
14
using namespace graphql;
15
16
+using namespace std::literals;
17
+
18
int main(int argc, char** argv)
19
{
20
response::IdType binAppointmentId;
@@ -79,7 +81,7 @@ int main(int argc, char** argv)
79
81
80
82
try
83
- auto query = R"gql(query {
84
+ auto query = peg::parseString(R"gql(query {
85
appointments {
86
pageInfo { hasNextPage }
87
edges {
@@ -91,7 +93,7 @@ int main(int argc, char** argv)
91
93
}
92
94
95
- })gql"_graphql;
96
+ })gql"sv);
97
98
std::cout << "Executing query..." << std::endl;
99
0 commit comments