Skip to content

Fix typo in Ballerina GraphQL description #1370

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 9, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ github: ballerina-platform/module-ballerina-graphql
To run a `ballerina-graphql` client:

- Download and install [Ballerina Language](https://ballerina.io/downloads)
- Then run `bal run graphql_client.bal` to run the service, with with this code in the `graphql_client.bal` file:
- Then run `bal run graphql_client.bal` to run the service, with this code in the `graphql_client.bal` file:

```ballerina
import ballerina/graphql;
Expand All @@ -25,3 +25,7 @@ public function main() returns error? {
io:println(response.data.hello);
}
```

## Features
- Dependently-typed response retrieval with Ballerina type inferring
- Custom client generation support
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ github: ballerina-platform/module-ballerina-graphql
To run a `ballerina-graphql` hello world server:

- Download and install [Ballerina Language](https://ballerina.io/downloads)
- Then run `bal run graphql_service.bal` to run the service, with with this code in the `graphql_service.bal` file:
- Then run `bal run graphql_service.bal` to run the service, with this code in the `graphql_service.bal` file:

```ballerina
import ballerina/graphql;
Expand Down