rails-graphql 0.2.1 → 1.0.0.rc1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (315) hide show
  1. checksums.yaml +4 -4
  2. data/ext/console.rb +18 -0
  3. data/ext/extconf.h +3 -0
  4. data/ext/extconf.rb +1 -54
  5. data/ext/gql_parser.c +631 -0
  6. data/ext/gql_parser.h +21 -0
  7. data/ext/shared.c +477 -0
  8. data/ext/shared.h +177 -0
  9. data/lib/generators/graphql/channel_generator.rb +27 -0
  10. data/lib/generators/graphql/controller_generator.rb +9 -4
  11. data/lib/generators/graphql/install_generator.rb +49 -0
  12. data/lib/generators/graphql/schema_generator.rb +9 -4
  13. data/lib/generators/graphql/templates/channel.erb +7 -0
  14. data/lib/generators/graphql/templates/config.rb +97 -0
  15. data/lib/generators/graphql/templates/controller.erb +2 -0
  16. data/lib/generators/graphql/templates/schema.erb +5 -3
  17. data/lib/gql_parser.so +0 -0
  18. data/lib/rails/graphql/adapters/mysql_adapter.rb +59 -0
  19. data/lib/rails/graphql/adapters/pg_adapter.rb +25 -22
  20. data/lib/rails/graphql/adapters/sqlite_adapter.rb +17 -14
  21. data/lib/rails/graphql/alternative/field_set.rb +48 -0
  22. data/lib/rails/graphql/alternative/mutation.rb +17 -0
  23. data/lib/rails/graphql/alternative/query.rb +98 -0
  24. data/lib/rails/graphql/alternative/subscription.rb +18 -0
  25. data/lib/rails/graphql/alternative.rb +20 -0
  26. data/lib/rails/graphql/argument.rb +25 -26
  27. data/lib/rails/graphql/callback.rb +30 -14
  28. data/lib/rails/graphql/collectors/hash_collector.rb +26 -7
  29. data/lib/rails/graphql/collectors/idented_collector.rb +10 -7
  30. data/lib/rails/graphql/collectors/json_collector.rb +43 -17
  31. data/lib/rails/graphql/collectors.rb +4 -4
  32. data/lib/rails/graphql/config.rb +154 -23
  33. data/lib/rails/graphql/directive/cached_directive.rb +33 -0
  34. data/lib/rails/graphql/directive/deprecated_directive.rb +10 -10
  35. data/lib/rails/graphql/directive/include_directive.rb +4 -4
  36. data/lib/rails/graphql/directive/skip_directive.rb +4 -4
  37. data/lib/rails/graphql/directive/specified_by_directive.rb +24 -0
  38. data/lib/rails/graphql/directive.rb +134 -73
  39. data/lib/rails/graphql/errors.rb +33 -4
  40. data/lib/rails/graphql/event.rb +21 -9
  41. data/lib/rails/graphql/field/authorized_field.rb +17 -6
  42. data/lib/rails/graphql/field/input_field.rb +8 -12
  43. data/lib/rails/graphql/field/mutation_field.rb +43 -9
  44. data/lib/rails/graphql/field/output_field.rb +112 -12
  45. data/lib/rails/graphql/field/proxied_field.rb +35 -26
  46. data/lib/rails/graphql/field/resolved_field.rb +27 -25
  47. data/lib/rails/graphql/field/scoped_config.rb +10 -4
  48. data/lib/rails/graphql/field/subscription_field.rb +123 -0
  49. data/lib/rails/graphql/field/typed_field.rb +69 -24
  50. data/lib/rails/graphql/field.rb +89 -74
  51. data/lib/rails/graphql/global_id.rb +89 -0
  52. data/lib/rails/graphql/helpers/attribute_delegator.rb +5 -5
  53. data/lib/rails/graphql/helpers/inherited_collection/array.rb +51 -0
  54. data/lib/rails/graphql/helpers/inherited_collection/base.rb +45 -0
  55. data/lib/rails/graphql/helpers/inherited_collection/hash.rb +88 -0
  56. data/lib/rails/graphql/helpers/inherited_collection.rb +25 -76
  57. data/lib/rails/graphql/helpers/instantiable.rb +15 -0
  58. data/lib/rails/graphql/helpers/leaf_from_ar.rb +7 -7
  59. data/lib/rails/graphql/helpers/registerable.rb +44 -62
  60. data/lib/rails/graphql/helpers/unregisterable.rb +16 -0
  61. data/lib/rails/graphql/helpers/with_arguments.rb +33 -28
  62. data/lib/rails/graphql/helpers/with_assignment.rb +6 -6
  63. data/lib/rails/graphql/helpers/with_callbacks.rb +28 -11
  64. data/lib/rails/graphql/helpers/with_description.rb +73 -0
  65. data/lib/rails/graphql/helpers/with_directives.rb +58 -30
  66. data/lib/rails/graphql/helpers/with_events.rb +22 -23
  67. data/lib/rails/graphql/helpers/with_fields.rb +86 -26
  68. data/lib/rails/graphql/helpers/with_global_id.rb +22 -0
  69. data/lib/rails/graphql/helpers/with_name.rb +44 -0
  70. data/lib/rails/graphql/helpers/with_namespace.rb +7 -4
  71. data/lib/rails/graphql/helpers/with_owner.rb +8 -7
  72. data/lib/rails/graphql/helpers/with_schema_fields.rb +162 -56
  73. data/lib/rails/graphql/helpers/with_validator.rb +9 -9
  74. data/lib/rails/graphql/helpers.rb +10 -3
  75. data/lib/rails/graphql/introspection.rb +43 -36
  76. data/lib/rails/graphql/railtie.rb +89 -33
  77. data/lib/rails/graphql/railties/app/base_channel.rb +10 -0
  78. data/lib/rails/graphql/railties/app/base_controller.rb +12 -0
  79. data/lib/rails/graphql/railties/app/views/_cable.js.erb +56 -0
  80. data/lib/rails/graphql/railties/app/views/_fetch.js.erb +20 -0
  81. data/lib/rails/graphql/railties/app/views/graphiql.html.erb +101 -0
  82. data/lib/rails/graphql/railties/base_generator.rb +5 -17
  83. data/lib/rails/graphql/railties/channel.rb +157 -0
  84. data/lib/rails/graphql/railties/controller.rb +91 -25
  85. data/lib/rails/graphql/railties/controller_runtime.rb +5 -5
  86. data/lib/rails/graphql/railties/log_subscriber.rb +81 -14
  87. data/lib/rails/graphql/request/arguments.rb +26 -50
  88. data/lib/rails/graphql/request/backtrace.rb +212 -0
  89. data/lib/rails/graphql/request/component/field.rb +98 -70
  90. data/lib/rails/graphql/request/component/fragment.rb +80 -26
  91. data/lib/rails/graphql/request/component/operation/subscription.rb +162 -4
  92. data/lib/rails/graphql/request/component/operation.rb +73 -34
  93. data/lib/rails/graphql/request/component/spread.rb +79 -27
  94. data/lib/rails/graphql/request/component/typename.rb +28 -13
  95. data/lib/rails/graphql/request/component.rb +77 -36
  96. data/lib/rails/graphql/request/context.rb +19 -9
  97. data/lib/rails/graphql/request/errors.rb +16 -6
  98. data/lib/rails/graphql/request/event.rb +23 -8
  99. data/lib/rails/graphql/request/helpers/directives.rb +69 -27
  100. data/lib/rails/graphql/request/helpers/selection_set.rb +57 -25
  101. data/lib/rails/graphql/request/helpers/value_writers.rb +24 -19
  102. data/lib/rails/graphql/request/prepared_data.rb +100 -0
  103. data/lib/rails/graphql/request/steps/authorizable.rb +24 -14
  104. data/lib/rails/graphql/request/steps/organizable.rb +111 -49
  105. data/lib/rails/graphql/request/steps/{prepareable.rb → preparable.rb} +21 -8
  106. data/lib/rails/graphql/request/steps/{resolveable.rb → resolvable.rb} +16 -7
  107. data/lib/rails/graphql/request/strategy/cached_strategy.rb +64 -0
  108. data/lib/rails/graphql/request/strategy/dynamic_instance.rb +6 -6
  109. data/lib/rails/graphql/request/strategy/multi_query_strategy.rb +6 -13
  110. data/lib/rails/graphql/request/strategy/sequenced_strategy.rb +9 -9
  111. data/lib/rails/graphql/request/strategy.rb +147 -77
  112. data/lib/rails/graphql/request/subscription.rb +82 -0
  113. data/lib/rails/graphql/request.rb +353 -104
  114. data/lib/rails/graphql/schema.rb +251 -106
  115. data/lib/rails/graphql/shortcuts.rb +33 -8
  116. data/lib/rails/graphql/source/active_record/builders.rb +64 -51
  117. data/lib/rails/graphql/source/active_record_source.rb +158 -82
  118. data/lib/rails/graphql/source/base.rb +83 -0
  119. data/lib/rails/graphql/source/builder.rb +115 -0
  120. data/lib/rails/graphql/source/scoped_arguments.rb +39 -21
  121. data/lib/rails/graphql/source.rb +90 -228
  122. data/lib/rails/graphql/subscription/provider/action_cable.rb +113 -0
  123. data/lib/rails/graphql/subscription/provider/base.rb +192 -0
  124. data/lib/rails/graphql/subscription/provider.rb +18 -0
  125. data/lib/rails/graphql/subscription/store/base.rb +141 -0
  126. data/lib/rails/graphql/subscription/store/memory.rb +136 -0
  127. data/lib/rails/graphql/subscription/store.rb +19 -0
  128. data/lib/rails/graphql/subscription.rb +17 -0
  129. data/lib/rails/graphql/to_gql.rb +29 -32
  130. data/lib/rails/graphql/type/creator.rb +196 -0
  131. data/lib/rails/graphql/type/enum/directive_location_enum.rb +11 -11
  132. data/lib/rails/graphql/type/enum/type_kind_enum.rb +3 -3
  133. data/lib/rails/graphql/type/enum.rb +44 -50
  134. data/lib/rails/graphql/type/input.rb +92 -25
  135. data/lib/rails/graphql/type/interface.rb +29 -28
  136. data/lib/rails/graphql/type/object/directive_object.rb +10 -9
  137. data/lib/rails/graphql/type/object/enum_value_object.rb +3 -3
  138. data/lib/rails/graphql/type/object/field_object.rb +24 -6
  139. data/lib/rails/graphql/type/object/input_value_object.rb +6 -7
  140. data/lib/rails/graphql/type/object/schema_object.rb +5 -8
  141. data/lib/rails/graphql/type/object/type_object.rb +62 -25
  142. data/lib/rails/graphql/type/object.rb +34 -26
  143. data/lib/rails/graphql/type/scalar/any_scalar.rb +30 -0
  144. data/lib/rails/graphql/type/scalar/bigint_scalar.rb +5 -5
  145. data/lib/rails/graphql/type/scalar/binary_scalar.rb +5 -3
  146. data/lib/rails/graphql/type/scalar/boolean_scalar.rb +8 -8
  147. data/lib/rails/graphql/type/scalar/date_scalar.rb +5 -3
  148. data/lib/rails/graphql/type/scalar/date_time_scalar.rb +5 -3
  149. data/lib/rails/graphql/type/scalar/decimal_scalar.rb +5 -3
  150. data/lib/rails/graphql/type/scalar/float_scalar.rb +5 -5
  151. data/lib/rails/graphql/type/scalar/id_scalar.rb +6 -5
  152. data/lib/rails/graphql/type/scalar/int_scalar.rb +6 -5
  153. data/lib/rails/graphql/type/scalar/json_scalar.rb +41 -0
  154. data/lib/rails/graphql/type/scalar/string_scalar.rb +18 -4
  155. data/lib/rails/graphql/type/scalar/time_scalar.rb +8 -6
  156. data/lib/rails/graphql/type/scalar.rb +26 -23
  157. data/lib/rails/graphql/type/union.rb +21 -18
  158. data/lib/rails/graphql/type.rb +43 -26
  159. data/lib/rails/graphql/type_map.rb +268 -165
  160. data/lib/rails/graphql/uri.rb +167 -0
  161. data/lib/rails/graphql/version.rb +19 -3
  162. data/lib/rails/graphql.rake +3 -0
  163. data/lib/rails/graphql.rb +91 -56
  164. data/lib/rails-graphql.rb +1 -1
  165. data/test/assets/en.yml +29 -0
  166. data/test/assets/introspection-mem.txt +1 -1
  167. data/test/assets/introspection.gql +2 -0
  168. data/test/assets/mem.gql +86 -99
  169. data/test/assets/mysql.gql +406 -0
  170. data/test/assets/sqlite.gql +96 -73
  171. data/test/assets/translate.gql +346 -0
  172. data/test/config.rb +19 -8
  173. data/test/graphql/schema_test.rb +14 -50
  174. data/test/graphql/source_test.rb +8 -85
  175. data/test/graphql/type/enum_test.rb +207 -203
  176. data/test/graphql/type/input_test.rb +14 -9
  177. data/test/graphql/type/interface_test.rb +12 -9
  178. data/test/graphql/type/object_test.rb +8 -2
  179. data/test/graphql/type/scalar/any_scalar_test.rb +38 -0
  180. data/test/graphql/type/scalar/boolean_scalar_test.rb +6 -3
  181. data/test/graphql/type/scalar/json_scalar_test.rb +23 -0
  182. data/test/graphql/type_map_test.rb +63 -81
  183. data/test/graphql/type_test.rb +0 -19
  184. data/test/graphql_test.rb +1 -1
  185. data/test/integration/{authorization/authorization_test.rb → authorization_test.rb} +40 -14
  186. data/test/integration/config.rb +36 -3
  187. data/test/integration/customization_test.rb +39 -0
  188. data/test/integration/global_id_test.rb +99 -0
  189. data/test/integration/memory/star_wars_introspection_test.rb +24 -16
  190. data/test/integration/memory/star_wars_query_test.rb +54 -3
  191. data/test/integration/memory/star_wars_validation_test.rb +3 -3
  192. data/test/integration/mysql/star_wars_introspection_test.rb +25 -0
  193. data/test/integration/persisted_query_test.rb +87 -0
  194. data/test/integration/resolver_precedence_test.rb +154 -0
  195. data/test/integration/schemas/memory.rb +24 -10
  196. data/test/integration/schemas/mysql.rb +62 -0
  197. data/test/integration/schemas/sqlite.rb +21 -12
  198. data/test/integration/sqlite/star_wars_global_id_test.rb +89 -0
  199. data/test/integration/sqlite/star_wars_introspection_test.rb +10 -0
  200. data/test/integration/sqlite/star_wars_query_test.rb +14 -1
  201. data/test/integration/translate_test.rb +73 -0
  202. data/test/test_ext.rb +16 -13
  203. metadata +125 -161
  204. data/ext/depend +0 -3
  205. data/ext/graphqlparser/Ast.cpp +0 -346
  206. data/ext/graphqlparser/Ast.h +0 -1214
  207. data/ext/graphqlparser/AstNode.h +0 -36
  208. data/ext/graphqlparser/AstVisitor.h +0 -137
  209. data/ext/graphqlparser/GraphQLParser.cpp +0 -76
  210. data/ext/graphqlparser/GraphQLParser.h +0 -55
  211. data/ext/graphqlparser/JsonVisitor.cpp +0 -161
  212. data/ext/graphqlparser/JsonVisitor.cpp.inc +0 -456
  213. data/ext/graphqlparser/JsonVisitor.h +0 -121
  214. data/ext/graphqlparser/JsonVisitor.h.inc +0 -110
  215. data/ext/graphqlparser/VERSION +0 -1
  216. data/ext/graphqlparser/c/GraphQLAst.cpp +0 -324
  217. data/ext/graphqlparser/c/GraphQLAst.h +0 -180
  218. data/ext/graphqlparser/c/GraphQLAstForEachConcreteType.h +0 -44
  219. data/ext/graphqlparser/c/GraphQLAstNode.cpp +0 -25
  220. data/ext/graphqlparser/c/GraphQLAstNode.h +0 -33
  221. data/ext/graphqlparser/c/GraphQLAstToJSON.cpp +0 -21
  222. data/ext/graphqlparser/c/GraphQLAstToJSON.h +0 -24
  223. data/ext/graphqlparser/c/GraphQLAstVisitor.cpp +0 -55
  224. data/ext/graphqlparser/c/GraphQLAstVisitor.h +0 -53
  225. data/ext/graphqlparser/c/GraphQLParser.cpp +0 -35
  226. data/ext/graphqlparser/c/GraphQLParser.h +0 -54
  227. data/ext/graphqlparser/dump_json_ast.cpp +0 -48
  228. data/ext/graphqlparser/lexer.lpp +0 -324
  229. data/ext/graphqlparser/parser.ypp +0 -693
  230. data/ext/graphqlparser/parsergen/lexer.cpp +0 -2633
  231. data/ext/graphqlparser/parsergen/lexer.h +0 -528
  232. data/ext/graphqlparser/parsergen/location.hh +0 -189
  233. data/ext/graphqlparser/parsergen/parser.tab.cpp +0 -3300
  234. data/ext/graphqlparser/parsergen/parser.tab.hpp +0 -646
  235. data/ext/graphqlparser/parsergen/position.hh +0 -179
  236. data/ext/graphqlparser/parsergen/stack.hh +0 -156
  237. data/ext/graphqlparser/syntaxdefs.h +0 -19
  238. data/ext/libgraphqlparser/AstNode.h +0 -36
  239. data/ext/libgraphqlparser/CMakeLists.txt +0 -148
  240. data/ext/libgraphqlparser/CONTRIBUTING.md +0 -23
  241. data/ext/libgraphqlparser/GraphQLParser.cpp +0 -76
  242. data/ext/libgraphqlparser/GraphQLParser.h +0 -55
  243. data/ext/libgraphqlparser/JsonVisitor.cpp +0 -161
  244. data/ext/libgraphqlparser/JsonVisitor.h +0 -121
  245. data/ext/libgraphqlparser/LICENSE +0 -22
  246. data/ext/libgraphqlparser/README.clang-tidy +0 -7
  247. data/ext/libgraphqlparser/README.md +0 -84
  248. data/ext/libgraphqlparser/ast/ast.ast +0 -203
  249. data/ext/libgraphqlparser/ast/ast.py +0 -61
  250. data/ext/libgraphqlparser/ast/c.py +0 -100
  251. data/ext/libgraphqlparser/ast/c.pyc +0 -0
  252. data/ext/libgraphqlparser/ast/c_impl.py +0 -61
  253. data/ext/libgraphqlparser/ast/c_impl.pyc +0 -0
  254. data/ext/libgraphqlparser/ast/c_visitor_impl.py +0 -39
  255. data/ext/libgraphqlparser/ast/c_visitor_impl.pyc +0 -0
  256. data/ext/libgraphqlparser/ast/casing.py +0 -26
  257. data/ext/libgraphqlparser/ast/casing.pyc +0 -0
  258. data/ext/libgraphqlparser/ast/cxx.py +0 -197
  259. data/ext/libgraphqlparser/ast/cxx.pyc +0 -0
  260. data/ext/libgraphqlparser/ast/cxx_impl.py +0 -61
  261. data/ext/libgraphqlparser/ast/cxx_impl.pyc +0 -0
  262. data/ext/libgraphqlparser/ast/cxx_json_visitor_header.py +0 -42
  263. data/ext/libgraphqlparser/ast/cxx_json_visitor_header.pyc +0 -0
  264. data/ext/libgraphqlparser/ast/cxx_json_visitor_impl.py +0 -80
  265. data/ext/libgraphqlparser/ast/cxx_json_visitor_impl.pyc +0 -0
  266. data/ext/libgraphqlparser/ast/cxx_visitor.py +0 -64
  267. data/ext/libgraphqlparser/ast/cxx_visitor.pyc +0 -0
  268. data/ext/libgraphqlparser/ast/js.py +0 -65
  269. data/ext/libgraphqlparser/ast/license.py +0 -10
  270. data/ext/libgraphqlparser/ast/license.pyc +0 -0
  271. data/ext/libgraphqlparser/c/GraphQLAstNode.cpp +0 -25
  272. data/ext/libgraphqlparser/c/GraphQLAstNode.h +0 -33
  273. data/ext/libgraphqlparser/c/GraphQLAstToJSON.cpp +0 -21
  274. data/ext/libgraphqlparser/c/GraphQLAstToJSON.h +0 -24
  275. data/ext/libgraphqlparser/c/GraphQLAstVisitor.cpp +0 -55
  276. data/ext/libgraphqlparser/c/GraphQLAstVisitor.h +0 -53
  277. data/ext/libgraphqlparser/c/GraphQLParser.cpp +0 -35
  278. data/ext/libgraphqlparser/c/GraphQLParser.h +0 -54
  279. data/ext/libgraphqlparser/clang-tidy-all.sh +0 -3
  280. data/ext/libgraphqlparser/cmake/version.cmake +0 -16
  281. data/ext/libgraphqlparser/dump_json_ast.cpp +0 -48
  282. data/ext/libgraphqlparser/go/README.md +0 -20
  283. data/ext/libgraphqlparser/go/callbacks.go +0 -18
  284. data/ext/libgraphqlparser/go/gotest.go +0 -64
  285. data/ext/libgraphqlparser/lexer.lpp +0 -324
  286. data/ext/libgraphqlparser/libgraphqlparser.pc.in +0 -11
  287. data/ext/libgraphqlparser/parser.ypp +0 -693
  288. data/ext/libgraphqlparser/parsergen/lexer.cpp +0 -2633
  289. data/ext/libgraphqlparser/parsergen/lexer.h +0 -528
  290. data/ext/libgraphqlparser/parsergen/location.hh +0 -189
  291. data/ext/libgraphqlparser/parsergen/parser.tab.cpp +0 -3300
  292. data/ext/libgraphqlparser/parsergen/parser.tab.hpp +0 -646
  293. data/ext/libgraphqlparser/parsergen/position.hh +0 -179
  294. data/ext/libgraphqlparser/parsergen/stack.hh +0 -156
  295. data/ext/libgraphqlparser/python/CMakeLists.txt +0 -14
  296. data/ext/libgraphqlparser/python/README.md +0 -5
  297. data/ext/libgraphqlparser/python/example.py +0 -31
  298. data/ext/libgraphqlparser/syntaxdefs.h +0 -19
  299. data/ext/libgraphqlparser/test/BuildCAPI.c +0 -5
  300. data/ext/libgraphqlparser/test/CMakeLists.txt +0 -25
  301. data/ext/libgraphqlparser/test/JsonVisitorTests.cpp +0 -28
  302. data/ext/libgraphqlparser/test/ParserTests.cpp +0 -352
  303. data/ext/libgraphqlparser/test/kitchen-sink.graphql +0 -59
  304. data/ext/libgraphqlparser/test/kitchen-sink.json +0 -1
  305. data/ext/libgraphqlparser/test/schema-kitchen-sink.graphql +0 -78
  306. data/ext/libgraphqlparser/test/schema-kitchen-sink.json +0 -1
  307. data/ext/libgraphqlparser/test/valgrind.supp +0 -33
  308. data/ext/version.cpp +0 -21
  309. data/lib/graphqlparser.so +0 -0
  310. data/lib/rails/graphql/native/functions.rb +0 -38
  311. data/lib/rails/graphql/native/location.rb +0 -41
  312. data/lib/rails/graphql/native/pointers.rb +0 -23
  313. data/lib/rails/graphql/native/visitor.rb +0 -349
  314. data/lib/rails/graphql/native.rb +0 -56
  315. data/test/integration/schemas/authorization.rb +0 -12
@@ -1,693 +0,0 @@
1
- /**
2
- * Copyright 2019-present, GraphQL Foundation
3
- *
4
- * This source code is licensed under the MIT license found in the
5
- * LICENSE file in the root directory of this source tree.
6
- */
7
-
8
- %require "3"
9
-
10
- %skeleton "lalr1.cc"
11
-
12
- %defines
13
- %define parser_class_name {GraphQLParserImpl}
14
-
15
- %define api.token.prefix {TOK_}
16
-
17
- %define parse.error verbose
18
-
19
- %code requires
20
- {
21
- #include <cstdlib>
22
- #include <cstring>
23
- #include <iostream>
24
- #include <sstream>
25
- #include <string>
26
-
27
- #include "Ast.h"
28
-
29
- using facebook::graphql::ast::Node;
30
- using facebook::graphql::ast::Name;
31
- using facebook::graphql::ast::Definition;
32
- using facebook::graphql::ast::Document;
33
- using facebook::graphql::ast::OperationDefinition;
34
- using facebook::graphql::ast::VariableDefinition;
35
- using facebook::graphql::ast::Variable;
36
- using facebook::graphql::ast::SelectionSet;
37
- using facebook::graphql::ast::Selection;
38
- using facebook::graphql::ast::Field;
39
- using facebook::graphql::ast::Argument;
40
- using facebook::graphql::ast::FragmentSpread;
41
- using facebook::graphql::ast::InlineFragment;
42
- using facebook::graphql::ast::FragmentDefinition;
43
- using facebook::graphql::ast::Value;
44
- using facebook::graphql::ast::IntValue;
45
- using facebook::graphql::ast::FloatValue;
46
- using facebook::graphql::ast::StringValue;
47
- using facebook::graphql::ast::BooleanValue;
48
- using facebook::graphql::ast::NullValue;
49
- using facebook::graphql::ast::EnumValue;
50
- using facebook::graphql::ast::ListValue;
51
- using facebook::graphql::ast::ObjectValue;
52
- using facebook::graphql::ast::ObjectField;
53
- using facebook::graphql::ast::Directive;
54
- using facebook::graphql::ast::Type;
55
- using facebook::graphql::ast::NamedType;
56
- using facebook::graphql::ast::ListType;
57
- using facebook::graphql::ast::NonNullType;
58
-
59
- // Experimental schema support.
60
- using facebook::graphql::ast::SchemaDefinition;
61
- using facebook::graphql::ast::ScalarTypeDefinition;
62
- using facebook::graphql::ast::ObjectTypeDefinition;
63
- using facebook::graphql::ast::InterfaceTypeDefinition;
64
- using facebook::graphql::ast::UnionTypeDefinition;
65
- using facebook::graphql::ast::EnumTypeDefinition;
66
- using facebook::graphql::ast::InputObjectTypeDefinition;
67
- using facebook::graphql::ast::TypeExtensionDefinition;
68
- using facebook::graphql::ast::DirectiveDefinition;
69
- using facebook::graphql::ast::SchemaDefinition;
70
- using facebook::graphql::ast::OperationTypeDefinition;
71
- using facebook::graphql::ast::ScalarTypeDefinition;
72
- using facebook::graphql::ast::ObjectTypeDefinition;
73
- using facebook::graphql::ast::FieldDefinition;
74
- using facebook::graphql::ast::InputValueDefinition;
75
- using facebook::graphql::ast::InterfaceTypeDefinition;
76
- using facebook::graphql::ast::UnionTypeDefinition;
77
- using facebook::graphql::ast::EnumTypeDefinition;
78
- using facebook::graphql::ast::EnumValueDefinition;
79
- using facebook::graphql::ast::InputObjectTypeDefinition;
80
- using facebook::graphql::ast::TypeExtensionDefinition;
81
- using facebook::graphql::ast::DirectiveDefinition;
82
-
83
- union yystype { \
84
- const char *str; \
85
- const char *heapStr; \
86
- Name *name; \
87
- Definition *definition; \
88
- Document *document; \
89
- OperationDefinition *operationDefinition; \
90
- VariableDefinition *variableDefinition; \
91
- Variable *variable; \
92
- SelectionSet *selectionSet; \
93
- Selection *selection; \
94
- Field *field; \
95
- Argument *argument; \
96
- FragmentSpread *fragmentSpread; \
97
- InlineFragment *inlineFragment; \
98
- FragmentDefinition *fragmentDefinition; \
99
- Value *value; \
100
- IntValue *intValue; \
101
- FloatValue *floatValue; \
102
- StringValue *stringValue; \
103
- BooleanValue *booleanValue; \
104
- NullValue *nullValue; \
105
- EnumValue *enumValue; \
106
- ListValue *arrayValue; \
107
- ObjectValue *objectValue; \
108
- ObjectField *objectField; \
109
- Directive *directive; \
110
- Type *type; \
111
- NamedType *namedType; \
112
- ListType *listType; \
113
- NonNullType *nonNullType; \
114
- \
115
- std::vector<std::unique_ptr<Definition>> *definitionList; \
116
- std::vector<std::unique_ptr<VariableDefinition>> *variableDefinitionList; \
117
- std::vector<std::unique_ptr<Selection>> *selectionList; \
118
- std::vector<std::unique_ptr<Field>> *fieldList; \
119
- std::vector<std::unique_ptr<Argument>> *argumentList; \
120
- std::vector<std::unique_ptr<Value>> *valueList; \
121
- std::vector<std::unique_ptr<ObjectField>> *objectFieldList; \
122
- std::vector<std::unique_ptr<Directive>> *directiveList; \
123
- \
124
- SchemaDefinition *schemaDefinition; \
125
- ScalarTypeDefinition *scalarTypeDefinition; \
126
- ObjectTypeDefinition *objectTypeDefinition; \
127
- InterfaceTypeDefinition *interfaceTypeDefinition; \
128
- UnionTypeDefinition *unionTypeDefinition; \
129
- EnumTypeDefinition *enumTypeDefinition; \
130
- InputObjectTypeDefinition *inputObjectTypeDefinition; \
131
- TypeExtensionDefinition *typeExtensionDefinition; \
132
- DirectiveDefinition *directiveDefinition; \
133
- OperationTypeDefinition *operationTypeDefinition; \
134
- InputValueDefinition *inputValueDefinition; \
135
- FieldDefinition *fieldDefinition; \
136
- EnumValueDefinition *enumValueDefinition; \
137
- \
138
- std::vector<std::unique_ptr<OperationTypeDefinition>> *operationTypeDefinitionList; \
139
- std::vector<std::unique_ptr<NamedType>> *typeNameList; \
140
- std::vector<std::unique_ptr<InputValueDefinition>> *inputValueDefinitionList; \
141
- std::vector<std::unique_ptr<FieldDefinition>> *fieldDefinitionList; \
142
- std::vector<std::unique_ptr<Name>> *nameList; \
143
- std::vector<std::unique_ptr<EnumValueDefinition>> *enumValueDefinitionList; \
144
- };
145
-
146
- #define YYSTYPE union yystype
147
- #define YYLTYPE yy::location
148
-
149
- }
150
-
151
- %lex-param { void *scanner }
152
- %parse-param { bool enableSchema } { Node **outAST } { const char **outError } { void *scanner }
153
-
154
- %locations
155
-
156
- %code
157
- {
158
- #include "lexer.h"
159
- #include "syntaxdefs.h"
160
- }
161
-
162
- %token EOF 0
163
- %token <str> DIRECTIVE "directive"
164
- %token <str> ENUM "enum"
165
- %token <str> EXTEND "extend"
166
- %token <str> FALSE "false"
167
- %token <str> FRAGMENT "fragment"
168
- %token <str> IMPLEMENTS "implements"
169
- %token <str> INPUT "input"
170
- %token <str> INTERFACE "interface"
171
- %token <str> MUTATION "mutation"
172
- %token <str> NULL "null"
173
- %token <str> QUERY "query"
174
- %token <str> ON "on"
175
- %token <str> SCALAR "scalar"
176
- %token <str> SCHEMA "schema"
177
- %token <str> SUBSCRIPTION "subscription"
178
- %token <str> TRUE "true"
179
- %token <str> TYPE "type"
180
- %token <str> UNION "union"
181
- %token BANG "!"
182
- %token LPAREN "("
183
- %token RPAREN ")"
184
- %token ELLIPSIS "..."
185
- %token COLON ":"
186
- %token EQUAL "="
187
- %token AT "@"
188
- %token LBRACKET "["
189
- %token RBRACKET "]"
190
- %token LBRACE "{"
191
- %token PIPE "|"
192
- %token RBRACE "}"
193
-
194
- %token <str> VARIABLE
195
- %token <str> INTEGER
196
- %token <str> FLOAT
197
- %token <str> STRING
198
- %token <str> IDENTIFIER
199
-
200
- %type <variable> variable
201
- %type <intValue> int_value
202
- %type <floatValue> float_value
203
- %type <stringValue> string_value
204
-
205
- %type <document> start
206
- %type <document> document
207
- %type <name> fragment_name
208
- %type <name> name
209
- %type <name> name_opt
210
-
211
- %type <definitionList> definition_list
212
- %type <definition> definition
213
- %type <definition> schema_gate
214
-
215
- %type <operationDefinition> operation_definition
216
- %type <variableDefinitionList> variable_definitions
217
- %type <variableDefinitionList> variable_definition_list
218
- %type <variableDefinition> variable_definition
219
- %type <value> default_value_opt
220
- %type <value> default_value
221
- %type <selectionSet> selection_set
222
- %type <selectionSet> selection_set_opt
223
- %type <selectionList> selection_list
224
- %type <selection> selection
225
- %type <field> field
226
- %type <argumentList> arguments_opt
227
- %type <argumentList> arguments
228
- %type <argumentList> argument_list
229
- %type <argument> argument
230
-
231
- %type <fragmentSpread> fragment_spread
232
- %type <inlineFragment> inline_fragment
233
- %type <fragmentDefinition> fragment_definition
234
- %type <namedType> type_condition
235
-
236
- %type <value> value
237
- %type <value> value_const
238
- %type <booleanValue> boolean_value
239
- %type <nullValue> null_value
240
- %type <enumValue> enum_value
241
- %type <arrayValue> list_value
242
- %type <arrayValue> list_value_const
243
- %type <valueList> value_list
244
- %type <valueList> value_const_list
245
- %type <objectValue> object_value
246
- %type <objectValue> object_value_const
247
- %type <objectFieldList> object_field_list
248
- %type <objectFieldList> object_field_const_list
249
- %type <objectField> object_field
250
- %type <objectField> object_field_const
251
-
252
-
253
- %type <directiveList> directives
254
- %type <directiveList> directives_opt
255
- %type <directiveList> directive_list
256
- %type <directive> directive
257
-
258
- %type <type> type
259
- %type <namedType> type_name
260
- %type <listType> list_type
261
- %type <nonNullType> non_null_type
262
-
263
- %type <heapStr> operation_type
264
-
265
- %type <schemaDefinition> schema_definition;
266
- %type <scalarTypeDefinition> scalar_type_definition;
267
- %type <objectTypeDefinition> object_type_definition;
268
- %type <interfaceTypeDefinition> interface_type_definition;
269
- %type <unionTypeDefinition> union_type_definition;
270
- %type <enumTypeDefinition> enum_type_definition;
271
- %type <inputObjectTypeDefinition> input_object_type_definition;
272
- %type <typeExtensionDefinition> type_extension_definition;
273
- %type <directiveDefinition> directive_definition;
274
- %type <operationTypeDefinition> operation_type_definition;
275
- %type <operationTypeDefinitionList> operation_type_definition_list;
276
- %type <typeNameList> type_name_list;
277
- %type <typeNameList> implements_interfaces_opt;
278
- %type <typeNameList> union_members;
279
- %type <fieldDefinition> field_definition;
280
- %type <fieldDefinitionList> field_definition_list;
281
- %type <inputValueDefinitionList> arguments_definition_opt;
282
- %type <inputValueDefinitionList> arguments_definition;
283
- %type <inputValueDefinitionList> input_value_definition_list;
284
- %type <inputValueDefinition> input_value_definition;
285
- %type <enumValueDefinition> enum_value_definition;
286
- %type <nameList> directive_locations;
287
- %type <enumValueDefinitionList> enum_value_definition_list;
288
-
289
- %destructor { } <str>
290
- %destructor { free((void *)$$); } <heapStr>
291
- %destructor { } <document> /* we steal it and put it in outAST, don't free! */
292
- %destructor { delete $$; } <*>
293
-
294
- %printer { yyoutput << $$; } <str>
295
-
296
- %%
297
-
298
- start: document { *outAST = $1; }
299
- ;
300
-
301
- /* All of the non-identifier tokens are to accommodate various flavors
302
- of name that don't include those tokens. */
303
- fragment_name: DIRECTIVE { $$ = new Name(@1, strdup($1)); }
304
- | ENUM { $$ = new Name(@1, strdup($1)); }
305
- | EXTEND { $$ = new Name(@1, strdup($1)); }
306
- | FALSE { $$ = new Name(@1, strdup($1)); }
307
- | FRAGMENT { $$ = new Name(@1, strdup($1)); }
308
- | IDENTIFIER { $$ = new Name(@1, strdup($1)); }
309
- | IMPLEMENTS { $$ = new Name(@1, strdup($1)); }
310
- | INPUT { $$ = new Name(@1, strdup($1)); }
311
- | INTERFACE { $$ = new Name(@1, strdup($1)); }
312
- | MUTATION { $$ = new Name(@1, strdup($1)); }
313
- | NULL { $$ = new Name(@1, strdup($1)); }
314
- | QUERY { $$ = new Name(@1, strdup($1)); }
315
- | SCALAR { $$ = new Name(@1, strdup($1)); }
316
- | SCHEMA { $$ = new Name(@1, strdup($1)); }
317
- | SUBSCRIPTION { $$ = new Name(@1, strdup($1)); }
318
- | TRUE { $$ = new Name(@1, strdup($1)); }
319
- | TYPE { $$ = new Name(@1, strdup($1)); }
320
- | UNION { $$ = new Name(@1, strdup($1)); }
321
- ;
322
-
323
- name: fragment_name
324
- | ON { $$ = new Name(@1, strdup($1)); }
325
- ;
326
-
327
- name_opt:
328
- %empty {$$ = nullptr;}
329
- | name
330
- ;
331
-
332
- /* 2.2 Document */
333
-
334
- document: definition_list { $$ = new Document(@$, $1); }
335
- ;
336
-
337
- definition_list:definition { $$ = new std::vector<std::unique_ptr<Definition>>(); $$->emplace_back($1); }
338
- | definition_list definition { $1->emplace_back($2); $$ = $1; }
339
- ;
340
-
341
- definition: operation_definition { $$ = static_cast<Definition *>($1); }
342
- | fragment_definition { $$ = static_cast<Definition *>($1); }
343
- | schema_gate {
344
- if (!enableSchema) {
345
- error(@$, "schema support disabled");
346
- // %destructor doesn't work with YYERROR. See
347
- // https://www.gnu.org/software/bison/manual/html_node/Destructor-Decl.html
348
- delete $$;
349
- YYERROR;
350
- }
351
- $$ = static_cast<Definition *>($1);
352
- }
353
- ;
354
-
355
- schema_gate: schema_definition { $$ = static_cast<Definition *>($1); }
356
- | scalar_type_definition { $$ = static_cast<Definition *>($1); }
357
- | object_type_definition { $$ = static_cast<Definition *>($1); }
358
- | interface_type_definition { $$ = static_cast<Definition *>($1); }
359
- | union_type_definition { $$ = static_cast<Definition *>($1); }
360
- | enum_type_definition { $$ = static_cast<Definition *>($1); }
361
- | input_object_type_definition { $$ = static_cast<Definition *>($1); }
362
- | type_extension_definition { $$ = static_cast<Definition *>($1); }
363
- | directive_definition { $$ = static_cast<Definition *>($1); }
364
- ;
365
-
366
-
367
- /* 2.2.1 Operations */
368
- operation_definition:
369
- selection_set { $$ = new OperationDefinition(@$, strdup("query"), nullptr, nullptr, nullptr, $1); }
370
- | operation_type name_opt selection_set { $$ = new OperationDefinition(@$, $1, $2, nullptr, nullptr, $3); }
371
- | operation_type name_opt variable_definitions selection_set { $$ = new OperationDefinition(@$, $1, $2, $3, nullptr, $4); }
372
- | operation_type name_opt directives selection_set { $$ = new OperationDefinition(@$, $1, $2, nullptr, $3, $4); }
373
- | operation_type name_opt variable_definitions directives selection_set { $$ = new OperationDefinition(@$, $1, $2, $3, $4, $5); }
374
- ;
375
-
376
- operation_type: QUERY { $$ = strdup($1); }
377
- | MUTATION { $$ = strdup($1); }
378
- | SUBSCRIPTION { $$ = strdup($1); }
379
- ;
380
-
381
- variable_definitions:
382
- "(" variable_definition_list ")" { $$ = $2; }
383
- ;
384
-
385
- variable_definition_list:
386
- variable_definition { $$ = new std::vector<std::unique_ptr<VariableDefinition>>(); $$->emplace_back($1); }
387
- | variable_definition_list variable_definition { $1->emplace_back($2); $$ = $1; }
388
- ;
389
-
390
- variable: VARIABLE { $$ = new Variable(@$, new Name(@1, strdup($1))); }
391
- ;
392
-
393
- variable_definition:
394
- variable ":" type default_value_opt { $$ = new VariableDefinition(@$, $1, $3, $4); }
395
- ;
396
-
397
- default_value_opt:
398
- %empty { $$ = nullptr; }
399
- | default_value
400
- ;
401
-
402
- default_value: "=" value_const { $$ = $2; }
403
- ;
404
-
405
- selection_set:
406
- "{" selection_list "}" { $$ = new SelectionSet(@$, $2); }
407
- ;
408
-
409
- selection_set_opt:
410
- %empty { $$ = nullptr; }
411
- | selection_set
412
- ;
413
- selection_list: selection { $$ = new std::vector<std::unique_ptr<Selection>>(); $$->emplace_back($1); }
414
- | selection_list selection { $1->emplace_back($2); $$ = $1; }
415
- ;
416
-
417
- selection: field { $$ = static_cast<Selection *>($1); }
418
- | fragment_spread { $$ = static_cast<Selection *>($1); }
419
- | inline_fragment { $$ = static_cast<Selection *>($1); }
420
- ;
421
-
422
- field: name arguments_opt directives_opt selection_set_opt { $$ = new Field(@$, nullptr, $1, $2, $3, $4); }
423
- | name ":" name arguments_opt directives_opt selection_set_opt { $$ = new Field(@$, $1, $3, $4, $5, $6); }
424
- ;
425
-
426
- arguments: "(" argument_list ")" { $$ = $2; }
427
- ;
428
-
429
- arguments_opt: %empty { $$ = nullptr; }
430
- | arguments { $$ = $1; }
431
- ;
432
-
433
- argument_list: argument { $$ = new std::vector<std::unique_ptr<Argument>>(); $$->emplace_back($1); }
434
- | argument_list argument { $1->emplace_back($2); $$ = $1; }
435
- ;
436
-
437
- argument: name ":" value { $$ = new Argument(@$, $1, $3); }
438
- ;
439
-
440
- /* 2.2.6 Fragments */
441
- fragment_spread:
442
- "..." fragment_name directives_opt { $$ = new FragmentSpread(@$, $2, $3); }
443
- ;
444
-
445
- inline_fragment:
446
- "..." "on" type_condition directives_opt selection_set { $$ = new InlineFragment(@$, $3, $4, $5); }
447
- | "..." directives_opt selection_set { $$ = new InlineFragment(@$, nullptr, $2, $3); }
448
- ;
449
-
450
- fragment_definition:
451
- "fragment" fragment_name "on" type_condition directives_opt selection_set { $$ = new FragmentDefinition(@$, $2, $4, $5, $6); }
452
- ;
453
-
454
- type_condition: type_name
455
- ;
456
-
457
- /* 2.2.7 Input Values */
458
- value: variable { $$ = static_cast<Value *>($1); }
459
- | int_value { $$ = static_cast<Value *>($1); }
460
- | float_value { $$ = static_cast<Value *>($1); }
461
- | string_value { $$ = static_cast<Value *>($1); }
462
- | boolean_value { $$ = static_cast<Value *>($1); }
463
- | null_value { $$ = static_cast<Value *>($1); }
464
- | enum_value { $$ = static_cast<Value *>($1); }
465
- | list_value { $$ = static_cast<Value *>($1); }
466
- | object_value { $$ = static_cast<Value *>($1); }
467
- ;
468
-
469
- int_value: INTEGER { $$ = new IntValue(@$, strdup($1)); }
470
- ;
471
-
472
- float_value: FLOAT { $$ = new FloatValue(@$, strdup($1)); }
473
- ;
474
-
475
- string_value: STRING { $$ = new StringValue(@$, strdup($1)); }
476
- ;
477
-
478
- value_const: int_value { $$ = static_cast<Value *>($1); }
479
- | float_value { $$ = static_cast<Value *>($1); }
480
- | string_value { $$ = static_cast<Value *>($1); }
481
- | boolean_value { $$ = static_cast<Value *>($1); }
482
- | null_value { $$ = static_cast<Value *>($1); }
483
- | enum_value { $$ = static_cast<Value *>($1); }
484
- | list_value_const { $$ = static_cast<Value *>($1); }
485
- | object_value_const { $$ = static_cast<Value *>($1); }
486
- ;
487
-
488
- boolean_value: TRUE { $$ = new BooleanValue(@$, true); }
489
- | FALSE { $$ = new BooleanValue(@$, false); }
490
- ;
491
-
492
- null_value: NULL { $$ = new NullValue(@$); }
493
- ;
494
-
495
- enum_value: DIRECTIVE { $$ = new EnumValue(@$, strdup($1)); }
496
- | ENUM { $$ = new EnumValue(@$, strdup($1)); }
497
- | EXTEND { $$ = new EnumValue(@$, strdup($1)); }
498
- | FRAGMENT { $$ = new EnumValue(@$, strdup($1)); }
499
- | IDENTIFIER { $$ = new EnumValue(@$, strdup($1)); }
500
- | IMPLEMENTS { $$ = new EnumValue(@$, strdup($1)); }
501
- | INPUT { $$ = new EnumValue(@$, strdup($1)); }
502
- | INTERFACE { $$ = new EnumValue(@$, strdup($1)); }
503
- | MUTATION { $$ = new EnumValue(@$, strdup($1)); }
504
- | ON { $$ = new EnumValue(@$, strdup($1)); }
505
- | QUERY { $$ = new EnumValue(@$, strdup($1)); }
506
- | SCALAR { $$ = new EnumValue(@$, strdup($1)); }
507
- | SCHEMA { $$ = new EnumValue(@$, strdup($1)); }
508
- | SUBSCRIPTION { $$ = new EnumValue(@$, strdup($1)); }
509
- | TYPE { $$ = new EnumValue(@$, strdup($1)); }
510
- | UNION { $$ = new EnumValue(@$, strdup($1)); }
511
- ;
512
-
513
- /* 2.2.7.6 List Value */
514
-
515
- /* REVIEW: the empty case is inefficient; consider implementing
516
- ListValue manually. Don't forget to also do list_value_const. */
517
- list_value: "[" "]" { $$ = new ListValue(@$, new std::vector<std::unique_ptr<Value>>()); }
518
- | "[" value_list "]" { $$ = new ListValue(@$, $2); }
519
- ;
520
-
521
- value_list: value { $$ = new std::vector<std::unique_ptr<Value>>(); $$->emplace_back($1); }
522
- | value_list value { $1->emplace_back($2); $$ = $1; }
523
- ;
524
-
525
- list_value_const:
526
- "[" "]" { $$ = new ListValue(@$, new std::vector<std::unique_ptr<Value>>()); }
527
- | "[" value_const_list "]" { $$ = new ListValue(@$, $2); }
528
- ;
529
-
530
- value_const_list:
531
- value_const { $$ = new std::vector<std::unique_ptr<Value>>(); $$->emplace_back($1); }
532
- | value_const_list value_const { $1->emplace_back($2); $$ = $1; }
533
- ;
534
-
535
- /* 2.2.7.7 Object Value */
536
- /* REVIEW: Inefficient, like ListValue. */
537
- object_value: "{" "}" { $$ = new ObjectValue(@$, new std::vector<std::unique_ptr<ObjectField>>()); }
538
- | "{" object_field_list "}" { $$ = new ObjectValue(@$, $2); }
539
- ;
540
-
541
- object_field_list:
542
- object_field { $$ = new std::vector<std::unique_ptr<ObjectField>>(); $$->emplace_back($1); }
543
- | object_field_list object_field { $1->emplace_back($2); $$ = $1; }
544
- ;
545
-
546
- object_field: name ":" value { $$ = new ObjectField(@$, $1, $3); }
547
- ;
548
-
549
- object_value_const:
550
- "{" "}" { $$ = new ObjectValue(@$, new std::vector<std::unique_ptr<ObjectField>>()); }
551
- | "{" object_field_const_list "}" { $$ = new ObjectValue(@$, $2); }
552
- ;
553
-
554
- object_field_const_list:
555
- object_field_const { $$ = new std::vector<std::unique_ptr<ObjectField>>(); $$->emplace_back($1); }
556
- | object_field_const_list object_field_const { $1->emplace_back($2); $$ = $1; }
557
- ;
558
-
559
- object_field_const: name ":" value_const { $$ = new ObjectField(@$, $1, $3); }
560
- ;
561
-
562
- /* 2.2.10 Directives */
563
-
564
- directives: directive_list
565
- ;
566
-
567
- directives_opt: %empty { $$ = nullptr; }
568
- | directives
569
- ;
570
-
571
- directive_list: directive { $$ = new std::vector<std::unique_ptr<Directive>>(); $$->emplace_back($1); }
572
- | directive_list directive { $1->emplace_back($2); $$ = $1; }
573
- ;
574
-
575
- directive: "@" name arguments_opt { $$ = new Directive(@$, $2, $3); }
576
- ;
577
-
578
- /* 2.2.9 Types */
579
-
580
- type: type_name { $$ = static_cast<Type *>($1); }
581
- | list_type { $$ = static_cast<Type *>($1); }
582
- | non_null_type { $$ = static_cast<Type *>($1); }
583
- ;
584
-
585
- type_name: name { $$ = new NamedType(@$, $1); }
586
- ;
587
-
588
- list_type: "[" type "]" { $$ = new ListType(@$, $2); }
589
- ;
590
-
591
- non_null_type: type_name "!" { $$ = new NonNullType(@$, $1); }
592
- | list_type "!" { $$ = new NonNullType(@$, $1); }
593
- ;
594
-
595
- /* Experimental schema parsing support. */
596
-
597
- schema_definition: SCHEMA directives_opt "{" operation_type_definition_list "}" { $$ = new SchemaDefinition(@$, $2, $4); }
598
- ;
599
-
600
- operation_type_definition_list:
601
- operation_type_definition { $$ = new std::vector<std::unique_ptr<OperationTypeDefinition>>(); $$->emplace_back($1); }
602
- | operation_type_definition_list operation_type_definition { $1->emplace_back($2); $$ = $1; }
603
- ;
604
-
605
- operation_type_definition:
606
- operation_type ":" type_name { $$ = new OperationTypeDefinition(@$, $1, $3); }
607
- ;
608
-
609
- scalar_type_definition: SCALAR name directives_opt { $$ = new ScalarTypeDefinition(@$, $2, $3); }
610
- ;
611
-
612
- object_type_definition: TYPE name implements_interfaces_opt directives_opt "{" field_definition_list "}" { $$ = new ObjectTypeDefinition(@$, $2, $3, $4, $6); }
613
- ;
614
-
615
- implements_interfaces_opt: %empty { $$ = nullptr; }
616
- | IMPLEMENTS type_name_list { $$ = $2; }
617
- ;
618
-
619
- type_name_list: type_name { $$ = new std::vector<std::unique_ptr<NamedType>>(); $$->emplace_back($1); }
620
- | type_name_list type_name { $1->emplace_back($2); $$ = $1; }
621
- ;
622
-
623
- field_definition: name arguments_definition_opt ":" type directives_opt { $$ = new FieldDefinition(@$, $1, $2, $4, $5); }
624
- ;
625
-
626
- field_definition_list:
627
- field_definition { $$ = new std::vector<std::unique_ptr<FieldDefinition>>(); $$->emplace_back($1); }
628
- | field_definition_list field_definition { $1->emplace_back($2); $$ = $1; }
629
- ;
630
-
631
- arguments_definition_opt: %empty { $$ = nullptr; }
632
- | arguments_definition { $$ = $1; }
633
- ;
634
-
635
- arguments_definition: "(" input_value_definition_list ")" { $$ = $2; }
636
- ;
637
-
638
- input_value_definition_list: input_value_definition { $$ = new std::vector<std::unique_ptr<InputValueDefinition>>(); $$->emplace_back($1); }
639
- | input_value_definition_list input_value_definition { $1->emplace_back($2); $$ = $1; }
640
- ;
641
-
642
- input_value_definition: name ":" type default_value_opt directives_opt { $$ = new InputValueDefinition(@$, $1, $3, $4, $5); }
643
-
644
- interface_type_definition: INTERFACE name directives_opt "{" field_definition_list "}" { $$ = new InterfaceTypeDefinition(@$, $2, $3, $5); }
645
- ;
646
-
647
- union_type_definition: UNION name directives_opt "=" union_members { $$ = new UnionTypeDefinition(@$, $2, $3, $5); }
648
- ;
649
-
650
- union_members: type_name { $$ = new std::vector<std::unique_ptr<NamedType>>(); $$->emplace_back($1); }
651
- | union_members "|" type_name { $1->emplace_back($3); $$ = $1; }
652
- ;
653
-
654
- enum_type_definition: ENUM name directives_opt "{" enum_value_definition_list "}" { $$ = new EnumTypeDefinition(@$, $2, $3, $5); }
655
- ;
656
-
657
- enum_value_definition: name directives_opt { $$ = new EnumValueDefinition(@$, $1, $2); }
658
- ;
659
-
660
- enum_value_definition_list:
661
- enum_value_definition { $$ = new std::vector<std::unique_ptr<EnumValueDefinition>>(); $$->emplace_back($1); }
662
- | enum_value_definition_list enum_value_definition { $1->emplace_back($2); $$ = $1; }
663
- ;
664
-
665
- input_object_type_definition: INPUT name directives_opt "{" input_value_definition_list "}" { $$ = new InputObjectTypeDefinition(@$, $2, $3, $5); }
666
- ;
667
-
668
- type_extension_definition: EXTEND object_type_definition { $$ = new TypeExtensionDefinition(@$, $2); }
669
- ;
670
-
671
- directive_definition: DIRECTIVE "@" name arguments_definition_opt ON directive_locations { $$ = new DirectiveDefinition(@$, $3, $4, $6); }
672
- ;
673
-
674
- directive_locations:
675
- name { $$ = new std::vector<std::unique_ptr<Name>>(); $$->emplace_back($1); }
676
- | directive_locations "|" name { $1->emplace_back($3); $$ = $1; }
677
- ;
678
-
679
- %%
680
-
681
- void yy::GraphQLParserImpl::error(const yy::location &loc, const std::string &str) {
682
- std::ostringstream out;
683
- out << loc << ": " << str;
684
- if (outError) {
685
- *outError = strdup(out.str().c_str());
686
- }
687
- }
688
-
689
- /* Workaround for syntax_error ctor being marked inline, which causes link
690
- errors if used from lexer.lpp. */
691
- yy::GraphQLParserImpl::syntax_error make_error(const yy::location &loc, const std::string &str) {
692
- return yy::GraphQLParserImpl::syntax_error(loc, str);
693
- }