Skip to content

Commit

Permalink
Complete Code Migration
Browse files Browse the repository at this point in the history
  • Loading branch information
alehechka committed Jul 27, 2022
1 parent 292d3d7 commit d8463e2
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 70 deletions.
60 changes: 0 additions & 60 deletions .circleci/config.yml

This file was deleted.

9 changes: 3 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,6 @@
#

dist/
example/**/google
example/**/graphql
example/**/schema.graphql
example/**/github.com
example/**/app
playground

**/graphql/app
**/grpc/app
12 changes: 9 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# CHANGELOG

## UNRELEASED

- Resolve Import Issues ([#4](https://github.com/alehechka/forked-grpc-graphql-gateway/pull/4))
- Convert module path ([#3](https://github.com/alehechka/forked-grpc-graphql-gateway/pull/3))
- Refactor GraphqlHandler to expose host and DialOptions ([#1](https://github.com/alehechka/forked-grpc-graphql-gateway/pull/1))
- Resolve source_relative not respecting subpath proto files ([#2](https://github.com/alehechka/forked-grpc-graphql-gateway/pull/2))

## v0.22.0

- support parths=source_relative option [#51](https://github.com/ysugimoto/grpc-graphql-gateway/pull/51)
Expand Down Expand Up @@ -138,7 +145,7 @@ Then typename is `User_Type_User`.

### Convert field name to CamelCase option

In protocol buffers, all message field name should define as *lower_snake_case* referred by [Style Guide](https://developers.google.com/protocol-buffers/docs/style#message_and_field_names). But in GraphQL Schema, typically each field name should define as *lowerCamelCase*, so we add more option in `protoc-gen-graphql`:
In protocol buffers, all message field name should define as _lower_snake_case_ referred by [Style Guide](https://developers.google.com/protocol-buffers/docs/style#message_and_field_names). But in GraphQL Schema, typically each field name should define as _lowerCamelCase_, so we add more option in `protoc-gen-graphql`:

```shell
protoc -I.
Expand All @@ -163,7 +170,7 @@ type User_Type_User {
}
```

To keep backward compatibility, compile as *lower_snake_case* as default. If you want to define any graphql field as lowerCamelCase, please supply this option.
To keep backward compatibility, compile as _lower_snake_case_ as default. If you want to define any graphql field as lowerCamelCase, please supply this option.

## v0.12.0

Expand Down Expand Up @@ -196,7 +203,6 @@ If middleware returns `MiddlewareError`, the runtime error will be:
{"data": null, "errors": [{"message": "Message field value of MiddlewareError", "extensions": {"code": "Code field value of MiddlewareError"}]}
```


## v0.9.1

### Changed middleware fucntion type
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,9 @@ Currently we don't support some Protobuf types:

## Author

Yoshiaki Sugimoto
Original Author - [Yoshiaki Sugimoto](https://github.com/ysugimoto/grpc-graphql-gateway)

Due to personal requirements and certain breaking changes, this repository has been migrated into new one. Full credits for the basis of the code go to [@ysugimoto](https://github.com/ysugimoto)

## License

Expand Down

0 comments on commit d8463e2

Please sign in to comment.