Skip to content
New issue

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

[Documentation] Fixed error in GraalVM native image docs #1897

Merged
merged 2 commits into from
Dec 4, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Fixed wrong Gradle Native Image app config example
simboel authored Dec 4, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit 2dc5069967460c4a70d8641768fd1bb580dbff20
4 changes: 2 additions & 2 deletions website/docs/plugins/gradle-plugin-usage-graalvm.mdx
Original file line number Diff line number Diff line change
@@ -38,9 +38,9 @@ fun Application.graphQLModule() {
queries = listOf(
HelloWorldQuery()
)
// mapping between interfaces/union KClass and their implementation KClasses
typeHierarchy = mapOf()
}
// mapping between interfaces/union KClass and their implementation KClasses
typeHierarchy = mapOf()
}
install(Routing) {
graphQLPostRoute()