Skip to content

Commit

Permalink
update ci runners.
Browse files Browse the repository at this point in the history
  • Loading branch information
gmac committed Dec 16, 2023
1 parent 2eae2f7 commit 6cded3a
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ jobs:
ruby: 3.2
- gemfile: Gemfile
ruby: 3.1
- gemfile: gemfiles/graphql_1.13.gemfile
- gemfile: gemfiles/graphql_1.13.9.gemfile
ruby: 3.1
- gemfile: Gemfile
- gemfile: gemfiles/ruby_2.7.gemfile
ruby: 2.7

steps:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ The above representation of a `Product` type provides no unique data beyond a ke

#### List queries

It's okay ([even preferable](https://www.youtube.com/watch?v=VmK0KBHTcWs) in many circumstances) to provide a list accessor as a stitching query. The only requirement is that both the field argument and return type must be lists, and the query results are expected to be a mapped set with `null` holding the position of missing results.
It's okay ([even preferable](#batching) in most circumstances) to provide a list accessor as a stitching query. The only requirement is that both the field argument and return type must be lists, and the query results are expected to be a mapped set with `null` holding the position of missing results.

```graphql
type Query {
Expand Down
6 changes: 6 additions & 0 deletions gemfiles/ruby_2.7.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# frozen_string_literal: true

source 'https://rubygems.org'
gemspec

gem 'bundler', '2.4.22'

0 comments on commit 6cded3a

Please sign in to comment.