graphql 1.8.7 → 1.9.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (368) hide show
  1. checksums.yaml +4 -4
  2. data/lib/generators/graphql/install_generator.rb +2 -1
  3. data/lib/generators/graphql/scalar_generator.rb +20 -0
  4. data/lib/generators/graphql/templates/base_scalar.erb +4 -0
  5. data/lib/generators/graphql/templates/scalar.erb +13 -0
  6. data/lib/graphql/analysis/ast/analyzer.rb +62 -0
  7. data/lib/graphql/analysis/ast/field_usage.rb +28 -0
  8. data/lib/graphql/analysis/ast/max_query_complexity.rb +23 -0
  9. data/lib/graphql/analysis/ast/max_query_depth.rb +18 -0
  10. data/lib/graphql/analysis/ast/query_complexity.rb +114 -0
  11. data/lib/graphql/analysis/ast/query_depth.rb +66 -0
  12. data/lib/graphql/analysis/ast/visitor.rb +255 -0
  13. data/lib/graphql/analysis/ast.rb +82 -0
  14. data/lib/graphql/analysis.rb +1 -0
  15. data/lib/graphql/argument.rb +5 -0
  16. data/lib/graphql/authorization.rb +1 -0
  17. data/lib/graphql/backwards_compatibility.rb +1 -1
  18. data/lib/graphql/base_type.rb +1 -1
  19. data/lib/graphql/compatibility/execution_specification/specification_schema.rb +1 -2
  20. data/lib/graphql/compatibility/schema_parser_specification.rb +2 -6
  21. data/lib/graphql/dig.rb +19 -0
  22. data/lib/graphql/directive/include_directive.rb +1 -7
  23. data/lib/graphql/directive/skip_directive.rb +1 -8
  24. data/lib/graphql/directive.rb +13 -1
  25. data/lib/graphql/enum_type.rb +8 -0
  26. data/lib/graphql/execution/execute.rb +36 -17
  27. data/lib/graphql/execution/instrumentation.rb +2 -0
  28. data/lib/graphql/execution/interpreter/execution_errors.rb +29 -0
  29. data/lib/graphql/execution/interpreter/hash_response.rb +46 -0
  30. data/lib/graphql/execution/interpreter/resolve.rb +58 -0
  31. data/lib/graphql/execution/interpreter/runtime.rb +597 -0
  32. data/lib/graphql/execution/interpreter.rb +99 -0
  33. data/lib/graphql/execution/lazy.rb +8 -1
  34. data/lib/graphql/execution/lookahead.rb +351 -0
  35. data/lib/graphql/execution/multiplex.rb +37 -29
  36. data/lib/graphql/execution.rb +2 -0
  37. data/lib/graphql/execution_error.rb +1 -1
  38. data/lib/graphql/field.rb +1 -7
  39. data/lib/graphql/integer_encoding_error.rb +12 -0
  40. data/lib/graphql/internal_representation/rewrite.rb +127 -142
  41. data/lib/graphql/introspection/dynamic_fields.rb +8 -2
  42. data/lib/graphql/introspection/entry_points.rb +11 -6
  43. data/lib/graphql/introspection/enum_value_type.rb +4 -0
  44. data/lib/graphql/introspection/schema_type.rb +7 -2
  45. data/lib/graphql/introspection/type_type.rb +9 -5
  46. data/lib/graphql/invalid_null_error.rb +1 -1
  47. data/lib/graphql/language/block_string.rb +37 -0
  48. data/lib/graphql/language/document_from_schema_definition.rb +10 -7
  49. data/lib/graphql/language/lexer.rb +55 -36
  50. data/lib/graphql/language/lexer.rl +8 -3
  51. data/lib/graphql/language/nodes.rb +440 -362
  52. data/lib/graphql/language/parser.rb +56 -56
  53. data/lib/graphql/language/parser.y +12 -12
  54. data/lib/graphql/language/printer.rb +2 -2
  55. data/lib/graphql/language/visitor.rb +158 -15
  56. data/lib/graphql/language.rb +0 -1
  57. data/lib/graphql/literal_validation_error.rb +6 -0
  58. data/lib/graphql/query/arguments.rb +3 -2
  59. data/lib/graphql/query/arguments_cache.rb +1 -1
  60. data/lib/graphql/query/context.rb +14 -5
  61. data/lib/graphql/query/executor.rb +1 -1
  62. data/lib/graphql/query/result.rb +1 -1
  63. data/lib/graphql/query/validation_pipeline.rb +35 -11
  64. data/lib/graphql/query/variable_validation_error.rb +10 -1
  65. data/lib/graphql/query.rb +16 -2
  66. data/lib/graphql/relay/base_connection.rb +2 -0
  67. data/lib/graphql/relay/connection_instrumentation.rb +3 -1
  68. data/lib/graphql/relay/connection_resolve.rb +1 -1
  69. data/lib/graphql/relay/node.rb +2 -28
  70. data/lib/graphql/relay/relation_connection.rb +1 -1
  71. data/lib/graphql/schema/argument.rb +13 -5
  72. data/lib/graphql/schema/base_64_encoder.rb +4 -4
  73. data/lib/graphql/schema/build_from_definition.rb +2 -4
  74. data/lib/graphql/schema/default_type_error.rb +1 -1
  75. data/lib/graphql/schema/directive/feature.rb +66 -0
  76. data/lib/graphql/schema/directive/include.rb +25 -0
  77. data/lib/graphql/schema/directive/skip.rb +25 -0
  78. data/lib/graphql/schema/directive/transform.rb +48 -0
  79. data/lib/graphql/schema/directive.rb +103 -0
  80. data/lib/graphql/schema/enum_value.rb +3 -2
  81. data/lib/graphql/schema/field/connection_extension.rb +50 -0
  82. data/lib/graphql/schema/field/scope_extension.rb +18 -0
  83. data/lib/graphql/schema/field.rb +273 -64
  84. data/lib/graphql/schema/field_extension.rb +69 -0
  85. data/lib/graphql/schema/input_object.rb +16 -8
  86. data/lib/graphql/schema/interface.rb +1 -0
  87. data/lib/graphql/schema/loader.rb +22 -16
  88. data/lib/graphql/schema/member/base_dsl_methods.rb +8 -2
  89. data/lib/graphql/schema/member/build_type.rb +33 -1
  90. data/lib/graphql/schema/member/has_arguments.rb +6 -2
  91. data/lib/graphql/schema/member/has_fields.rb +18 -70
  92. data/lib/graphql/schema/member/has_path.rb +25 -0
  93. data/lib/graphql/schema/member/instrumentation.rb +10 -7
  94. data/lib/graphql/schema/member.rb +2 -0
  95. data/lib/graphql/schema/mutation.rb +6 -48
  96. data/lib/graphql/schema/non_null.rb +5 -1
  97. data/lib/graphql/schema/object.rb +18 -4
  98. data/lib/graphql/schema/printer.rb +1 -1
  99. data/lib/graphql/schema/relay_classic_mutation.rb +42 -9
  100. data/lib/graphql/schema/resolver/has_payload_type.rb +65 -0
  101. data/lib/graphql/schema/resolver.rb +45 -20
  102. data/lib/graphql/schema/subscription.rb +97 -0
  103. data/lib/graphql/schema/traversal.rb +11 -7
  104. data/lib/graphql/schema.rb +186 -38
  105. data/lib/graphql/static_validation/all_rules.rb +3 -2
  106. data/lib/graphql/static_validation/base_visitor.rb +199 -0
  107. data/lib/graphql/static_validation/default_visitor.rb +15 -0
  108. data/lib/graphql/static_validation/definition_dependencies.rb +62 -68
  109. data/lib/graphql/static_validation/{message.rb → error.rb} +11 -11
  110. data/lib/graphql/static_validation/interpreter_visitor.rb +14 -0
  111. data/lib/graphql/static_validation/literal_validator.rb +54 -11
  112. data/lib/graphql/static_validation/no_validate_visitor.rb +10 -0
  113. data/lib/graphql/static_validation/rules/argument_literals_are_compatible.rb +87 -16
  114. data/lib/graphql/static_validation/rules/argument_literals_are_compatible_error.rb +31 -0
  115. data/lib/graphql/static_validation/rules/argument_names_are_unique.rb +11 -11
  116. data/lib/graphql/static_validation/rules/argument_names_are_unique_error.rb +30 -0
  117. data/lib/graphql/static_validation/rules/arguments_are_defined.rb +52 -8
  118. data/lib/graphql/static_validation/rules/arguments_are_defined_error.rb +35 -0
  119. data/lib/graphql/static_validation/rules/directives_are_defined.rb +12 -15
  120. data/lib/graphql/static_validation/rules/directives_are_defined_error.rb +29 -0
  121. data/lib/graphql/static_validation/rules/directives_are_in_valid_locations.rb +19 -14
  122. data/lib/graphql/static_validation/rules/directives_are_in_valid_locations_error.rb +31 -0
  123. data/lib/graphql/static_validation/rules/fields_are_defined_on_type.rb +17 -19
  124. data/lib/graphql/static_validation/rules/fields_are_defined_on_type_error.rb +32 -0
  125. data/lib/graphql/static_validation/rules/fields_have_appropriate_selections.rb +30 -14
  126. data/lib/graphql/static_validation/rules/fields_have_appropriate_selections_error.rb +31 -0
  127. data/lib/graphql/static_validation/rules/fields_will_merge.rb +356 -29
  128. data/lib/graphql/static_validation/rules/fields_will_merge_error.rb +32 -0
  129. data/lib/graphql/static_validation/rules/fragment_names_are_unique.rb +20 -13
  130. data/lib/graphql/static_validation/rules/fragment_names_are_unique_error.rb +29 -0
  131. data/lib/graphql/static_validation/rules/fragment_spreads_are_possible.rb +37 -29
  132. data/lib/graphql/static_validation/rules/fragment_spreads_are_possible_error.rb +35 -0
  133. data/lib/graphql/static_validation/rules/fragment_types_exist.rb +25 -17
  134. data/lib/graphql/static_validation/rules/fragment_types_exist_error.rb +29 -0
  135. data/lib/graphql/static_validation/rules/fragments_are_finite.rb +12 -10
  136. data/lib/graphql/static_validation/rules/fragments_are_finite_error.rb +29 -0
  137. data/lib/graphql/static_validation/rules/fragments_are_named.rb +7 -11
  138. data/lib/graphql/static_validation/rules/fragments_are_named_error.rb +26 -0
  139. data/lib/graphql/static_validation/rules/fragments_are_on_composite_types.rb +16 -16
  140. data/lib/graphql/static_validation/rules/fragments_are_on_composite_types_error.rb +30 -0
  141. data/lib/graphql/static_validation/rules/fragments_are_used.rb +21 -14
  142. data/lib/graphql/static_validation/rules/fragments_are_used_error.rb +29 -0
  143. data/lib/graphql/static_validation/rules/mutation_root_exists.rb +10 -14
  144. data/lib/graphql/static_validation/rules/mutation_root_exists_error.rb +26 -0
  145. data/lib/graphql/static_validation/rules/no_definitions_are_present.rb +30 -30
  146. data/lib/graphql/static_validation/rules/no_definitions_are_present_error.rb +25 -0
  147. data/lib/graphql/static_validation/rules/operation_names_are_valid.rb +25 -17
  148. data/lib/graphql/static_validation/rules/operation_names_are_valid_error.rb +28 -0
  149. data/lib/graphql/static_validation/rules/required_arguments_are_present.rb +17 -18
  150. data/lib/graphql/static_validation/rules/required_arguments_are_present_error.rb +35 -0
  151. data/lib/graphql/static_validation/rules/required_input_object_attributes_are_present.rb +47 -0
  152. data/lib/graphql/static_validation/rules/required_input_object_attributes_are_present_error.rb +35 -0
  153. data/lib/graphql/static_validation/rules/subscription_root_exists.rb +10 -14
  154. data/lib/graphql/static_validation/rules/subscription_root_exists_error.rb +26 -0
  155. data/lib/graphql/static_validation/rules/unique_directives_per_location.rb +28 -17
  156. data/lib/graphql/static_validation/rules/unique_directives_per_location_error.rb +29 -0
  157. data/lib/graphql/static_validation/rules/variable_default_values_are_correctly_typed.rb +35 -27
  158. data/lib/graphql/static_validation/rules/variable_default_values_are_correctly_typed_error.rb +39 -0
  159. data/lib/graphql/static_validation/rules/variable_names_are_unique.rb +15 -14
  160. data/lib/graphql/static_validation/rules/variable_names_are_unique_error.rb +29 -0
  161. data/lib/graphql/static_validation/rules/variable_usages_are_allowed.rb +41 -30
  162. data/lib/graphql/static_validation/rules/variable_usages_are_allowed_error.rb +38 -0
  163. data/lib/graphql/static_validation/rules/variables_are_input_types.rb +18 -14
  164. data/lib/graphql/static_validation/rules/variables_are_input_types_error.rb +32 -0
  165. data/lib/graphql/static_validation/rules/variables_are_used_and_defined.rb +73 -65
  166. data/lib/graphql/static_validation/rules/variables_are_used_and_defined_error.rb +37 -0
  167. data/lib/graphql/static_validation/validation_context.rb +8 -51
  168. data/lib/graphql/static_validation/validator.rb +23 -15
  169. data/lib/graphql/static_validation.rb +5 -3
  170. data/lib/graphql/subscriptions/action_cable_subscriptions.rb +21 -2
  171. data/lib/graphql/subscriptions/event.rb +28 -5
  172. data/lib/graphql/subscriptions/subscription_root.rb +66 -0
  173. data/lib/graphql/subscriptions.rb +16 -2
  174. data/lib/graphql/tracing/active_support_notifications_tracing.rb +0 -1
  175. data/lib/graphql/tracing/appsignal_tracing.rb +1 -1
  176. data/lib/graphql/tracing/data_dog_tracing.rb +1 -1
  177. data/lib/graphql/tracing/new_relic_tracing.rb +3 -3
  178. data/lib/graphql/tracing/platform_tracing.rb +17 -1
  179. data/lib/graphql/tracing/prometheus_tracing.rb +1 -1
  180. data/lib/graphql/tracing/scout_tracing.rb +1 -1
  181. data/lib/graphql/tracing/skylight_tracing.rb +3 -3
  182. data/lib/graphql/tracing.rb +8 -8
  183. data/lib/graphql/types/float.rb +1 -1
  184. data/lib/graphql/types/int.rb +11 -2
  185. data/lib/graphql/types/iso_8601_date_time.rb +15 -1
  186. data/lib/graphql/types/relay/base_connection.rb +15 -1
  187. data/lib/graphql/types/relay/node.rb +0 -1
  188. data/lib/graphql/types/relay/node_field.rb +43 -0
  189. data/lib/graphql/types/relay/nodes_field.rb +45 -0
  190. data/lib/graphql/types/relay.rb +2 -0
  191. data/lib/graphql/unauthorized_error.rb +4 -0
  192. data/lib/graphql/unauthorized_field_error.rb +23 -0
  193. data/lib/graphql/upgrader/member.rb +5 -0
  194. data/lib/graphql/version.rb +1 -1
  195. data/lib/graphql.rb +6 -1
  196. data/readme.md +7 -7
  197. data/spec/dummy/Gemfile +1 -1
  198. data/spec/dummy/Gemfile.lock +157 -0
  199. data/spec/dummy/app/channels/graphql_channel.rb +22 -11
  200. data/spec/dummy/config/locales/en.yml +1 -1
  201. data/spec/dummy/log/test.log +199 -0
  202. data/spec/dummy/test/test_helper.rb +1 -0
  203. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/4w/4wzXRZrAkwKdgYaSE0pid5eB-fer8vSfSku_NPg4rMA.cache +0 -0
  204. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/7I/7IHVBiJT06QSpgLpLoJIxboQ0B-D_tMTxsvoezBTV3Q.cache +1 -0
  205. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/8w/8wY_SKagj8wHuwGNAAf6JnQ8joMbC6cEYpHrTAI8Urc.cache +1 -0
  206. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/AK/AKzz1u6bGb4auXcrObA_g5LL-oV0ejNGa448AgAi_WQ.cache +1 -0
  207. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/ET/ETW4uxvaYpruL8y6_ZptUH82ZowMaHIqvg5WexBFdEM.cache +3 -0
  208. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/F1/F1TWpjjyA56k9Z90n5B3xRn7DUdGjX73QCkYC6k07JQ.cache +0 -0
  209. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/F8/F8MUNRzORGFgr329fNM0xLaoWCXdv3BIalT7dsvLfjs.cache +2 -0
  210. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/KB/KB07ZaKNC5uXJ7TjLi-WqnY6g7dq8wWp_8N3HNjBNxg.cache +2 -0
  211. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ms/MsKSimH_UCB-H1tLvDABDHuvGciuoW6kVqQWDrXU5FQ.cache +0 -0
  212. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Mt/Mtci-Kim50aPOmeClD4AIicKn1d1WJ0n454IjSd94sk.cache +0 -0
  213. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/QH/QHt3Tc1Y6M66Oo_pDuMyWrQNs4Pp3SMeZR5K1wJj2Ts.cache +1 -0
  214. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/XU/XU4k1OXnfMils5SrirorPvDSyDSqiOWLZNtmAH1HH8k.cache +0 -0
  215. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/ZI/ZIof7mZxWWCnraIFOCuV6a8QRWzKJXJnx2Xd7C0ZyX0.cache +1 -0
  216. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/cG/cGc_puuPS5pZKgUcy1Y_i1L6jl5UtsiIrMH59rTzR6c.cache +3 -0
  217. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/df/dfro_B6bx3KP1Go-7jEOqqZ2j4hVRseXIc3es9PKQno.cache +1 -0
  218. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/jO/jO1DfbqnG0mTULsjJJANc3fefrG2zt7DIMmcptMT628.cache +1 -0
  219. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/pE/pE7gO6pQ-z187Swb4hT554wmqsq-cNzgPWLrCz-LQQQ.cache +0 -0
  220. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/r9/r9iU1l58a6rxkZSW5RSC52_tD-_UQuHxoMVnkfJ7Mhs.cache +1 -0
  221. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/xi/xitPPFfPIyDMpaznV0sBBcw8eSCV8PJcLLWin78sCgE.cache +0 -0
  222. data/spec/dummy/tmp/screenshots/failures_test_it_handles_subscriptions.png +0 -0
  223. data/spec/graphql/analysis/analyze_query_spec.rb +1 -1
  224. data/spec/graphql/analysis/ast/field_usage_spec.rb +51 -0
  225. data/spec/graphql/analysis/ast/max_query_complexity_spec.rb +120 -0
  226. data/spec/graphql/analysis/ast/max_query_depth_spec.rb +114 -0
  227. data/spec/graphql/analysis/ast/query_complexity_spec.rb +299 -0
  228. data/spec/graphql/analysis/ast/query_depth_spec.rb +108 -0
  229. data/spec/graphql/analysis/ast_spec.rb +269 -0
  230. data/spec/graphql/authorization_spec.rb +120 -23
  231. data/spec/graphql/base_type_spec.rb +6 -4
  232. data/spec/graphql/enum_type_spec.rb +6 -1
  233. data/spec/graphql/execution/execute_spec.rb +9 -9
  234. data/spec/graphql/execution/instrumentation_spec.rb +19 -0
  235. data/spec/graphql/execution/interpreter_spec.rb +485 -0
  236. data/spec/graphql/execution/lazy_spec.rb +67 -1
  237. data/spec/graphql/execution/lookahead_spec.rb +363 -0
  238. data/spec/graphql/execution/multiplex_spec.rb +31 -3
  239. data/spec/graphql/execution/typecast_spec.rb +20 -20
  240. data/spec/graphql/execution_error_spec.rb +110 -96
  241. data/spec/graphql/field_spec.rb +1 -1
  242. data/spec/graphql/input_object_type_spec.rb +13 -352
  243. data/spec/graphql/int_type_spec.rb +19 -0
  244. data/spec/graphql/interface_type_spec.rb +4 -4
  245. data/spec/graphql/internal_representation/rewrite_spec.rb +2 -0
  246. data/spec/graphql/introspection/input_value_type_spec.rb +1 -1
  247. data/spec/graphql/introspection/type_type_spec.rb +1 -2
  248. data/spec/graphql/language/document_from_schema_definition_spec.rb +2 -2
  249. data/spec/graphql/language/lexer_spec.rb +72 -3
  250. data/spec/graphql/language/nodes_spec.rb +20 -0
  251. data/spec/graphql/language/printer_spec.rb +18 -6
  252. data/spec/graphql/language/visitor_spec.rb +320 -14
  253. data/spec/graphql/non_null_type_spec.rb +1 -1
  254. data/spec/graphql/object_type_spec.rb +32 -27
  255. data/spec/graphql/query/arguments_spec.rb +21 -0
  256. data/spec/graphql/query/context_spec.rb +28 -0
  257. data/spec/graphql/query/executor_spec.rb +40 -36
  258. data/spec/graphql/query_spec.rb +12 -6
  259. data/spec/graphql/schema/argument_spec.rb +35 -1
  260. data/spec/graphql/schema/build_from_definition_spec.rb +144 -29
  261. data/spec/graphql/schema/catchall_middleware_spec.rb +16 -15
  262. data/spec/graphql/schema/directive/feature_spec.rb +81 -0
  263. data/spec/graphql/schema/directive/transform_spec.rb +39 -0
  264. data/spec/graphql/schema/enum_spec.rb +12 -3
  265. data/spec/graphql/schema/enum_value_spec.rb +11 -0
  266. data/spec/graphql/schema/field_extension_spec.rb +115 -0
  267. data/spec/graphql/schema/field_spec.rb +47 -7
  268. data/spec/graphql/schema/input_object_spec.rb +95 -0
  269. data/spec/graphql/schema/instrumentation_spec.rb +3 -0
  270. data/spec/graphql/schema/interface_spec.rb +8 -2
  271. data/spec/graphql/schema/introspection_system_spec.rb +9 -1
  272. data/spec/graphql/schema/loader_spec.rb +5 -0
  273. data/spec/graphql/schema/member/accepts_definition_spec.rb +4 -0
  274. data/spec/graphql/schema/member/build_type_spec.rb +46 -0
  275. data/spec/graphql/schema/member/scoped_spec.rb +19 -3
  276. data/spec/graphql/schema/mutation_spec.rb +5 -3
  277. data/spec/graphql/schema/object_spec.rb +9 -1
  278. data/spec/graphql/schema/printer_spec.rb +255 -93
  279. data/spec/graphql/schema/relay_classic_mutation_spec.rb +133 -0
  280. data/spec/graphql/schema/resolver_spec.rb +173 -9
  281. data/spec/graphql/schema/scalar_spec.rb +6 -0
  282. data/spec/graphql/schema/subscription_spec.rb +416 -0
  283. data/spec/graphql/schema/traversal_spec.rb +10 -10
  284. data/spec/graphql/schema/type_expression_spec.rb +2 -2
  285. data/spec/graphql/schema/union_spec.rb +7 -0
  286. data/spec/graphql/schema/validation_spec.rb +1 -1
  287. data/spec/graphql/schema/warden_spec.rb +145 -88
  288. data/spec/graphql/static_validation/rules/argument_literals_are_compatible_spec.rb +213 -73
  289. data/spec/graphql/static_validation/rules/argument_names_are_unique_spec.rb +2 -2
  290. data/spec/graphql/static_validation/rules/arguments_are_defined_spec.rb +72 -29
  291. data/spec/graphql/static_validation/rules/directives_are_defined_spec.rb +4 -2
  292. data/spec/graphql/static_validation/rules/directives_are_in_valid_locations_spec.rb +4 -2
  293. data/spec/graphql/static_validation/rules/fields_are_defined_on_type_spec.rb +10 -5
  294. data/spec/graphql/static_validation/rules/fields_have_appropriate_selections_spec.rb +10 -5
  295. data/spec/graphql/static_validation/rules/fields_will_merge_spec.rb +131 -5
  296. data/spec/graphql/static_validation/rules/fragment_names_are_unique_spec.rb +2 -1
  297. data/spec/graphql/static_validation/rules/fragment_spreads_are_possible_spec.rb +6 -3
  298. data/spec/graphql/static_validation/rules/fragment_types_exist_spec.rb +4 -2
  299. data/spec/graphql/static_validation/rules/fragments_are_finite_spec.rb +4 -2
  300. data/spec/graphql/static_validation/rules/fragments_are_named_spec.rb +2 -1
  301. data/spec/graphql/static_validation/rules/fragments_are_on_composite_types_spec.rb +6 -3
  302. data/spec/graphql/static_validation/rules/fragments_are_used_spec.rb +22 -2
  303. data/spec/graphql/static_validation/rules/mutation_root_exists_spec.rb +2 -1
  304. data/spec/graphql/static_validation/rules/operation_names_are_valid_spec.rb +6 -3
  305. data/spec/graphql/static_validation/rules/required_arguments_are_present_spec.rb +13 -4
  306. data/spec/graphql/static_validation/rules/required_input_object_attributes_are_present_spec.rb +58 -0
  307. data/spec/graphql/static_validation/rules/subscription_root_exists_spec.rb +2 -1
  308. data/spec/graphql/static_validation/rules/unique_directives_per_location_spec.rb +14 -7
  309. data/spec/graphql/static_validation/rules/variable_default_values_are_correctly_typed_spec.rb +14 -7
  310. data/spec/graphql/static_validation/rules/variable_usages_are_allowed_spec.rb +8 -4
  311. data/spec/graphql/static_validation/rules/variables_are_input_types_spec.rb +8 -4
  312. data/spec/graphql/static_validation/rules/variables_are_used_and_defined_spec.rb +23 -3
  313. data/spec/graphql/static_validation/type_stack_spec.rb +10 -19
  314. data/spec/graphql/static_validation/validator_spec.rb +50 -2
  315. data/spec/graphql/subscriptions_spec.rb +27 -16
  316. data/spec/graphql/tracing/new_relic_tracing_spec.rb +16 -0
  317. data/spec/graphql/tracing/platform_tracing_spec.rb +59 -37
  318. data/spec/graphql/tracing/prometheus_tracing_spec.rb +3 -0
  319. data/spec/graphql/tracing/skylight_tracing_spec.rb +16 -0
  320. data/spec/graphql/types/iso_8601_date_time_spec.rb +29 -2
  321. data/spec/graphql/union_type_spec.rb +2 -2
  322. data/spec/graphql/upgrader/member_spec.rb +67 -0
  323. data/spec/{graphql → integration/mongoid/graphql}/relay/mongo_relation_connection_spec.rb +11 -22
  324. data/spec/integration/mongoid/spec_helper.rb +2 -0
  325. data/spec/{support → integration/mongoid}/star_trek/data.rb +0 -0
  326. data/spec/{support → integration/mongoid}/star_trek/schema.rb +56 -34
  327. data/spec/{support/star_wars → integration/rails}/data.rb +1 -0
  328. data/spec/{support → integration/rails/generators}/base_generator_test.rb +0 -0
  329. data/spec/{generators → integration/rails/generators}/graphql/enum_generator_spec.rb +0 -0
  330. data/spec/{generators → integration/rails/generators}/graphql/install_generator_spec.rb +1 -1
  331. data/spec/{generators → integration/rails/generators}/graphql/interface_generator_spec.rb +0 -0
  332. data/spec/{generators → integration/rails/generators}/graphql/loader_generator_spec.rb +0 -0
  333. data/spec/{generators → integration/rails/generators}/graphql/mutation_generator_spec.rb +0 -0
  334. data/spec/{generators → integration/rails/generators}/graphql/object_generator_spec.rb +0 -0
  335. data/spec/integration/rails/generators/graphql/scalar_generator_spec.rb +28 -0
  336. data/spec/{generators → integration/rails/generators}/graphql/union_generator_spec.rb +0 -0
  337. data/spec/integration/rails/graphql/input_object_type_spec.rb +364 -0
  338. data/spec/{graphql → integration/rails/graphql}/query/variables_spec.rb +7 -7
  339. data/spec/{graphql → integration/rails/graphql}/relay/array_connection_spec.rb +9 -9
  340. data/spec/{graphql → integration/rails/graphql}/relay/base_connection_spec.rb +11 -3
  341. data/spec/{graphql → integration/rails/graphql}/relay/connection_instrumentation_spec.rb +19 -22
  342. data/spec/{graphql → integration/rails/graphql}/relay/connection_resolve_spec.rb +16 -0
  343. data/spec/{graphql → integration/rails/graphql}/relay/connection_type_spec.rb +0 -0
  344. data/spec/{graphql → integration/rails/graphql}/relay/edge_spec.rb +0 -0
  345. data/spec/{graphql → integration/rails/graphql}/relay/mutation_spec.rb +48 -0
  346. data/spec/{graphql → integration/rails/graphql}/relay/node_spec.rb +0 -0
  347. data/spec/{graphql → integration/rails/graphql}/relay/page_info_spec.rb +22 -22
  348. data/spec/{graphql → integration/rails/graphql}/relay/range_add_spec.rb +4 -4
  349. data/spec/{graphql → integration/rails/graphql}/relay/relation_connection_spec.rb +56 -27
  350. data/spec/{graphql → integration/rails/graphql}/schema_spec.rb +15 -11
  351. data/spec/{graphql → integration/rails/graphql}/tracing/active_support_notifications_tracing_spec.rb +16 -9
  352. data/spec/integration/rails/spec_helper.rb +25 -0
  353. data/spec/integration/tmp/app/graphql/types/family_type.rb +9 -0
  354. data/spec/spec_helper.rb +23 -39
  355. data/spec/support/dummy/data.rb +20 -17
  356. data/spec/support/dummy/schema.rb +315 -305
  357. data/spec/support/error_bubbling_helpers.rb +23 -0
  358. data/spec/support/jazz.rb +213 -46
  359. data/spec/support/lazy_helpers.rb +69 -27
  360. data/spec/support/new_relic.rb +3 -0
  361. data/spec/support/skylight.rb +3 -0
  362. data/spec/support/star_wars/schema.rb +131 -81
  363. data/spec/support/static_validation_helpers.rb +9 -5
  364. metadata +418 -261
  365. data/lib/graphql/language/comments.rb +0 -45
  366. data/lib/graphql/static_validation/arguments_validator.rb +0 -50
  367. data/spec/graphql/schema/member/has_fields_spec.rb +0 -129
  368. data/spec/rails_dependency_sanity_spec.rb +0 -14
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: graphql
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.8.7
4
+ version: 1.9.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Robert Mosolgo
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-08-09 00:00:00.000000000 Z
11
+ date: 2019-02-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: benchmark-ips
@@ -66,20 +66,6 @@ dependencies:
66
66
  - - "~>"
67
67
  - !ruby/object:Gem::Version
68
68
  version: '2.12'
69
- - !ruby/object:Gem::Dependency
70
- name: guard-bundler
71
- requirement: !ruby/object:Gem::Requirement
72
- requirements:
73
- - - "~>"
74
- - !ruby/object:Gem::Version
75
- version: '2.1'
76
- type: :development
77
- prerelease: false
78
- version_requirements: !ruby/object:Gem::Requirement
79
- requirements:
80
- - - "~>"
81
- - !ruby/object:Gem::Version
82
- version: '2.1'
83
69
  - !ruby/object:Gem::Dependency
84
70
  name: guard-minitest
85
71
  requirement: !ruby/object:Gem::Requirement
@@ -249,7 +235,7 @@ dependencies:
249
235
  - !ruby/object:Gem::Version
250
236
  version: '0'
251
237
  - !ruby/object:Gem::Dependency
252
- name: sequel
238
+ name: parser
253
239
  requirement: !ruby/object:Gem::Requirement
254
240
  requirements:
255
241
  - - ">="
@@ -263,7 +249,7 @@ dependencies:
263
249
  - !ruby/object:Gem::Version
264
250
  version: '0'
265
251
  - !ruby/object:Gem::Dependency
266
- name: parser
252
+ name: jekyll
267
253
  requirement: !ruby/object:Gem::Requirement
268
254
  requirements:
269
255
  - - ">="
@@ -277,7 +263,7 @@ dependencies:
277
263
  - !ruby/object:Gem::Version
278
264
  version: '0'
279
265
  - !ruby/object:Gem::Dependency
280
- name: jekyll
266
+ name: yard
281
267
  requirement: !ruby/object:Gem::Requirement
282
268
  requirements:
283
269
  - - ">="
@@ -291,7 +277,7 @@ dependencies:
291
277
  - !ruby/object:Gem::Version
292
278
  version: '0'
293
279
  - !ruby/object:Gem::Dependency
294
- name: yard
280
+ name: jekyll-algolia
295
281
  requirement: !ruby/object:Gem::Requirement
296
282
  requirements:
297
283
  - - ">="
@@ -304,6 +290,34 @@ dependencies:
304
290
  - - ">="
305
291
  - !ruby/object:Gem::Version
306
292
  version: '0'
293
+ - !ruby/object:Gem::Dependency
294
+ name: jekyll-redirect-from
295
+ requirement: !ruby/object:Gem::Requirement
296
+ requirements:
297
+ - - ">="
298
+ - !ruby/object:Gem::Version
299
+ version: '0'
300
+ type: :development
301
+ prerelease: false
302
+ version_requirements: !ruby/object:Gem::Requirement
303
+ requirements:
304
+ - - ">="
305
+ - !ruby/object:Gem::Version
306
+ version: '0'
307
+ - !ruby/object:Gem::Dependency
308
+ name: m
309
+ requirement: !ruby/object:Gem::Requirement
310
+ requirements:
311
+ - - "~>"
312
+ - !ruby/object:Gem::Version
313
+ version: 1.5.0
314
+ type: :development
315
+ prerelease: false
316
+ version_requirements: !ruby/object:Gem::Requirement
317
+ requirements:
318
+ - - "~>"
319
+ - !ruby/object:Gem::Version
320
+ version: 1.5.0
307
321
  description: A plain-Ruby implementation of GraphQL.
308
322
  email:
309
323
  - rdmosolgo@gmail.com
@@ -320,10 +334,12 @@ files:
320
334
  - lib/generators/graphql/loader_generator.rb
321
335
  - lib/generators/graphql/mutation_generator.rb
322
336
  - lib/generators/graphql/object_generator.rb
337
+ - lib/generators/graphql/scalar_generator.rb
323
338
  - lib/generators/graphql/templates/base_enum.erb
324
339
  - lib/generators/graphql/templates/base_input_object.erb
325
340
  - lib/generators/graphql/templates/base_interface.erb
326
341
  - lib/generators/graphql/templates/base_object.erb
342
+ - lib/generators/graphql/templates/base_scalar.erb
327
343
  - lib/generators/graphql/templates/base_union.erb
328
344
  - lib/generators/graphql/templates/enum.erb
329
345
  - lib/generators/graphql/templates/graphql_controller.erb
@@ -333,6 +349,7 @@ files:
333
349
  - lib/generators/graphql/templates/mutation_type.erb
334
350
  - lib/generators/graphql/templates/object.erb
335
351
  - lib/generators/graphql/templates/query_type.erb
352
+ - lib/generators/graphql/templates/scalar.erb
336
353
  - lib/generators/graphql/templates/schema.erb
337
354
  - lib/generators/graphql/templates/union.erb
338
355
  - lib/generators/graphql/type_generator.rb
@@ -340,6 +357,14 @@ files:
340
357
  - lib/graphql.rb
341
358
  - lib/graphql/analysis.rb
342
359
  - lib/graphql/analysis/analyze_query.rb
360
+ - lib/graphql/analysis/ast.rb
361
+ - lib/graphql/analysis/ast/analyzer.rb
362
+ - lib/graphql/analysis/ast/field_usage.rb
363
+ - lib/graphql/analysis/ast/max_query_complexity.rb
364
+ - lib/graphql/analysis/ast/max_query_depth.rb
365
+ - lib/graphql/analysis/ast/query_complexity.rb
366
+ - lib/graphql/analysis/ast/query_depth.rb
367
+ - lib/graphql/analysis/ast/visitor.rb
343
368
  - lib/graphql/analysis/field_usage.rb
344
369
  - lib/graphql/analysis/max_query_complexity.rb
345
370
  - lib/graphql/analysis/max_query_depth.rb
@@ -381,6 +406,7 @@ files:
381
406
  - lib/graphql/define/non_null_with_bang.rb
382
407
  - lib/graphql/define/type_definer.rb
383
408
  - lib/graphql/deprecated_dsl.rb
409
+ - lib/graphql/dig.rb
384
410
  - lib/graphql/directive.rb
385
411
  - lib/graphql/directive/deprecated_directive.rb
386
412
  - lib/graphql/directive/include_directive.rb
@@ -391,9 +417,15 @@ files:
391
417
  - lib/graphql/execution/execute.rb
392
418
  - lib/graphql/execution/flatten.rb
393
419
  - lib/graphql/execution/instrumentation.rb
420
+ - lib/graphql/execution/interpreter.rb
421
+ - lib/graphql/execution/interpreter/execution_errors.rb
422
+ - lib/graphql/execution/interpreter/hash_response.rb
423
+ - lib/graphql/execution/interpreter/resolve.rb
424
+ - lib/graphql/execution/interpreter/runtime.rb
394
425
  - lib/graphql/execution/lazy.rb
395
426
  - lib/graphql/execution/lazy/lazy_method_map.rb
396
427
  - lib/graphql/execution/lazy/resolve.rb
428
+ - lib/graphql/execution/lookahead.rb
397
429
  - lib/graphql/execution/multiplex.rb
398
430
  - lib/graphql/execution/typecast.rb
399
431
  - lib/graphql/execution_error.rb
@@ -405,6 +437,7 @@ files:
405
437
  - lib/graphql/id_type.rb
406
438
  - lib/graphql/input_object_type.rb
407
439
  - lib/graphql/int_type.rb
440
+ - lib/graphql/integer_encoding_error.rb
408
441
  - lib/graphql/interface_type.rb
409
442
  - lib/graphql/internal_representation.rb
410
443
  - lib/graphql/internal_representation/document.rb
@@ -430,7 +463,6 @@ files:
430
463
  - lib/graphql/invalid_null_error.rb
431
464
  - lib/graphql/language.rb
432
465
  - lib/graphql/language/block_string.rb
433
- - lib/graphql/language/comments.rb
434
466
  - lib/graphql/language/definition_slice.rb
435
467
  - lib/graphql/language/document_from_schema_definition.rb
436
468
  - lib/graphql/language/generation.rb
@@ -443,6 +475,7 @@ files:
443
475
  - lib/graphql/language/token.rb
444
476
  - lib/graphql/language/visitor.rb
445
477
  - lib/graphql/list_type.rb
478
+ - lib/graphql/literal_validation_error.rb
446
479
  - lib/graphql/name_validator.rb
447
480
  - lib/graphql/non_null_type.rb
448
481
  - lib/graphql/object_type.rb
@@ -500,9 +533,17 @@ files:
500
533
  - lib/graphql/schema/catchall_middleware.rb
501
534
  - lib/graphql/schema/default_parse_error.rb
502
535
  - lib/graphql/schema/default_type_error.rb
536
+ - lib/graphql/schema/directive.rb
537
+ - lib/graphql/schema/directive/feature.rb
538
+ - lib/graphql/schema/directive/include.rb
539
+ - lib/graphql/schema/directive/skip.rb
540
+ - lib/graphql/schema/directive/transform.rb
503
541
  - lib/graphql/schema/enum.rb
504
542
  - lib/graphql/schema/enum_value.rb
505
543
  - lib/graphql/schema/field.rb
544
+ - lib/graphql/schema/field/connection_extension.rb
545
+ - lib/graphql/schema/field/scope_extension.rb
546
+ - lib/graphql/schema/field_extension.rb
506
547
  - lib/graphql/schema/finder.rb
507
548
  - lib/graphql/schema/input_object.rb
508
549
  - lib/graphql/schema/interface.rb
@@ -519,6 +560,7 @@ files:
519
560
  - lib/graphql/schema/member/graphql_type_names.rb
520
561
  - lib/graphql/schema/member/has_arguments.rb
521
562
  - lib/graphql/schema/member/has_fields.rb
563
+ - lib/graphql/schema/member/has_path.rb
522
564
  - lib/graphql/schema/member/instrumentation.rb
523
565
  - lib/graphql/schema/member/relay_shortcuts.rb
524
566
  - lib/graphql/schema/member/scoped.rb
@@ -533,7 +575,9 @@ files:
533
575
  - lib/graphql/schema/relay_classic_mutation.rb
534
576
  - lib/graphql/schema/rescue_middleware.rb
535
577
  - lib/graphql/schema/resolver.rb
578
+ - lib/graphql/schema/resolver/has_payload_type.rb
536
579
  - lib/graphql/schema/scalar.rb
580
+ - lib/graphql/schema/subscription.rb
537
581
  - lib/graphql/schema/timeout_middleware.rb
538
582
  - lib/graphql/schema/traversal.rb
539
583
  - lib/graphql/schema/type_expression.rb
@@ -544,36 +588,67 @@ files:
544
588
  - lib/graphql/schema/wrapper.rb
545
589
  - lib/graphql/static_validation.rb
546
590
  - lib/graphql/static_validation/all_rules.rb
547
- - lib/graphql/static_validation/arguments_validator.rb
591
+ - lib/graphql/static_validation/base_visitor.rb
592
+ - lib/graphql/static_validation/default_visitor.rb
548
593
  - lib/graphql/static_validation/definition_dependencies.rb
594
+ - lib/graphql/static_validation/error.rb
595
+ - lib/graphql/static_validation/interpreter_visitor.rb
549
596
  - lib/graphql/static_validation/literal_validator.rb
550
- - lib/graphql/static_validation/message.rb
597
+ - lib/graphql/static_validation/no_validate_visitor.rb
551
598
  - lib/graphql/static_validation/rules/argument_literals_are_compatible.rb
599
+ - lib/graphql/static_validation/rules/argument_literals_are_compatible_error.rb
552
600
  - lib/graphql/static_validation/rules/argument_names_are_unique.rb
601
+ - lib/graphql/static_validation/rules/argument_names_are_unique_error.rb
553
602
  - lib/graphql/static_validation/rules/arguments_are_defined.rb
603
+ - lib/graphql/static_validation/rules/arguments_are_defined_error.rb
554
604
  - lib/graphql/static_validation/rules/directives_are_defined.rb
605
+ - lib/graphql/static_validation/rules/directives_are_defined_error.rb
555
606
  - lib/graphql/static_validation/rules/directives_are_in_valid_locations.rb
607
+ - lib/graphql/static_validation/rules/directives_are_in_valid_locations_error.rb
556
608
  - lib/graphql/static_validation/rules/fields_are_defined_on_type.rb
609
+ - lib/graphql/static_validation/rules/fields_are_defined_on_type_error.rb
557
610
  - lib/graphql/static_validation/rules/fields_have_appropriate_selections.rb
611
+ - lib/graphql/static_validation/rules/fields_have_appropriate_selections_error.rb
558
612
  - lib/graphql/static_validation/rules/fields_will_merge.rb
613
+ - lib/graphql/static_validation/rules/fields_will_merge_error.rb
559
614
  - lib/graphql/static_validation/rules/fragment_names_are_unique.rb
615
+ - lib/graphql/static_validation/rules/fragment_names_are_unique_error.rb
560
616
  - lib/graphql/static_validation/rules/fragment_spreads_are_possible.rb
617
+ - lib/graphql/static_validation/rules/fragment_spreads_are_possible_error.rb
561
618
  - lib/graphql/static_validation/rules/fragment_types_exist.rb
619
+ - lib/graphql/static_validation/rules/fragment_types_exist_error.rb
562
620
  - lib/graphql/static_validation/rules/fragments_are_finite.rb
621
+ - lib/graphql/static_validation/rules/fragments_are_finite_error.rb
563
622
  - lib/graphql/static_validation/rules/fragments_are_named.rb
623
+ - lib/graphql/static_validation/rules/fragments_are_named_error.rb
564
624
  - lib/graphql/static_validation/rules/fragments_are_on_composite_types.rb
625
+ - lib/graphql/static_validation/rules/fragments_are_on_composite_types_error.rb
565
626
  - lib/graphql/static_validation/rules/fragments_are_used.rb
627
+ - lib/graphql/static_validation/rules/fragments_are_used_error.rb
566
628
  - lib/graphql/static_validation/rules/mutation_root_exists.rb
629
+ - lib/graphql/static_validation/rules/mutation_root_exists_error.rb
567
630
  - lib/graphql/static_validation/rules/no_definitions_are_present.rb
631
+ - lib/graphql/static_validation/rules/no_definitions_are_present_error.rb
568
632
  - lib/graphql/static_validation/rules/operation_names_are_valid.rb
633
+ - lib/graphql/static_validation/rules/operation_names_are_valid_error.rb
569
634
  - lib/graphql/static_validation/rules/required_arguments_are_present.rb
635
+ - lib/graphql/static_validation/rules/required_arguments_are_present_error.rb
636
+ - lib/graphql/static_validation/rules/required_input_object_attributes_are_present.rb
637
+ - lib/graphql/static_validation/rules/required_input_object_attributes_are_present_error.rb
570
638
  - lib/graphql/static_validation/rules/subscription_root_exists.rb
639
+ - lib/graphql/static_validation/rules/subscription_root_exists_error.rb
571
640
  - lib/graphql/static_validation/rules/unique_directives_per_location.rb
641
+ - lib/graphql/static_validation/rules/unique_directives_per_location_error.rb
572
642
  - lib/graphql/static_validation/rules/variable_default_values_are_correctly_typed.rb
643
+ - lib/graphql/static_validation/rules/variable_default_values_are_correctly_typed_error.rb
573
644
  - lib/graphql/static_validation/rules/variable_names_are_unique.rb
645
+ - lib/graphql/static_validation/rules/variable_names_are_unique_error.rb
574
646
  - lib/graphql/static_validation/rules/variable_usages_are_allowed.rb
647
+ - lib/graphql/static_validation/rules/variable_usages_are_allowed_error.rb
575
648
  - lib/graphql/static_validation/rules/variables_are_input_types.rb
649
+ - lib/graphql/static_validation/rules/variables_are_input_types_error.rb
576
650
  - lib/graphql/static_validation/rules/variables_are_used_and_defined.rb
651
+ - lib/graphql/static_validation/rules/variables_are_used_and_defined_error.rb
577
652
  - lib/graphql/static_validation/type_stack.rb
578
653
  - lib/graphql/static_validation/validation_context.rb
579
654
  - lib/graphql/static_validation/validator.rb
@@ -584,6 +659,7 @@ files:
584
659
  - lib/graphql/subscriptions/event.rb
585
660
  - lib/graphql/subscriptions/instrumentation.rb
586
661
  - lib/graphql/subscriptions/serialize.rb
662
+ - lib/graphql/subscriptions/subscription_root.rb
587
663
  - lib/graphql/tracing.rb
588
664
  - lib/graphql/tracing/active_support_notifications_tracing.rb
589
665
  - lib/graphql/tracing/appsignal_tracing.rb
@@ -608,9 +684,12 @@ files:
608
684
  - lib/graphql/types/relay/base_interface.rb
609
685
  - lib/graphql/types/relay/base_object.rb
610
686
  - lib/graphql/types/relay/node.rb
687
+ - lib/graphql/types/relay/node_field.rb
688
+ - lib/graphql/types/relay/nodes_field.rb
611
689
  - lib/graphql/types/relay/page_info.rb
612
690
  - lib/graphql/types/string.rb
613
691
  - lib/graphql/unauthorized_error.rb
692
+ - lib/graphql/unauthorized_field_error.rb
614
693
  - lib/graphql/union_type.rb
615
694
  - lib/graphql/unresolved_type_error.rb
616
695
  - lib/graphql/upgrader/member.rb
@@ -618,6 +697,7 @@ files:
618
697
  - lib/graphql/version.rb
619
698
  - readme.md
620
699
  - spec/dummy/Gemfile
700
+ - spec/dummy/Gemfile.lock
621
701
  - spec/dummy/README.md
622
702
  - spec/dummy/Rakefile
623
703
  - spec/dummy/app/assets/config/manifest.js
@@ -656,6 +736,7 @@ files:
656
736
  - spec/dummy/config/puma.rb
657
737
  - spec/dummy/config/routes.rb
658
738
  - spec/dummy/config/secrets.yml
739
+ - spec/dummy/log/test.log
659
740
  - spec/dummy/package.json
660
741
  - spec/dummy/public/404.html
661
742
  - spec/dummy/public/422.html
@@ -667,6 +748,26 @@ files:
667
748
  - spec/dummy/test/application_system_test_case.rb
668
749
  - spec/dummy/test/system/action_cable_subscription_test.rb
669
750
  - spec/dummy/test/test_helper.rb
751
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/4w/4wzXRZrAkwKdgYaSE0pid5eB-fer8vSfSku_NPg4rMA.cache
752
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/7I/7IHVBiJT06QSpgLpLoJIxboQ0B-D_tMTxsvoezBTV3Q.cache
753
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/8w/8wY_SKagj8wHuwGNAAf6JnQ8joMbC6cEYpHrTAI8Urc.cache
754
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/AK/AKzz1u6bGb4auXcrObA_g5LL-oV0ejNGa448AgAi_WQ.cache
755
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/ET/ETW4uxvaYpruL8y6_ZptUH82ZowMaHIqvg5WexBFdEM.cache
756
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/F1/F1TWpjjyA56k9Z90n5B3xRn7DUdGjX73QCkYC6k07JQ.cache
757
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/F8/F8MUNRzORGFgr329fNM0xLaoWCXdv3BIalT7dsvLfjs.cache
758
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/KB/KB07ZaKNC5uXJ7TjLi-WqnY6g7dq8wWp_8N3HNjBNxg.cache
759
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/Ms/MsKSimH_UCB-H1tLvDABDHuvGciuoW6kVqQWDrXU5FQ.cache
760
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/Mt/Mtci-Kim50aPOmeClD4AIicKn1d1WJ0n454IjSd94sk.cache
761
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/QH/QHt3Tc1Y6M66Oo_pDuMyWrQNs4Pp3SMeZR5K1wJj2Ts.cache
762
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/XU/XU4k1OXnfMils5SrirorPvDSyDSqiOWLZNtmAH1HH8k.cache
763
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/ZI/ZIof7mZxWWCnraIFOCuV6a8QRWzKJXJnx2Xd7C0ZyX0.cache
764
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/cG/cGc_puuPS5pZKgUcy1Y_i1L6jl5UtsiIrMH59rTzR6c.cache
765
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/df/dfro_B6bx3KP1Go-7jEOqqZ2j4hVRseXIc3es9PKQno.cache
766
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/jO/jO1DfbqnG0mTULsjJJANc3fefrG2zt7DIMmcptMT628.cache
767
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/pE/pE7gO6pQ-z187Swb4hT554wmqsq-cNzgPWLrCz-LQQQ.cache
768
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/r9/r9iU1l58a6rxkZSW5RSC52_tD-_UQuHxoMVnkfJ7Mhs.cache
769
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/xi/xitPPFfPIyDMpaznV0sBBcw8eSCV8PJcLLWin78sCgE.cache
770
+ - spec/dummy/tmp/screenshots/failures_test_it_handles_subscriptions.png
670
771
  - spec/fixtures/upgrader/account.original.rb
671
772
  - spec/fixtures/upgrader/account.transformed.rb
672
773
  - spec/fixtures/upgrader/blame_range.original.rb
@@ -689,14 +790,13 @@ files:
689
790
  - spec/fixtures/upgrader/subscribable.transformed.rb
690
791
  - spec/fixtures/upgrader/type_x.original.rb
691
792
  - spec/fixtures/upgrader/type_x.transformed.rb
692
- - spec/generators/graphql/enum_generator_spec.rb
693
- - spec/generators/graphql/install_generator_spec.rb
694
- - spec/generators/graphql/interface_generator_spec.rb
695
- - spec/generators/graphql/loader_generator_spec.rb
696
- - spec/generators/graphql/mutation_generator_spec.rb
697
- - spec/generators/graphql/object_generator_spec.rb
698
- - spec/generators/graphql/union_generator_spec.rb
699
793
  - spec/graphql/analysis/analyze_query_spec.rb
794
+ - spec/graphql/analysis/ast/field_usage_spec.rb
795
+ - spec/graphql/analysis/ast/max_query_complexity_spec.rb
796
+ - spec/graphql/analysis/ast/max_query_depth_spec.rb
797
+ - spec/graphql/analysis/ast/query_complexity_spec.rb
798
+ - spec/graphql/analysis/ast/query_depth_spec.rb
799
+ - spec/graphql/analysis/ast_spec.rb
700
800
  - spec/graphql/analysis/field_usage_spec.rb
701
801
  - spec/graphql/analysis/max_query_complexity_spec.rb
702
802
  - spec/graphql/analysis/max_query_depth_spec.rb
@@ -718,8 +818,10 @@ files:
718
818
  - spec/graphql/enum_type_spec.rb
719
819
  - spec/graphql/execution/execute_spec.rb
720
820
  - spec/graphql/execution/instrumentation_spec.rb
821
+ - spec/graphql/execution/interpreter_spec.rb
721
822
  - spec/graphql/execution/lazy/lazy_method_map_spec.rb
722
823
  - spec/graphql/execution/lazy_spec.rb
824
+ - spec/graphql/execution/lookahead_spec.rb
723
825
  - spec/graphql/execution/multiplex_spec.rb
724
826
  - spec/graphql/execution/typecast_spec.rb
725
827
  - spec/graphql/execution_error_spec.rb
@@ -756,27 +858,17 @@ files:
756
858
  - spec/graphql/query/literal_input_spec.rb
757
859
  - spec/graphql/query/result_spec.rb
758
860
  - spec/graphql/query/serial_execution/value_resolution_spec.rb
759
- - spec/graphql/query/variables_spec.rb
760
861
  - spec/graphql/query_spec.rb
761
862
  - spec/graphql/rake_task_spec.rb
762
- - spec/graphql/relay/array_connection_spec.rb
763
- - spec/graphql/relay/base_connection_spec.rb
764
- - spec/graphql/relay/connection_instrumentation_spec.rb
765
- - spec/graphql/relay/connection_resolve_spec.rb
766
- - spec/graphql/relay/connection_type_spec.rb
767
- - spec/graphql/relay/edge_spec.rb
768
- - spec/graphql/relay/mongo_relation_connection_spec.rb
769
- - spec/graphql/relay/mutation_spec.rb
770
- - spec/graphql/relay/node_spec.rb
771
- - spec/graphql/relay/page_info_spec.rb
772
- - spec/graphql/relay/range_add_spec.rb
773
- - spec/graphql/relay/relation_connection_spec.rb
774
863
  - spec/graphql/scalar_type_spec.rb
775
864
  - spec/graphql/schema/argument_spec.rb
776
865
  - spec/graphql/schema/build_from_definition_spec.rb
777
866
  - spec/graphql/schema/catchall_middleware_spec.rb
867
+ - spec/graphql/schema/directive/feature_spec.rb
868
+ - spec/graphql/schema/directive/transform_spec.rb
778
869
  - spec/graphql/schema/enum_spec.rb
779
870
  - spec/graphql/schema/enum_value_spec.rb
871
+ - spec/graphql/schema/field_extension_spec.rb
780
872
  - spec/graphql/schema/field_spec.rb
781
873
  - spec/graphql/schema/finder_spec.rb
782
874
  - spec/graphql/schema/input_object_spec.rb
@@ -787,7 +879,6 @@ files:
787
879
  - spec/graphql/schema/loader_spec.rb
788
880
  - spec/graphql/schema/member/accepts_definition_spec.rb
789
881
  - spec/graphql/schema/member/build_type_spec.rb
790
- - spec/graphql/schema/member/has_fields_spec.rb
791
882
  - spec/graphql/schema/member/scoped_spec.rb
792
883
  - spec/graphql/schema/member/type_system_helpers_spec.rb
793
884
  - spec/graphql/schema/middleware_chain_spec.rb
@@ -799,6 +890,7 @@ files:
799
890
  - spec/graphql/schema/rescue_middleware_spec.rb
800
891
  - spec/graphql/schema/resolver_spec.rb
801
892
  - spec/graphql/schema/scalar_spec.rb
893
+ - spec/graphql/schema/subscription_spec.rb
802
894
  - spec/graphql/schema/timeout_middleware_spec.rb
803
895
  - spec/graphql/schema/traversal_spec.rb
804
896
  - spec/graphql/schema/type_expression_spec.rb
@@ -806,7 +898,6 @@ files:
806
898
  - spec/graphql/schema/unique_within_type_spec.rb
807
899
  - spec/graphql/schema/validation_spec.rb
808
900
  - spec/graphql/schema/warden_spec.rb
809
- - spec/graphql/schema_spec.rb
810
901
  - spec/graphql/static_validation/rules/argument_literals_are_compatible_spec.rb
811
902
  - spec/graphql/static_validation/rules/argument_names_are_unique_spec.rb
812
903
  - spec/graphql/static_validation/rules/arguments_are_defined_spec.rb
@@ -826,6 +917,7 @@ files:
826
917
  - spec/graphql/static_validation/rules/no_definitions_are_present_spec.rb
827
918
  - spec/graphql/static_validation/rules/operation_names_are_valid_spec.rb
828
919
  - spec/graphql/static_validation/rules/required_arguments_are_present_spec.rb
920
+ - spec/graphql/static_validation/rules/required_input_object_attributes_are_present_spec.rb
829
921
  - spec/graphql/static_validation/rules/subscription_root_exists_spec.rb
830
922
  - spec/graphql/static_validation/rules/unique_directives_per_location_spec.rb
831
923
  - spec/graphql/static_validation/rules/variable_default_values_are_correctly_typed_spec.rb
@@ -838,7 +930,6 @@ files:
838
930
  - spec/graphql/string_type_spec.rb
839
931
  - spec/graphql/subscriptions/serialize_spec.rb
840
932
  - spec/graphql/subscriptions_spec.rb
841
- - spec/graphql/tracing/active_support_notifications_tracing_spec.rb
842
933
  - spec/graphql/tracing/new_relic_tracing_spec.rb
843
934
  - spec/graphql/tracing/platform_tracing_spec.rb
844
935
  - spec/graphql/tracing/prometheus_tracing_spec.rb
@@ -849,11 +940,41 @@ files:
849
940
  - spec/graphql/union_type_spec.rb
850
941
  - spec/graphql/upgrader/member_spec.rb
851
942
  - spec/graphql/upgrader/schema_spec.rb
852
- - spec/rails_dependency_sanity_spec.rb
943
+ - spec/integration/mongoid/graphql/relay/mongo_relation_connection_spec.rb
944
+ - spec/integration/mongoid/spec_helper.rb
945
+ - spec/integration/mongoid/star_trek/data.rb
946
+ - spec/integration/mongoid/star_trek/schema.rb
947
+ - spec/integration/rails/data.rb
948
+ - spec/integration/rails/generators/base_generator_test.rb
949
+ - spec/integration/rails/generators/graphql/enum_generator_spec.rb
950
+ - spec/integration/rails/generators/graphql/install_generator_spec.rb
951
+ - spec/integration/rails/generators/graphql/interface_generator_spec.rb
952
+ - spec/integration/rails/generators/graphql/loader_generator_spec.rb
953
+ - spec/integration/rails/generators/graphql/mutation_generator_spec.rb
954
+ - spec/integration/rails/generators/graphql/object_generator_spec.rb
955
+ - spec/integration/rails/generators/graphql/scalar_generator_spec.rb
956
+ - spec/integration/rails/generators/graphql/union_generator_spec.rb
957
+ - spec/integration/rails/graphql/input_object_type_spec.rb
958
+ - spec/integration/rails/graphql/query/variables_spec.rb
959
+ - spec/integration/rails/graphql/relay/array_connection_spec.rb
960
+ - spec/integration/rails/graphql/relay/base_connection_spec.rb
961
+ - spec/integration/rails/graphql/relay/connection_instrumentation_spec.rb
962
+ - spec/integration/rails/graphql/relay/connection_resolve_spec.rb
963
+ - spec/integration/rails/graphql/relay/connection_type_spec.rb
964
+ - spec/integration/rails/graphql/relay/edge_spec.rb
965
+ - spec/integration/rails/graphql/relay/mutation_spec.rb
966
+ - spec/integration/rails/graphql/relay/node_spec.rb
967
+ - spec/integration/rails/graphql/relay/page_info_spec.rb
968
+ - spec/integration/rails/graphql/relay/range_add_spec.rb
969
+ - spec/integration/rails/graphql/relay/relation_connection_spec.rb
970
+ - spec/integration/rails/graphql/schema_spec.rb
971
+ - spec/integration/rails/graphql/tracing/active_support_notifications_tracing_spec.rb
972
+ - spec/integration/rails/spec_helper.rb
973
+ - spec/integration/tmp/app/graphql/types/family_type.rb
853
974
  - spec/spec_helper.rb
854
- - spec/support/base_generator_test.rb
855
975
  - spec/support/dummy/data.rb
856
976
  - spec/support/dummy/schema.rb
977
+ - spec/support/error_bubbling_helpers.rb
857
978
  - spec/support/global_id.rb
858
979
  - spec/support/jazz.rb
859
980
  - spec/support/lazy_helpers.rb
@@ -864,12 +985,9 @@ files:
864
985
  - spec/support/parser/filename_example_error_1.graphql
865
986
  - spec/support/parser/filename_example_error_2.graphql
866
987
  - spec/support/skylight.rb
867
- - spec/support/star_trek/data.rb
868
- - spec/support/star_trek/schema.rb
869
- - spec/support/star_wars/data.rb
870
988
  - spec/support/star_wars/schema.rb
871
989
  - spec/support/static_validation_helpers.rb
872
- homepage: http://github.com/rmosolgo/graphql-ruby
990
+ homepage: https://github.com/rmosolgo/graphql-ruby
873
991
  licenses:
874
992
  - MIT
875
993
  metadata: {}
@@ -894,255 +1012,294 @@ signing_key:
894
1012
  specification_version: 4
895
1013
  summary: A GraphQL language and runtime for Ruby
896
1014
  test_files:
897
- - spec/dummy/app/assets/config/manifest.js
898
- - spec/dummy/app/assets/javascripts/application.js
899
- - spec/dummy/app/channels/application_cable/channel.rb
900
- - spec/dummy/app/channels/application_cable/connection.rb
901
- - spec/dummy/app/channels/graphql_channel.rb
1015
+ - spec/spec_helper.rb
1016
+ - spec/dummy/app/jobs/application_job.rb
902
1017
  - spec/dummy/app/controllers/application_controller.rb
903
1018
  - spec/dummy/app/controllers/pages_controller.rb
904
- - spec/dummy/app/helpers/application_helper.rb
905
- - spec/dummy/app/jobs/application_job.rb
906
1019
  - spec/dummy/app/views/layouts/application.html.erb
907
1020
  - spec/dummy/app/views/pages/show.html
908
- - spec/dummy/bin/bundle
909
- - spec/dummy/bin/rails
1021
+ - spec/dummy/app/assets/config/manifest.js
1022
+ - spec/dummy/app/assets/javascripts/application.js
1023
+ - spec/dummy/app/helpers/application_helper.rb
1024
+ - spec/dummy/app/channels/application_cable/connection.rb
1025
+ - spec/dummy/app/channels/application_cable/channel.rb
1026
+ - spec/dummy/app/channels/graphql_channel.rb
1027
+ - spec/dummy/test/system/action_cable_subscription_test.rb
1028
+ - spec/dummy/test/application_system_test_case.rb
1029
+ - spec/dummy/test/test_helper.rb
1030
+ - spec/dummy/bin/update
910
1031
  - spec/dummy/bin/rake
911
1032
  - spec/dummy/bin/setup
912
- - spec/dummy/bin/update
1033
+ - spec/dummy/bin/bundle
913
1034
  - spec/dummy/bin/yarn
914
- - spec/dummy/config/application.rb
915
- - spec/dummy/config/boot.rb
1035
+ - spec/dummy/bin/rails
1036
+ - spec/dummy/config/secrets.yml
1037
+ - spec/dummy/config/routes.rb
1038
+ - spec/dummy/config/locales/en.yml
916
1039
  - spec/dummy/config/cable.yml
917
- - spec/dummy/config/environment.rb
918
- - spec/dummy/config/environments/development.rb
919
1040
  - spec/dummy/config/environments/production.rb
1041
+ - spec/dummy/config/environments/development.rb
920
1042
  - spec/dummy/config/environments/test.rb
1043
+ - spec/dummy/config/environment.rb
1044
+ - spec/dummy/config/application.rb
1045
+ - spec/dummy/config/puma.rb
1046
+ - spec/dummy/config/boot.rb
921
1047
  - spec/dummy/config/initializers/application_controller_renderer.rb
922
1048
  - spec/dummy/config/initializers/backtrace_silencers.rb
923
- - spec/dummy/config/initializers/cookies_serializer.rb
924
- - spec/dummy/config/initializers/filter_parameter_logging.rb
925
- - spec/dummy/config/initializers/inflections.rb
926
1049
  - spec/dummy/config/initializers/mime_types.rb
1050
+ - spec/dummy/config/initializers/filter_parameter_logging.rb
927
1051
  - spec/dummy/config/initializers/wrap_parameters.rb
928
- - spec/dummy/config/locales/en.yml
929
- - spec/dummy/config/puma.rb
930
- - spec/dummy/config/routes.rb
931
- - spec/dummy/config/secrets.yml
1052
+ - spec/dummy/config/initializers/cookies_serializer.rb
1053
+ - spec/dummy/config/initializers/inflections.rb
932
1054
  - spec/dummy/config.ru
933
- - spec/dummy/Gemfile
934
- - spec/dummy/package.json
935
- - spec/dummy/public/404.html
1055
+ - spec/dummy/README.md
1056
+ - spec/dummy/Rakefile
1057
+ - spec/dummy/public/favicon.ico
936
1058
  - spec/dummy/public/422.html
1059
+ - spec/dummy/public/apple-touch-icon.png
937
1060
  - spec/dummy/public/500.html
1061
+ - spec/dummy/public/404.html
938
1062
  - spec/dummy/public/apple-touch-icon-precomposed.png
939
- - spec/dummy/public/apple-touch-icon.png
940
- - spec/dummy/public/favicon.ico
941
1063
  - spec/dummy/public/robots.txt
942
- - spec/dummy/Rakefile
943
- - spec/dummy/README.md
944
- - spec/dummy/test/application_system_test_case.rb
945
- - spec/dummy/test/system/action_cable_subscription_test.rb
946
- - spec/dummy/test/test_helper.rb
947
- - spec/fixtures/upgrader/account.original.rb
948
- - spec/fixtures/upgrader/account.transformed.rb
949
- - spec/fixtures/upgrader/blame_range.original.rb
950
- - spec/fixtures/upgrader/blame_range.transformed.rb
951
- - spec/fixtures/upgrader/date_time.original.rb
952
- - spec/fixtures/upgrader/date_time.transformed.rb
953
- - spec/fixtures/upgrader/delete_project.original.rb
954
- - spec/fixtures/upgrader/delete_project.transformed.rb
955
- - spec/fixtures/upgrader/gist_order_field.original.rb
956
- - spec/fixtures/upgrader/gist_order_field.transformed.rb
957
- - spec/fixtures/upgrader/increment_count.original.rb
958
- - spec/fixtures/upgrader/increment_count.transformed.rb
959
- - spec/fixtures/upgrader/photo.original.rb
960
- - spec/fixtures/upgrader/photo.transformed.rb
961
- - spec/fixtures/upgrader/release_order.original.rb
962
- - spec/fixtures/upgrader/release_order.transformed.rb
963
- - spec/fixtures/upgrader/starrable.original.rb
964
- - spec/fixtures/upgrader/starrable.transformed.rb
965
- - spec/fixtures/upgrader/subscribable.original.rb
966
- - spec/fixtures/upgrader/subscribable.transformed.rb
967
- - spec/fixtures/upgrader/type_x.original.rb
968
- - spec/fixtures/upgrader/type_x.transformed.rb
969
- - spec/generators/graphql/enum_generator_spec.rb
970
- - spec/generators/graphql/install_generator_spec.rb
971
- - spec/generators/graphql/interface_generator_spec.rb
972
- - spec/generators/graphql/loader_generator_spec.rb
973
- - spec/generators/graphql/mutation_generator_spec.rb
974
- - spec/generators/graphql/object_generator_spec.rb
975
- - spec/generators/graphql/union_generator_spec.rb
1064
+ - spec/dummy/package.json
1065
+ - spec/dummy/Gemfile
1066
+ - spec/dummy/log/test.log
1067
+ - spec/dummy/Gemfile.lock
1068
+ - spec/dummy/tmp/screenshots/failures_test_it_handles_subscriptions.png
1069
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/pE/pE7gO6pQ-z187Swb4hT554wmqsq-cNzgPWLrCz-LQQQ.cache
1070
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/Ms/MsKSimH_UCB-H1tLvDABDHuvGciuoW6kVqQWDrXU5FQ.cache
1071
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/Mt/Mtci-Kim50aPOmeClD4AIicKn1d1WJ0n454IjSd94sk.cache
1072
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/KB/KB07ZaKNC5uXJ7TjLi-WqnY6g7dq8wWp_8N3HNjBNxg.cache
1073
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/df/dfro_B6bx3KP1Go-7jEOqqZ2j4hVRseXIc3es9PKQno.cache
1074
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/AK/AKzz1u6bGb4auXcrObA_g5LL-oV0ejNGa448AgAi_WQ.cache
1075
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/cG/cGc_puuPS5pZKgUcy1Y_i1L6jl5UtsiIrMH59rTzR6c.cache
1076
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/jO/jO1DfbqnG0mTULsjJJANc3fefrG2zt7DIMmcptMT628.cache
1077
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/xi/xitPPFfPIyDMpaznV0sBBcw8eSCV8PJcLLWin78sCgE.cache
1078
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/r9/r9iU1l58a6rxkZSW5RSC52_tD-_UQuHxoMVnkfJ7Mhs.cache
1079
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/XU/XU4k1OXnfMils5SrirorPvDSyDSqiOWLZNtmAH1HH8k.cache
1080
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/QH/QHt3Tc1Y6M66Oo_pDuMyWrQNs4Pp3SMeZR5K1wJj2Ts.cache
1081
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/4w/4wzXRZrAkwKdgYaSE0pid5eB-fer8vSfSku_NPg4rMA.cache
1082
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/ZI/ZIof7mZxWWCnraIFOCuV6a8QRWzKJXJnx2Xd7C0ZyX0.cache
1083
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/ET/ETW4uxvaYpruL8y6_ZptUH82ZowMaHIqvg5WexBFdEM.cache
1084
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/F1/F1TWpjjyA56k9Z90n5B3xRn7DUdGjX73QCkYC6k07JQ.cache
1085
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/F8/F8MUNRzORGFgr329fNM0xLaoWCXdv3BIalT7dsvLfjs.cache
1086
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/7I/7IHVBiJT06QSpgLpLoJIxboQ0B-D_tMTxsvoezBTV3Q.cache
1087
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/8w/8wY_SKagj8wHuwGNAAf6JnQ8joMbC6cEYpHrTAI8Urc.cache
1088
+ - spec/integration/mongoid/spec_helper.rb
1089
+ - spec/integration/mongoid/star_trek/schema.rb
1090
+ - spec/integration/mongoid/star_trek/data.rb
1091
+ - spec/integration/mongoid/graphql/relay/mongo_relation_connection_spec.rb
1092
+ - spec/integration/tmp/app/graphql/types/family_type.rb
1093
+ - spec/integration/rails/spec_helper.rb
1094
+ - spec/integration/rails/data.rb
1095
+ - spec/integration/rails/graphql/tracing/active_support_notifications_tracing_spec.rb
1096
+ - spec/integration/rails/graphql/input_object_type_spec.rb
1097
+ - spec/integration/rails/graphql/relay/node_spec.rb
1098
+ - spec/integration/rails/graphql/relay/connection_resolve_spec.rb
1099
+ - spec/integration/rails/graphql/relay/range_add_spec.rb
1100
+ - spec/integration/rails/graphql/relay/connection_instrumentation_spec.rb
1101
+ - spec/integration/rails/graphql/relay/edge_spec.rb
1102
+ - spec/integration/rails/graphql/relay/array_connection_spec.rb
1103
+ - spec/integration/rails/graphql/relay/relation_connection_spec.rb
1104
+ - spec/integration/rails/graphql/relay/connection_type_spec.rb
1105
+ - spec/integration/rails/graphql/relay/mutation_spec.rb
1106
+ - spec/integration/rails/graphql/relay/base_connection_spec.rb
1107
+ - spec/integration/rails/graphql/relay/page_info_spec.rb
1108
+ - spec/integration/rails/graphql/query/variables_spec.rb
1109
+ - spec/integration/rails/graphql/schema_spec.rb
1110
+ - spec/integration/rails/generators/graphql/install_generator_spec.rb
1111
+ - spec/integration/rails/generators/graphql/scalar_generator_spec.rb
1112
+ - spec/integration/rails/generators/graphql/loader_generator_spec.rb
1113
+ - spec/integration/rails/generators/graphql/mutation_generator_spec.rb
1114
+ - spec/integration/rails/generators/graphql/interface_generator_spec.rb
1115
+ - spec/integration/rails/generators/graphql/enum_generator_spec.rb
1116
+ - spec/integration/rails/generators/graphql/union_generator_spec.rb
1117
+ - spec/integration/rails/generators/graphql/object_generator_spec.rb
1118
+ - spec/integration/rails/generators/base_generator_test.rb
1119
+ - spec/support/star_wars/schema.rb
1120
+ - spec/support/static_validation_helpers.rb
1121
+ - spec/support/dummy/schema.rb
1122
+ - spec/support/dummy/data.rb
1123
+ - spec/support/magic_cards/schema.graphql
1124
+ - spec/support/error_bubbling_helpers.rb
1125
+ - spec/support/new_relic.rb
1126
+ - spec/support/parser/filename_example_error_1.graphql
1127
+ - spec/support/parser/filename_example_error_2.graphql
1128
+ - spec/support/parser/filename_example.graphql
1129
+ - spec/support/lazy_helpers.rb
1130
+ - spec/support/minimum_input_object.rb
1131
+ - spec/support/global_id.rb
1132
+ - spec/support/skylight.rb
1133
+ - spec/support/jazz.rb
1134
+ - spec/graphql/compatibility/query_parser_specification_spec.rb
1135
+ - spec/graphql/compatibility/execution_specification_spec.rb
1136
+ - spec/graphql/compatibility/schema_parser_specification_spec.rb
1137
+ - spec/graphql/compatibility/lazy_execution_specification_spec.rb
1138
+ - spec/graphql/float_type_spec.rb
1139
+ - spec/graphql/tracing/skylight_tracing_spec.rb
1140
+ - spec/graphql/tracing/prometheus_tracing_spec.rb
1141
+ - spec/graphql/tracing/new_relic_tracing_spec.rb
1142
+ - spec/graphql/tracing/scout_tracing_spec.rb
1143
+ - spec/graphql/tracing/platform_tracing_spec.rb
1144
+ - spec/graphql/boolean_type_spec.rb
1145
+ - spec/graphql/rake_task_spec.rb
1146
+ - spec/graphql/int_type_spec.rb
1147
+ - spec/graphql/types/iso_8601_date_time_spec.rb
1148
+ - spec/graphql/field_spec.rb
1149
+ - spec/graphql/analysis/max_query_depth_spec.rb
1150
+ - spec/graphql/analysis/max_query_complexity_spec.rb
976
1151
  - spec/graphql/analysis/analyze_query_spec.rb
1152
+ - spec/graphql/analysis/query_depth_spec.rb
977
1153
  - spec/graphql/analysis/field_usage_spec.rb
978
- - spec/graphql/analysis/max_query_complexity_spec.rb
979
- - spec/graphql/analysis/max_query_depth_spec.rb
1154
+ - spec/graphql/analysis/ast/max_query_depth_spec.rb
1155
+ - spec/graphql/analysis/ast/max_query_complexity_spec.rb
1156
+ - spec/graphql/analysis/ast/query_depth_spec.rb
1157
+ - spec/graphql/analysis/ast/field_usage_spec.rb
1158
+ - spec/graphql/analysis/ast/query_complexity_spec.rb
1159
+ - spec/graphql/analysis/ast_spec.rb
980
1160
  - spec/graphql/analysis/query_complexity_spec.rb
981
- - spec/graphql/analysis/query_depth_spec.rb
982
- - spec/graphql/argument_spec.rb
983
- - spec/graphql/authorization_spec.rb
984
1161
  - spec/graphql/backtrace_spec.rb
985
- - spec/graphql/base_type_spec.rb
986
- - spec/graphql/boolean_type_spec.rb
987
- - spec/graphql/compatibility/execution_specification_spec.rb
988
- - spec/graphql/compatibility/lazy_execution_specification_spec.rb
989
- - spec/graphql/compatibility/query_parser_specification_spec.rb
990
- - spec/graphql/compatibility/schema_parser_specification_spec.rb
991
- - spec/graphql/define/assign_argument_spec.rb
992
- - spec/graphql/define/instance_definable_spec.rb
993
- - spec/graphql/directive/skip_directive_spec.rb
994
- - spec/graphql/directive_spec.rb
995
- - spec/graphql/enum_type_spec.rb
996
- - spec/graphql/execution/execute_spec.rb
997
- - spec/graphql/execution/instrumentation_spec.rb
998
- - spec/graphql/execution/lazy/lazy_method_map_spec.rb
999
- - spec/graphql/execution/lazy_spec.rb
1000
- - spec/graphql/execution/multiplex_spec.rb
1001
- - spec/graphql/execution/typecast_spec.rb
1002
1162
  - spec/graphql/execution_error_spec.rb
1003
- - spec/graphql/field_spec.rb
1004
- - spec/graphql/float_type_spec.rb
1005
- - spec/graphql/function_spec.rb
1006
- - spec/graphql/id_type_spec.rb
1163
+ - spec/graphql/define/instance_definable_spec.rb
1164
+ - spec/graphql/define/assign_argument_spec.rb
1007
1165
  - spec/graphql/input_object_type_spec.rb
1008
- - spec/graphql/int_type_spec.rb
1009
- - spec/graphql/interface_type_spec.rb
1010
- - spec/graphql/internal_representation/print_spec.rb
1011
- - spec/graphql/internal_representation/rewrite_spec.rb
1012
- - spec/graphql/introspection/directive_type_spec.rb
1013
- - spec/graphql/introspection/input_value_type_spec.rb
1014
- - spec/graphql/introspection/introspection_query_spec.rb
1015
- - spec/graphql/introspection/schema_type_spec.rb
1016
- - spec/graphql/introspection/type_type_spec.rb
1017
- - spec/graphql/language/block_string_spec.rb
1166
+ - spec/graphql/static_validation/validator_spec.rb
1167
+ - spec/graphql/static_validation/rules/mutation_root_exists_spec.rb
1168
+ - spec/graphql/static_validation/rules/no_definitions_are_present_spec.rb
1169
+ - spec/graphql/static_validation/rules/fragment_names_are_unique_spec.rb
1170
+ - spec/graphql/static_validation/rules/required_input_object_attributes_are_present_spec.rb
1171
+ - spec/graphql/static_validation/rules/arguments_are_defined_spec.rb
1172
+ - spec/graphql/static_validation/rules/fragment_types_exist_spec.rb
1173
+ - spec/graphql/static_validation/rules/fields_have_appropriate_selections_spec.rb
1174
+ - spec/graphql/static_validation/rules/variable_default_values_are_correctly_typed_spec.rb
1175
+ - spec/graphql/static_validation/rules/fragments_are_finite_spec.rb
1176
+ - spec/graphql/static_validation/rules/variables_are_used_and_defined_spec.rb
1177
+ - spec/graphql/static_validation/rules/variable_names_are_unique_spec.rb
1178
+ - spec/graphql/static_validation/rules/unique_directives_per_location_spec.rb
1179
+ - spec/graphql/static_validation/rules/directives_are_in_valid_locations_spec.rb
1180
+ - spec/graphql/static_validation/rules/fragments_are_named_spec.rb
1181
+ - spec/graphql/static_validation/rules/required_arguments_are_present_spec.rb
1182
+ - spec/graphql/static_validation/rules/fragments_are_on_composite_types_spec.rb
1183
+ - spec/graphql/static_validation/rules/variable_usages_are_allowed_spec.rb
1184
+ - spec/graphql/static_validation/rules/subscription_root_exists_spec.rb
1185
+ - spec/graphql/static_validation/rules/fields_are_defined_on_type_spec.rb
1186
+ - spec/graphql/static_validation/rules/fields_will_merge_spec.rb
1187
+ - spec/graphql/static_validation/rules/operation_names_are_valid_spec.rb
1188
+ - spec/graphql/static_validation/rules/argument_names_are_unique_spec.rb
1189
+ - spec/graphql/static_validation/rules/argument_literals_are_compatible_spec.rb
1190
+ - spec/graphql/static_validation/rules/directives_are_defined_spec.rb
1191
+ - spec/graphql/static_validation/rules/variables_are_input_types_spec.rb
1192
+ - spec/graphql/static_validation/rules/fragment_spreads_are_possible_spec.rb
1193
+ - spec/graphql/static_validation/rules/fragments_are_used_spec.rb
1194
+ - spec/graphql/static_validation/type_stack_spec.rb
1195
+ - spec/graphql/list_type_spec.rb
1196
+ - spec/graphql/authorization_spec.rb
1018
1197
  - spec/graphql/language/definition_slice_spec.rb
1019
1198
  - spec/graphql/language/document_from_schema_definition_spec.rb
1020
- - spec/graphql/language/equality_spec.rb
1021
- - spec/graphql/language/generation_spec.rb
1022
- - spec/graphql/language/lexer_spec.rb
1023
- - spec/graphql/language/nodes_spec.rb
1024
1199
  - spec/graphql/language/parser_spec.rb
1025
1200
  - spec/graphql/language/printer_spec.rb
1201
+ - spec/graphql/language/generation_spec.rb
1026
1202
  - spec/graphql/language/visitor_spec.rb
1027
- - spec/graphql/list_type_spec.rb
1028
- - spec/graphql/non_null_type_spec.rb
1203
+ - spec/graphql/language/equality_spec.rb
1204
+ - spec/graphql/language/nodes_spec.rb
1205
+ - spec/graphql/language/block_string_spec.rb
1206
+ - spec/graphql/language/lexer_spec.rb
1207
+ - spec/graphql/introspection/introspection_query_spec.rb
1208
+ - spec/graphql/introspection/input_value_type_spec.rb
1209
+ - spec/graphql/introspection/schema_type_spec.rb
1210
+ - spec/graphql/introspection/directive_type_spec.rb
1211
+ - spec/graphql/introspection/type_type_spec.rb
1212
+ - spec/graphql/directive_spec.rb
1029
1213
  - spec/graphql/object_type_spec.rb
1030
- - spec/graphql/query/arguments_spec.rb
1031
- - spec/graphql/query/context_spec.rb
1032
- - spec/graphql/query/executor_spec.rb
1033
- - spec/graphql/query/literal_input_spec.rb
1034
- - spec/graphql/query/result_spec.rb
1035
- - spec/graphql/query/serial_execution/value_resolution_spec.rb
1036
- - spec/graphql/query/variables_spec.rb
1037
- - spec/graphql/query_spec.rb
1038
- - spec/graphql/rake_task_spec.rb
1039
- - spec/graphql/relay/array_connection_spec.rb
1040
- - spec/graphql/relay/base_connection_spec.rb
1041
- - spec/graphql/relay/connection_instrumentation_spec.rb
1042
- - spec/graphql/relay/connection_resolve_spec.rb
1043
- - spec/graphql/relay/connection_type_spec.rb
1044
- - spec/graphql/relay/edge_spec.rb
1045
- - spec/graphql/relay/mongo_relation_connection_spec.rb
1046
- - spec/graphql/relay/mutation_spec.rb
1047
- - spec/graphql/relay/node_spec.rb
1048
- - spec/graphql/relay/page_info_spec.rb
1049
- - spec/graphql/relay/range_add_spec.rb
1050
- - spec/graphql/relay/relation_connection_spec.rb
1051
- - spec/graphql/scalar_type_spec.rb
1052
- - spec/graphql/schema/argument_spec.rb
1053
- - spec/graphql/schema/build_from_definition_spec.rb
1214
+ - spec/graphql/subscriptions/serialize_spec.rb
1215
+ - spec/graphql/union_type_spec.rb
1054
1216
  - spec/graphql/schema/catchall_middleware_spec.rb
1055
- - spec/graphql/schema/enum_spec.rb
1056
- - spec/graphql/schema/enum_value_spec.rb
1217
+ - spec/graphql/schema/rescue_middleware_spec.rb
1218
+ - spec/graphql/schema/warden_spec.rb
1219
+ - spec/graphql/schema/loader_spec.rb
1220
+ - spec/graphql/schema/unique_within_type_spec.rb
1057
1221
  - spec/graphql/schema/field_spec.rb
1058
- - spec/graphql/schema/finder_spec.rb
1059
- - spec/graphql/schema/input_object_spec.rb
1060
- - spec/graphql/schema/instrumentation_spec.rb
1061
- - spec/graphql/schema/interface_spec.rb
1062
- - spec/graphql/schema/introspection_system_spec.rb
1222
+ - spec/graphql/schema/validation_spec.rb
1223
+ - spec/graphql/schema/enum_value_spec.rb
1063
1224
  - spec/graphql/schema/list_spec.rb
1064
- - spec/graphql/schema/loader_spec.rb
1225
+ - spec/graphql/schema/scalar_spec.rb
1226
+ - spec/graphql/schema/object_spec.rb
1227
+ - spec/graphql/schema/middleware_chain_spec.rb
1228
+ - spec/graphql/schema/field_extension_spec.rb
1229
+ - spec/graphql/schema/build_from_definition_spec.rb
1230
+ - spec/graphql/schema/finder_spec.rb
1231
+ - spec/graphql/schema/enum_spec.rb
1232
+ - spec/graphql/schema/member/type_system_helpers_spec.rb
1065
1233
  - spec/graphql/schema/member/accepts_definition_spec.rb
1066
1234
  - spec/graphql/schema/member/build_type_spec.rb
1067
- - spec/graphql/schema/member/has_fields_spec.rb
1068
1235
  - spec/graphql/schema/member/scoped_spec.rb
1069
- - spec/graphql/schema/member/type_system_helpers_spec.rb
1070
- - spec/graphql/schema/middleware_chain_spec.rb
1071
- - spec/graphql/schema/mutation_spec.rb
1072
- - spec/graphql/schema/non_null_spec.rb
1073
- - spec/graphql/schema/object_spec.rb
1074
- - spec/graphql/schema/printer_spec.rb
1075
- - spec/graphql/schema/relay_classic_mutation_spec.rb
1076
- - spec/graphql/schema/rescue_middleware_spec.rb
1077
- - spec/graphql/schema/resolver_spec.rb
1078
- - spec/graphql/schema/scalar_spec.rb
1236
+ - spec/graphql/schema/instrumentation_spec.rb
1079
1237
  - spec/graphql/schema/timeout_middleware_spec.rb
1080
1238
  - spec/graphql/schema/traversal_spec.rb
1081
1239
  - spec/graphql/schema/type_expression_spec.rb
1240
+ - spec/graphql/schema/non_null_spec.rb
1241
+ - spec/graphql/schema/input_object_spec.rb
1242
+ - spec/graphql/schema/printer_spec.rb
1243
+ - spec/graphql/schema/directive/feature_spec.rb
1244
+ - spec/graphql/schema/directive/transform_spec.rb
1245
+ - spec/graphql/schema/mutation_spec.rb
1246
+ - spec/graphql/schema/resolver_spec.rb
1247
+ - spec/graphql/schema/relay_classic_mutation_spec.rb
1248
+ - spec/graphql/schema/subscription_spec.rb
1249
+ - spec/graphql/schema/introspection_system_spec.rb
1250
+ - spec/graphql/schema/argument_spec.rb
1082
1251
  - spec/graphql/schema/union_spec.rb
1083
- - spec/graphql/schema/unique_within_type_spec.rb
1084
- - spec/graphql/schema/validation_spec.rb
1085
- - spec/graphql/schema/warden_spec.rb
1086
- - spec/graphql/schema_spec.rb
1087
- - spec/graphql/static_validation/rules/argument_literals_are_compatible_spec.rb
1088
- - spec/graphql/static_validation/rules/argument_names_are_unique_spec.rb
1089
- - spec/graphql/static_validation/rules/arguments_are_defined_spec.rb
1090
- - spec/graphql/static_validation/rules/directives_are_defined_spec.rb
1091
- - spec/graphql/static_validation/rules/directives_are_in_valid_locations_spec.rb
1092
- - spec/graphql/static_validation/rules/fields_are_defined_on_type_spec.rb
1093
- - spec/graphql/static_validation/rules/fields_have_appropriate_selections_spec.rb
1094
- - spec/graphql/static_validation/rules/fields_will_merge_spec.rb
1095
- - spec/graphql/static_validation/rules/fragment_names_are_unique_spec.rb
1096
- - spec/graphql/static_validation/rules/fragment_spreads_are_possible_spec.rb
1097
- - spec/graphql/static_validation/rules/fragment_types_exist_spec.rb
1098
- - spec/graphql/static_validation/rules/fragments_are_finite_spec.rb
1099
- - spec/graphql/static_validation/rules/fragments_are_named_spec.rb
1100
- - spec/graphql/static_validation/rules/fragments_are_on_composite_types_spec.rb
1101
- - spec/graphql/static_validation/rules/fragments_are_used_spec.rb
1102
- - spec/graphql/static_validation/rules/mutation_root_exists_spec.rb
1103
- - spec/graphql/static_validation/rules/no_definitions_are_present_spec.rb
1104
- - spec/graphql/static_validation/rules/operation_names_are_valid_spec.rb
1105
- - spec/graphql/static_validation/rules/required_arguments_are_present_spec.rb
1106
- - spec/graphql/static_validation/rules/subscription_root_exists_spec.rb
1107
- - spec/graphql/static_validation/rules/unique_directives_per_location_spec.rb
1108
- - spec/graphql/static_validation/rules/variable_default_values_are_correctly_typed_spec.rb
1109
- - spec/graphql/static_validation/rules/variable_names_are_unique_spec.rb
1110
- - spec/graphql/static_validation/rules/variable_usages_are_allowed_spec.rb
1111
- - spec/graphql/static_validation/rules/variables_are_input_types_spec.rb
1112
- - spec/graphql/static_validation/rules/variables_are_used_and_defined_spec.rb
1113
- - spec/graphql/static_validation/type_stack_spec.rb
1114
- - spec/graphql/static_validation/validator_spec.rb
1252
+ - spec/graphql/schema/interface_spec.rb
1253
+ - spec/graphql/directive/skip_directive_spec.rb
1254
+ - spec/graphql/non_null_type_spec.rb
1255
+ - spec/graphql/base_type_spec.rb
1256
+ - spec/graphql/execution/lookahead_spec.rb
1257
+ - spec/graphql/execution/execute_spec.rb
1258
+ - spec/graphql/execution/instrumentation_spec.rb
1259
+ - spec/graphql/execution/interpreter_spec.rb
1260
+ - spec/graphql/execution/multiplex_spec.rb
1261
+ - spec/graphql/execution/typecast_spec.rb
1262
+ - spec/graphql/execution/lazy/lazy_method_map_spec.rb
1263
+ - spec/graphql/execution/lazy_spec.rb
1264
+ - spec/graphql/upgrader/schema_spec.rb
1265
+ - spec/graphql/upgrader/member_spec.rb
1266
+ - spec/graphql/internal_representation/print_spec.rb
1267
+ - spec/graphql/internal_representation/rewrite_spec.rb
1268
+ - spec/graphql/tracing_spec.rb
1269
+ - spec/graphql/scalar_type_spec.rb
1270
+ - spec/graphql/argument_spec.rb
1271
+ - spec/graphql/interface_type_spec.rb
1272
+ - spec/graphql/function_spec.rb
1273
+ - spec/graphql/query_spec.rb
1274
+ - spec/graphql/query/context_spec.rb
1275
+ - spec/graphql/query/serial_execution/value_resolution_spec.rb
1276
+ - spec/graphql/query/result_spec.rb
1277
+ - spec/graphql/query/literal_input_spec.rb
1278
+ - spec/graphql/query/executor_spec.rb
1279
+ - spec/graphql/query/arguments_spec.rb
1115
1280
  - spec/graphql/string_type_spec.rb
1116
- - spec/graphql/subscriptions/serialize_spec.rb
1281
+ - spec/graphql/enum_type_spec.rb
1117
1282
  - spec/graphql/subscriptions_spec.rb
1118
- - spec/graphql/tracing/active_support_notifications_tracing_spec.rb
1119
- - spec/graphql/tracing/new_relic_tracing_spec.rb
1120
- - spec/graphql/tracing/platform_tracing_spec.rb
1121
- - spec/graphql/tracing/prometheus_tracing_spec.rb
1122
- - spec/graphql/tracing/scout_tracing_spec.rb
1123
- - spec/graphql/tracing/skylight_tracing_spec.rb
1124
- - spec/graphql/tracing_spec.rb
1125
- - spec/graphql/types/iso_8601_date_time_spec.rb
1126
- - spec/graphql/union_type_spec.rb
1127
- - spec/graphql/upgrader/member_spec.rb
1128
- - spec/graphql/upgrader/schema_spec.rb
1129
- - spec/rails_dependency_sanity_spec.rb
1130
- - spec/spec_helper.rb
1131
- - spec/support/base_generator_test.rb
1132
- - spec/support/dummy/data.rb
1133
- - spec/support/dummy/schema.rb
1134
- - spec/support/global_id.rb
1135
- - spec/support/jazz.rb
1136
- - spec/support/lazy_helpers.rb
1137
- - spec/support/magic_cards/schema.graphql
1138
- - spec/support/minimum_input_object.rb
1139
- - spec/support/new_relic.rb
1140
- - spec/support/parser/filename_example.graphql
1141
- - spec/support/parser/filename_example_error_1.graphql
1142
- - spec/support/parser/filename_example_error_2.graphql
1143
- - spec/support/skylight.rb
1144
- - spec/support/star_trek/data.rb
1145
- - spec/support/star_trek/schema.rb
1146
- - spec/support/star_wars/data.rb
1147
- - spec/support/star_wars/schema.rb
1148
- - spec/support/static_validation_helpers.rb
1283
+ - spec/graphql/id_type_spec.rb
1284
+ - spec/fixtures/upgrader/type_x.transformed.rb
1285
+ - spec/fixtures/upgrader/delete_project.transformed.rb
1286
+ - spec/fixtures/upgrader/gist_order_field.original.rb
1287
+ - spec/fixtures/upgrader/photo.transformed.rb
1288
+ - spec/fixtures/upgrader/subscribable.transformed.rb
1289
+ - spec/fixtures/upgrader/subscribable.original.rb
1290
+ - spec/fixtures/upgrader/delete_project.original.rb
1291
+ - spec/fixtures/upgrader/starrable.transformed.rb
1292
+ - spec/fixtures/upgrader/release_order.original.rb
1293
+ - spec/fixtures/upgrader/increment_count.original.rb
1294
+ - spec/fixtures/upgrader/account.transformed.rb
1295
+ - spec/fixtures/upgrader/photo.original.rb
1296
+ - spec/fixtures/upgrader/starrable.original.rb
1297
+ - spec/fixtures/upgrader/increment_count.transformed.rb
1298
+ - spec/fixtures/upgrader/date_time.transformed.rb
1299
+ - spec/fixtures/upgrader/type_x.original.rb
1300
+ - spec/fixtures/upgrader/blame_range.transformed.rb
1301
+ - spec/fixtures/upgrader/release_order.transformed.rb
1302
+ - spec/fixtures/upgrader/date_time.original.rb
1303
+ - spec/fixtures/upgrader/blame_range.original.rb
1304
+ - spec/fixtures/upgrader/gist_order_field.transformed.rb
1305
+ - spec/fixtures/upgrader/account.original.rb