File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
src/content/code/language-support/ballerina Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ github: ballerina-platform/module-ballerina-graphql
88To run a ` ballerina-graphql ` client:
99
1010- Download and install [ Ballerina Language] ( https://ballerina.io/downloads )
11- - Then run ` bal run graphql_client.bal ` to run the service, with with this code in the ` graphql_client.bal ` file:
11+ - Then run ` bal run graphql_client.bal ` to run the service, with this code in the ` graphql_client.bal ` file:
1212
1313``` ballerina
1414import ballerina/graphql;
@@ -25,3 +25,7 @@ public function main() returns error? {
2525 io:println(response.data.hello);
2626}
2727```
28+
29+ ## Features
30+ - Dependently-typed response retrieval with Ballerina type inferring
31+ - Custom client generation support
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ github: ballerina-platform/module-ballerina-graphql
88To run a ` ballerina-graphql ` hello world server:
99
1010- Download and install [ Ballerina Language] ( https://ballerina.io/downloads )
11- - Then run ` bal run graphql_service.bal ` to run the service, with with this code in the ` graphql_service.bal ` file:
11+ - Then run ` bal run graphql_service.bal ` to run the service, with this code in the ` graphql_service.bal ` file:
1212
1313``` ballerina
1414import ballerina/graphql;
You can’t perform that action at this time.
0 commit comments