Skip to content
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

Bump the GraphQL version #268

Closed
wants to merge 9 commits into from
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
org.gradle.caching=true
group=io.ballerina
version=0.9.0
version=0.10.0-SNAPSHOT

#dependency
ballerinaLangVersion=2201.8.5
ballerinaLangVersion=2201.9.0-20240321-130200-5b03581e
puppycrawlCheckstyleVersion=10.12.1
githubJohnrengelmanShadowVersion=8.1.1
underCouchDownloadVersion=5.4.0
Expand Down Expand Up @@ -50,7 +50,7 @@ stdlibHttpVersion=2.10.4
stdlibWebsocketVersion=2.10.1

# Level 07
stdlibGraphqlVersion=1.11.0
stdlibGraphqlVersion=1.11.1-20240322-102100-d659afb

# Ballerinax Observer
observeVersion=1.2.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ public distinct service class Student {
*ContactInfo;
*Info;
*ExamInfo;

# The id of the student, unique identifier
resource function get id() returns int {
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ public distinct service class Book {

public distinct service class Student {
*Info;

resource function get id() returns int {
}

Expand All @@ -27,6 +28,7 @@ public distinct service class Student {

public distinct service class Teacher {
*Info;

resource function get id() returns int {
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ public type Book record {|

public distinct service class Student {
*Info;

resource function get id() returns int {
}

Expand All @@ -26,6 +27,7 @@ public distinct service class Student {

public distinct service class Teacher {
*Info;

resource function get id() returns int {
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ public type Info distinct service object {

public distinct service class Student {
*Info;

resource function get id() returns int {
}

Expand All @@ -30,6 +31,7 @@ public distinct service class Student {

public distinct service class Teacher {
*AddressInfo;

resource function get id() returns int {
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ public type Info distinct service object {
public distinct service class Student {
*Info;
*ExamInfo;

resource function get id() returns int {
}

Expand All @@ -33,6 +34,7 @@ public distinct service class Student {
public distinct service class Teacher {
*Info;
*ContactInfo;

resource function get id() returns int {
}

Expand Down
Loading