Skip to content

v8.0.0

Compare
Choose a tag to compare
@morrys morrys released this 12 May 18:50
· 56 commits to master since this release
3894bb0

Improved

  • improve rendering for query without incremental data #241:
    when the response doesn't have the hasNext field set to true

    • data null, isLoading to true
    • data provided, isLoading a false (the query is resolved) (the re-render is called in onComplete function)

    when the responsehave the hasNext field set to true, so the response waiting

    • data null, isLoading to true
    • data provided, isLoading a true (waiting for possible incremental data) (the re-render is called in onNext function)
    • data provided, isLoading a false (the query is resolved) (the re-render is called in onComplete function)
  • support relay v15 #240

Fixed