You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
graphql-java parser added a default token limit of 15000 (to address DoS), one manifold-sql customer has graphql models that exceed this limit, which causes graphql compilation failure.
Since manifold parses graphql exclusively at compile time, this limit can be ignored, thus we can make it sufficiently large as to never reach it in practice. Other runtime specific limits may need addressing as well. See ParserOptions.newParserOptions().
The text was updated successfully, but these errors were encountered:
graphql-java parser added a default token limit of 15000 (to address DoS), one manifold-sql customer has graphql models that exceed this limit, which causes graphql compilation failure.
Since manifold parses graphql exclusively at compile time, this limit can be ignored, thus we can make it sufficiently large as to never reach it in practice. Other runtime specific limits may need addressing as well. See
ParserOptions.newParserOptions()
.The text was updated successfully, but these errors were encountered: