Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: g59/nestjs-plugins
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 09aab78815ca8ae87939f42b1cd8f6db8c750103
Choose a base ref
..
head repository: g59/nestjs-plugins
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 78ed2206e230f2ad965ee843a9e81b93c92a5f87
Choose a head ref
2 changes: 1 addition & 1 deletion .github/workflows/actionlint.yml
Original file line number Diff line number Diff line change
@@ -12,7 +12,7 @@ concurrency:

jobs:
actionlint:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: reviewdog/action-actionlint@v1
2 changes: 1 addition & 1 deletion .github/workflows/bump.yml
Original file line number Diff line number Diff line change
@@ -20,7 +20,7 @@ on:
type: string
jobs:
bump:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4

2 changes: 1 addition & 1 deletion .github/workflows/dependabot.yml
Original file line number Diff line number Diff line change
@@ -14,7 +14,7 @@ permissions:

jobs:
dependabot:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
if: github.actor == 'dependabot[bot]'
steps:
- name: Dependabot metadata
2 changes: 1 addition & 1 deletion .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
@@ -6,7 +6,7 @@ on:
jobs:
build:
timeout-minutes: 3
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
strategy:
matrix:
node-version: [lts/*, latest]
4 changes: 2 additions & 2 deletions .github/workflows/npm-publish-packages.yml
Original file line number Diff line number Diff line change
@@ -9,7 +9,7 @@ on:

jobs:
build:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
@@ -23,7 +23,7 @@ jobs:

publish-gpr:
needs: build
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
6 changes: 3 additions & 3 deletions example/package.json
Original file line number Diff line number Diff line change
@@ -16,17 +16,17 @@
"@apollo/server": "^4.11.2",
"@as-integrations/fastify": "^2.0.0",
"@nestjs/apollo": "^12.2.2",
"@nestjs/cli": "^10.4.8",
"@nestjs/cli": "^10.4.9",
"@nestjs/config": "^3.3.0",
"@nestjs/platform-fastify": "^10.4.13",
"@nestjs/platform-fastify": "^10.4.15",
"nestjs-firebase": "^10.0.0",
"nestjs-graphql-relay": "^10.0.0",
"nestjs-slack-webhook": "^10.0.0",
"nestjs-zendesk": "^10.0.0",
"uuid": "^11.0.3"
},
"devDependencies": {
"@nestjs/testing": "^10.4.13",
"@nestjs/testing": "^10.4.15",
"@types/uuid": "^10.0.0"
}
}
18 changes: 13 additions & 5 deletions example/src/schema.gql
Original file line number Diff line number Diff line change
@@ -39,16 +39,24 @@ type RecipesEdge {
type Query {
node(id: ID!): Node
recipes(
"""Paginate before opaque cursor"""
"""
Paginate before opaque cursor
"""
before: String

"""Paginate after opaque cursor"""
"""
Paginate after opaque cursor
"""
after: String

"""Paginate first"""
"""
Paginate first
"""
first: Int

"""Paginate last"""
"""
Paginate last
"""
last: Int
where: RecipeWhereInput
orderBy: OrderByInput
@@ -67,4 +75,4 @@ input OrderByInput {
enum OrderByDirection {
ASC
DESC
}
}
Loading