File tree Expand file tree Collapse file tree 3 files changed +0
-12
lines changed Expand file tree Collapse file tree 3 files changed +0
-12
lines changed Original file line number Diff line number Diff line change @@ -172,7 +172,6 @@ target_include_directories(sample PRIVATE
172
172
173
173
# sample_nointrospection
174
174
add_executable (sample_nointrospection today/sample.cpp )
175
- target_compile_definitions (sample_nointrospection PRIVATE NO_INTROSPECTION )
176
175
target_link_libraries (sample_nointrospection PRIVATE
177
176
separategraphql_nointrospection
178
177
graphqljson )
@@ -205,7 +204,6 @@ target_include_directories(benchmark PRIVATE
205
204
206
205
# benchmark_nointrospection
207
206
add_executable (benchmark_nointrospection today/benchmark.cpp )
208
- target_compile_definitions (benchmark_nointrospection PRIVATE NO_INTROSPECTION )
209
207
target_link_libraries (benchmark_nointrospection PRIVATE
210
208
separategraphql_nointrospection
211
209
graphqljson )
Original file line number Diff line number Diff line change @@ -93,11 +93,6 @@ int main(int argc, char** argv)
93
93
}
94
94
})gql" _graphql;
95
95
96
- #ifdef NO_INTROSPECTION
97
- // TODO: cherry-pick validation support without Introspection
98
- query.validated = true ;
99
- #endif // NO_INTROSPECTION
100
-
101
96
std::cout << " Executing query..." << std::endl;
102
97
103
98
std::cout << response::toJSON (
Original file line number Diff line number Diff line change @@ -82,11 +82,6 @@ int main(int argc, char** argv)
82
82
return 1 ;
83
83
}
84
84
85
- #ifdef NO_INTROSPECTION
86
- // TODO: cherry-pick validation support without Introspection
87
- query.validated = true ;
88
- #endif // NO_INTROSPECTION
89
-
90
85
std::cout << " Executing query..." << std::endl;
91
86
92
87
std::cout << response::toJSON (service
You can’t perform that action at this time.
0 commit comments