Skip to content

Commit

Permalink
chore: upgrade @nestjs v8
Browse files Browse the repository at this point in the history
  • Loading branch information
9renpoto committed Aug 14, 2021
1 parent 9094577 commit a8a2611
Show file tree
Hide file tree
Showing 8 changed files with 6,599 additions and 8,760 deletions.
8 changes: 4 additions & 4 deletions example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,16 @@
"dependencies": {
"@nestjs/cli": "^8.0.2",
"@nestjs/config": "^1.0.0",
"@nestjs/platform-express": "^7.5.3",
"apollo-server-express": "^2.19.0",
"@nestjs/platform-express": "^8.0.6",
"apollo-server-types": "^0.9.0",
"nestjs-firebase": "^1.2.0",
"nestjs-graphql-relay": "^1.2.0",
"nestjs-slack-webhook": "^1.2.0",
"nestjs-zendesk": "^1.2.0"
},
"devDependencies": {
"@nestjs/testing": "7.6.18",
"@types/node": "15.6.1",
"@nestjs/testing": "8.0.6",
"@types/node": "16.6.1",
"@types/supertest": "2.0.11",
"supertest": "6.1.5",
"ts-loader": "9.2.5",
Expand Down
64 changes: 32 additions & 32 deletions example/src/schema.gql
Original file line number Diff line number Diff line change
Expand Up @@ -2,30 +2,38 @@
# THIS FILE WAS AUTOMATICALLY GENERATED (DO NOT MODIFY)
# ------------------------------------------------------

"""
A date-time string at UTC, such as 2019-12-03T09:54:33Z, compliant with the date-time format.
"""
scalar DateTime

interface Node {
id: ID!
}

enum OrderByDirection {
ASC
DESC
type PageInfo {
startCursor: String
endCursor: String
hasPreviousPage: Boolean!
hasNextPage: Boolean!
}

input OrderByInput {
createdAt: OrderByDirection
updatedAt: OrderByDirection
type Recipe implements Node {
id: ID!
title: String!
description: String
creationDate: DateTime!
ingredients: [String!]!
}

type PageInfo {
hasNextPage: Boolean
hasPreviousPage: Boolean
startCursor: String
endCursor: String
"""
A date-time string at UTC, such as 2019-12-03T09:54:33Z, compliant with the date-time format.
"""
scalar DateTime

type RecipesConnection {
pageInfo: PageInfo!
edges: [RecipesEdge!]!
}

type RecipesEdge {
node: Recipe!
cursor: String!
}

type Query {
Expand All @@ -47,24 +55,16 @@ type Query {
): RecipesConnection!
}

type Recipe implements Node {
id: ID!
title: String!
description: String
creationDate: DateTime!
ingredients: [String!]!
}

type RecipesConnection {
pageInfo: PageInfo!
edges: [RecipesEdge!]!
input RecipeWhereInput {
title: String
}

type RecipesEdge {
node: Recipe!
cursor: String!
input OrderByInput {
createdAt: OrderByDirection
updatedAt: OrderByDirection
}

input RecipeWhereInput {
title: String
enum OrderByDirection {
ASC
DESC
}
Loading

0 comments on commit a8a2611

Please sign in to comment.