Skip to content

Commit

Permalink
update changelog
Browse files Browse the repository at this point in the history
update deps
audit fix
  • Loading branch information
icebob committed Apr 4, 2020
1 parent e89ec85 commit 0c0c5eb
Show file tree
Hide file tree
Showing 5 changed files with 1,131 additions and 689 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
--------------------------------------------------
<a name="0.3.0"></a>
# 0.3.0 (2020-04-04)

## Breaking changes
- transform Uploads to `Stream`s before calling action by [@dylanwulf](https://github.com/dylanwulf). [#71](https://github.com/moleculerjs/moleculer-apollo-server/pull/71)

## Changes
- update dependencies

--------------------------------------------------
<a name="0.2.2"></a>
# 0.2.2 (2020-03-04)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

## Install
```
npm i moleculer-apollo-server moleculer-web@next graphql
npm i moleculer-apollo-server moleculer-web graphql
```

## Usage
Expand Down
22 changes: 11 additions & 11 deletions examples/full/generated-schema.gql
Original file line number Diff line number Diff line change
@@ -1,10 +1,21 @@
scalar Date

scalar Timestamp

type Query {
posts(limit: Int): [Post]
users(limit: Int): [User]
}

type Mutation {
upvote(id: Int!, userID: Int!): Post
downvote(id: Int!, userID: Int!): Post
}

type Subscription {
vote(userID: Int!): String!
}

"""This type describes a post entity."""
type Post {
id: Int!
Expand All @@ -16,17 +27,6 @@ type Post {
error: String
}

type Query {
posts(limit: Int): [Post]
users(limit: Int): [User]
}

type Subscription {
vote(userID: Int!): String!
}

scalar Timestamp

"""This type describes a user entity."""
type User {
id: Int!
Expand Down
Loading

0 comments on commit 0c0c5eb

Please sign in to comment.