Skip to content

Commit

Permalink
Fix GraphQL file/name issue
Browse files Browse the repository at this point in the history
  • Loading branch information
David Dooling committed Aug 9, 2018
1 parent 93e6442 commit 20ce7e8
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 1 deletion.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Expand Up @@ -11,6 +11,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

- By default, address channels on a transform. [#474](https://github.com/atomist/sdm/issues/474)

### Changed

- Fixed name of OnIssueAction GraphQL subscription

### Deprecated

- OnNewIssue GraphQL subscription

## [0.4.0](https://github.com/atomist/sdm/compare/0.3.1...0.4.0) - 2018-08-07

### Added
Expand Down
25 changes: 25 additions & 0 deletions src/graphql/subscription/OnIssueAction.graphql
@@ -0,0 +1,25 @@
subscription OnIssueAction {
Issue {
number
title
state
body
openedBy {
login
person {
...PersonFields
}
}
createdAt
updatedAt
repo {
...CoreRepoFieldsAndChannels
}
assignees {
login
person {
...PersonFields
}
}
}
}
3 changes: 2 additions & 1 deletion src/graphql/subscription/OnNewIssue.graphql
@@ -1,4 +1,5 @@
subscription OnIssueAction {
# deprecated, use OnIssueAction
subscription OnNewIssue {
Issue {
number
title
Expand Down

0 comments on commit 20ce7e8

Please sign in to comment.