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
When a Kotlin or Java verb has a map in its signature, the schema created from it is incorrect.
This verb:
@Export @Verb public @NotNull Map<K, V> theVerb(@NotNull Map<K, V> val) { return val; }
Generates this schema:
export verb theVerb({K: K}) {K: K}
When it should be:
export verb theVerb({K: V}) {K: V}
The text was updated successfully, but these errors were encountered:
chore: test complex types across runtimes (#2656)
ed06fbe
Closes #2357 One test is disabled pending #2651
b805ee8
Successfully merging a pull request may close this issue.
When a Kotlin or Java verb has a map in its signature, the schema created from it is incorrect.
This verb:
Generates this schema:
When it should be:
The text was updated successfully, but these errors were encountered: