Skip to content

Commit bcf7bbd

Browse files
authored
Merge pull request #54 from grafbase/tomhoule-ltkwwuorxxow
grpc: fix description, release 0.1.2
2 parents f80969b + 5705724 commit bcf7bbd

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

extensions/grpc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "grpc"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
edition = "2024"
55
license = "Apache-2.0"
66

extensions/grpc/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# gRPC extension
22

3-
This extension allows exposing gRPC services as part of your federated GraphQL graph. The extension assumes protocol buffer payloads for the communication between the Gateway and the gRPC services.
3+
This extension allows exposing gRPC services as part of your federated GraphQL API. The extension assumes protocol buffer payloads for the communication between the Gateway and the gRPC services.
44

55
The core directive is `@grpcMethod`. It can be used on any output field, like so:
66

@@ -16,7 +16,7 @@ It takes the following arguments:
1616
- `method`: The name of the gRPC method.
1717
- `input`: The input type of the gRPC method. It can be `"*"` to use the whole input, or a specific transformation. See the docs for [InputValueSet](https://grafbase.com/docs/reference/extensions/grafbase-spec/v1.0#inputvalueset). It defaults to `"*"`.
1818

19-
The service must also be defined on your GraphQL schema's schema definition, along with the required types:
19+
The service must also be defined on a schema definition, along with the required types:
2020

2121
```graphql
2222
extend schema

extensions/grpc/extension.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[extension]
22
name = "grpc"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
kind = "resolver"
5-
description = "Integrate the Grafbase Gateway communicate with your gRPC services declaratively."
5+
description = "Integrate the Grafbase Gateway with your gRPC services declaratively."
66
repository_url = "https://github.com/grafbase/extensions/tree/main/extensions/grpc"
77
license = "Apache-2.0"
88

0 commit comments

Comments
 (0)