-
Notifications
You must be signed in to change notification settings - Fork 14
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
fix: support empty nodes #15
Conversation
987b3db
to
306bbef
Compare
@prog-supdex , hey! Could you take a look at this change? Does it feel OK? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM 🙂
.github/workflows/ruby.yml
Outdated
@@ -12,12 +12,12 @@ jobs: | |||
strategy: | |||
fail-fast: false | |||
matrix: | |||
ruby: [ '2.6', '2.7', '3.0' ] | |||
ruby: [ '2.7', '3.0', '3.1', '3.2' ] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ruby 2.7 is not supported anymore, so I guess we can drop it as well
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Agree. Can you disable the status check for the PR for 2.6 and 2.7 and add 3.1 and 3.2?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
looks like I do not have a proper role 🙂
@bibendi, hey! Could you please take a look at this PR? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hey! Looks great!
Fixes #12
Context
GraphQL::Connections::Stable
fails when empty relation is passed. This PR fixes it.Related tickets
#12
What's inside
false
if nodes are emptyChecklist: