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
8
8
To run a ` ballerina-graphql ` client:
9
9
10
10
- 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:
12
12
13
13
``` ballerina
14
14
import ballerina/graphql;
@@ -25,3 +25,7 @@ public function main() returns error? {
25
25
io:println(response.data.hello);
26
26
}
27
27
```
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
8
8
To run a ` ballerina-graphql ` hello world server:
9
9
10
10
- 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:
12
12
13
13
``` ballerina
14
14
import ballerina/graphql;
You can’t perform that action at this time.
0 commit comments