Skip to content

Commit

Permalink
Bump GraphQL Java dep (#587)
Browse files Browse the repository at this point in the history
* Bump GraphQL Java dep

* convert comment to javadoc
  • Loading branch information
felipe-gdr committed Sep 10, 2024
1 parent 2783a08 commit d9bb3cf
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
id("com.bnorm.power.kotlin-power-assert")
}

val graphqlJavaVersion = "0.0.0-2024-06-28T04-37-51-99ec596"
val graphqlJavaVersion = "0.0.0-2024-09-03T03-36-42-d6dbf61"
val slf4jVersion = "1.7.25"

dependencies {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -156,8 +156,10 @@ class NadelIncrementalResultSupport internal constructor(
coroutineScope.cancel()
}

// We have to return hasNext=false to indicate to clients that there's no more data coming.
// Note: the spec allows an empty payload which only contains hastNext=false to be returned.
/**
* We have to return hasNext=false to indicate to clients that there's no more data coming.
* Note: the spec allows an empty payload which only contains hastNext=false to be returned.
*/
private fun emptyLastResult(): DelayedIncrementalPartialResult {
return DelayedIncrementalPartialResultImpl.newIncrementalExecutionResult()
.incrementalItems(emptyList())
Expand Down

0 comments on commit d9bb3cf

Please sign in to comment.