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
type LaunchConnection { # add this below the Query type as an additional type.
cursor: String!
hasMore: Boolean!
launches: [Launch]!
}
But if no launches are retrieved (for example if you pass in a cursor for which hasMore was false), then the code will carefully return null for the cursor:
Cursor is defined as non-nullable:
But if no launches are retrieved (for example if you pass in a cursor for which
hasMore
was false), then the code will carefully returnnull
for the cursor:Resulting in INTERNAL_SERVER_ERROR:
![Screen Shot 2019-07-13 at 8 22 12 PM](https://user-images.githubusercontent.com/143488/61178870-f29ee100-a5ab-11e9-8ca1-85d791fcfb34.png)
The text was updated successfully, but these errors were encountered: