3
3
4
4
// WARNING! Do not edit this file manually, your changes will be overwritten.
5
5
6
- #include " BenchmarkClient .h"
6
+ #include " TodayClient .h"
7
7
8
8
#include " graphqlservice/internal/SortedMap.h"
9
9
17
17
using namespace std ::literals;
18
18
19
19
namespace graphql {
20
- namespace benchmark {
20
+ namespace today {
21
21
namespace client {
22
22
23
23
const std::string& GetRequestText () noexcept
@@ -61,15 +61,15 @@ const peg::ast& GetRequestObject() noexcept
61
61
}
62
62
63
63
} // namespace client
64
- } // namespace benchmark
64
+ } // namespace today
65
65
namespace client {
66
66
67
- using namespace benchmark ;
67
+ using namespace today ;
68
68
69
69
template <>
70
- graphql::benchmark ::client::query::Query::Response::appointments_AppointmentConnection::pageInfo_PageInfo Response<graphql::benchmark ::client::query::Query::Response::appointments_AppointmentConnection::pageInfo_PageInfo>::parse(response::Value&& response)
70
+ graphql::today ::client::query::Query::Response::appointments_AppointmentConnection::pageInfo_PageInfo Response<graphql::today ::client::query::Query::Response::appointments_AppointmentConnection::pageInfo_PageInfo>::parse(response::Value&& response)
71
71
{
72
- graphql::benchmark ::client::query::Query::Response::appointments_AppointmentConnection::pageInfo_PageInfo result;
72
+ graphql::today ::client::query::Query::Response::appointments_AppointmentConnection::pageInfo_PageInfo result;
73
73
74
74
if (response.type () == response::Type::Map)
75
75
{
@@ -89,9 +89,9 @@ graphql::benchmark::client::query::Query::Response::appointments_AppointmentConn
89
89
}
90
90
91
91
template <>
92
- graphql::benchmark ::client::query::Query::Response::appointments_AppointmentConnection::edges_AppointmentEdge::node_Appointment Response<graphql::benchmark ::client::query::Query::Response::appointments_AppointmentConnection::edges_AppointmentEdge::node_Appointment>::parse(response::Value&& response)
92
+ graphql::today ::client::query::Query::Response::appointments_AppointmentConnection::edges_AppointmentEdge::node_Appointment Response<graphql::today ::client::query::Query::Response::appointments_AppointmentConnection::edges_AppointmentEdge::node_Appointment>::parse(response::Value&& response)
93
93
{
94
- graphql::benchmark ::client::query::Query::Response::appointments_AppointmentConnection::edges_AppointmentEdge::node_Appointment result;
94
+ graphql::today ::client::query::Query::Response::appointments_AppointmentConnection::edges_AppointmentEdge::node_Appointment result;
95
95
96
96
if (response.type () == response::Type::Map)
97
97
{
@@ -126,9 +126,9 @@ graphql::benchmark::client::query::Query::Response::appointments_AppointmentConn
126
126
}
127
127
128
128
template <>
129
- graphql::benchmark ::client::query::Query::Response::appointments_AppointmentConnection::edges_AppointmentEdge Response<graphql::benchmark ::client::query::Query::Response::appointments_AppointmentConnection::edges_AppointmentEdge>::parse(response::Value&& response)
129
+ graphql::today ::client::query::Query::Response::appointments_AppointmentConnection::edges_AppointmentEdge Response<graphql::today ::client::query::Query::Response::appointments_AppointmentConnection::edges_AppointmentEdge>::parse(response::Value&& response)
130
130
{
131
- graphql::benchmark ::client::query::Query::Response::appointments_AppointmentConnection::edges_AppointmentEdge result;
131
+ graphql::today ::client::query::Query::Response::appointments_AppointmentConnection::edges_AppointmentEdge result;
132
132
133
133
if (response.type () == response::Type::Map)
134
134
{
@@ -138,7 +138,7 @@ graphql::benchmark::client::query::Query::Response::appointments_AppointmentConn
138
138
{
139
139
if (member.first == R"js( node)js" sv)
140
140
{
141
- result.node = ModifiedResponse<graphql::benchmark ::client::query::Query::Response::appointments_AppointmentConnection::edges_AppointmentEdge::node_Appointment>::parse<TypeModifier::Nullable>(std::move (member.second ));
141
+ result.node = ModifiedResponse<graphql::today ::client::query::Query::Response::appointments_AppointmentConnection::edges_AppointmentEdge::node_Appointment>::parse<TypeModifier::Nullable>(std::move (member.second ));
142
142
continue ;
143
143
}
144
144
}
@@ -148,9 +148,9 @@ graphql::benchmark::client::query::Query::Response::appointments_AppointmentConn
148
148
}
149
149
150
150
template <>
151
- graphql::benchmark ::client::query::Query::Response::appointments_AppointmentConnection Response<graphql::benchmark ::client::query::Query::Response::appointments_AppointmentConnection>::parse(response::Value&& response)
151
+ graphql::today ::client::query::Query::Response::appointments_AppointmentConnection Response<graphql::today ::client::query::Query::Response::appointments_AppointmentConnection>::parse(response::Value&& response)
152
152
{
153
- graphql::benchmark ::client::query::Query::Response::appointments_AppointmentConnection result;
153
+ graphql::today ::client::query::Query::Response::appointments_AppointmentConnection result;
154
154
155
155
if (response.type () == response::Type::Map)
156
156
{
@@ -160,12 +160,12 @@ graphql::benchmark::client::query::Query::Response::appointments_AppointmentConn
160
160
{
161
161
if (member.first == R"js( pageInfo)js" sv)
162
162
{
163
- result.pageInfo = ModifiedResponse<graphql::benchmark ::client::query::Query::Response::appointments_AppointmentConnection::pageInfo_PageInfo>::parse (std::move (member.second ));
163
+ result.pageInfo = ModifiedResponse<graphql::today ::client::query::Query::Response::appointments_AppointmentConnection::pageInfo_PageInfo>::parse (std::move (member.second ));
164
164
continue ;
165
165
}
166
166
if (member.first == R"js( edges)js" sv)
167
167
{
168
- result.edges = ModifiedResponse<graphql::benchmark ::client::query::Query::Response::appointments_AppointmentConnection::edges_AppointmentEdge>::parse<TypeModifier::Nullable, TypeModifier::List, TypeModifier::Nullable>(std::move (member.second ));
168
+ result.edges = ModifiedResponse<graphql::today ::client::query::Query::Response::appointments_AppointmentConnection::edges_AppointmentEdge>::parse<TypeModifier::Nullable, TypeModifier::List, TypeModifier::Nullable>(std::move (member.second ));
169
169
continue ;
170
170
}
171
171
}
@@ -176,7 +176,7 @@ graphql::benchmark::client::query::Query::Response::appointments_AppointmentConn
176
176
177
177
} // namespace client
178
178
179
- namespace benchmark ::client::query::Query {
179
+ namespace today ::client::query::Query {
180
180
181
181
const std::string& GetOperationName () noexcept
182
182
{
@@ -228,5 +228,5 @@ Response parseResponse(response::Value&& response)
228
228
return Query::parseResponse (std::move (response));
229
229
}
230
230
231
- } // namespace benchmark ::client::query::Query
231
+ } // namespace today ::client::query::Query
232
232
} // namespace graphql
0 commit comments