Skip to content

Commit

Permalink
fix(graphql): Add support for extending abstract object types TriPSs#82
Browse files Browse the repository at this point in the history
  • Loading branch information
doug-martin committed Apr 16, 2020
1 parent 8132446 commit 5151ceb
Show file tree
Hide file tree
Showing 12 changed files with 1,418 additions and 673 deletions.
28 changes: 28 additions & 0 deletions .commitlintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"extends": ["@commitlint/config-angular"],
"rules": {
"subject-case": [
2,
"always",
["sentence-case", "start-case", "pascal-case", "upper-case", "lower-case"]
],
"type-enum": [
2,
"always",
[
"build",
"chore",
"ci",
"docs",
"feat",
"fix",
"perf",
"refactor",
"revert",
"style",
"test",
"sample"
]
]
}
}
1 change: 1 addition & 0 deletions .huskyrc
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"skipCI": false,
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "npm test"
}
}
4 changes: 4 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# v0.8.3

* [FIXED] Add support for extending abstract object types [#82](https://github.com/doug-martin/nestjs-query/issues/82)

# v0.8.2

* [TESTS] Updated graphql types tests to check schema rather than spies.
Expand Down
11 changes: 11 additions & 0 deletions documentation/blog/2020-04-15-v0.8.3.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
id: v0.8.3
title: v0.8.3
author: Doug Martin
author_title: Creator
author_url: https://github.com/doug-martin
author_image_url: https://avatars1.githubusercontent.com/u/361261?v=4
tags: [releases, patch]
---

* [FIXED] Add support for extending abstract object types [#82](https://github.com/doug-martin/nestjs-query/issues/82)
Loading

0 comments on commit 5151ceb

Please sign in to comment.