Skip to content

Commit 0c0c5eb

Browse files
committed
update changelog
update deps audit fix
1 parent e89ec85 commit 0c0c5eb

5 files changed

Lines changed: 1131 additions & 689 deletions

File tree

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
--------------------------------------------------
2+
<a name="0.3.0"></a>
3+
# 0.3.0 (2020-04-04)
4+
5+
## Breaking changes
6+
- transform Uploads to `Stream`s before calling action by [@dylanwulf](https://github.com/dylanwulf). [#71](https://github.com/moleculerjs/moleculer-apollo-server/pull/71)
7+
8+
## Changes
9+
- update dependencies
10+
111
--------------------------------------------------
212
<a name="0.2.2"></a>
313
# 0.2.2 (2020-03-04)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
## Install
1616
```
17-
npm i moleculer-apollo-server moleculer-web@next graphql
17+
npm i moleculer-apollo-server moleculer-web graphql
1818
```
1919

2020
## Usage

examples/full/generated-schema.gql

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,21 @@
11
scalar Date
22

3+
scalar Timestamp
4+
5+
type Query {
6+
posts(limit: Int): [Post]
7+
users(limit: Int): [User]
8+
}
9+
310
type Mutation {
411
upvote(id: Int!, userID: Int!): Post
512
downvote(id: Int!, userID: Int!): Post
613
}
714

15+
type Subscription {
16+
vote(userID: Int!): String!
17+
}
18+
819
"""This type describes a post entity."""
920
type Post {
1021
id: Int!
@@ -16,17 +27,6 @@ type Post {
1627
error: String
1728
}
1829

19-
type Query {
20-
posts(limit: Int): [Post]
21-
users(limit: Int): [User]
22-
}
23-
24-
type Subscription {
25-
vote(userID: Int!): String!
26-
}
27-
28-
scalar Timestamp
29-
3030
"""This type describes a user entity."""
3131
type User {
3232
id: Int!

0 commit comments

Comments
 (0)