We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
There are many features in GraphQL-Ruby which have been replaced by better ones. In GraphQL-Ruby 3.0, I'd like to remove the old ones.
tracer(...)
trace_with(...)
LegacyTrace
instrument(:query | :multiplex)
instrument(:query | :multiplex, ...)
instrument
Analysis::AST
Analysis
AST
(query_|mutation_|subscription)_execution_strategy
lazy_resolve(Dataloader::Source::Request)
.resolve(...)
nonblocking: true
parse_with_racc
2.2.0
reject_numbers_followed_by_names
The text was updated successfully, but these errors were encountered:
No branches or pull requests
There are many features in GraphQL-Ruby which have been replaced by better ones. In GraphQL-Ruby 3.0, I'd like to remove the old ones.
tracer(...)
-style tracing, which is replaced with the more-efficienttrace_with(...)
-style tracing.LegacyTrace
instrument(:query | :multiplex)
, which can also be replaced withtrace_with(...)
instrument(:query | :multiplex, ...)
into trace modules, deprecateinstrument
#4771Analysis::AST
toAnalysis
? Could still be aliased asAST
.(query_|mutation_|subscription)_execution_strategy
lazy_resolve(Dataloader::Source::Request)
.resolve(...)
dataloader requests #4807nonblocking: true
parse_with_racc
2.2.0
+ #4818reject_numbers_followed_by_names
default to true instead of false (added in Add an option to reject numbers followed by names #4924)The text was updated successfully, but these errors were encountered: