Skip to content

Commit

Permalink
Introduce Parallel Execution for the GraphQL Resolvers (#2113)
Browse files Browse the repository at this point in the history
Co-authored-by: MohamedSabthar <sabtharugc0@gmail.com>
Co-authored-by: DimuthuMadushan <madushanwmd@gmail.com>
  • Loading branch information
3 people authored Dec 4, 2024
1 parent 9137f28 commit 26c2874
Show file tree
Hide file tree
Showing 27 changed files with 749 additions and 282 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ hs_err_pid*
target
build
bin
./**/cache
.cache/

# Ballerina
velocity.log*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

[ballerina]
dependencies-toml-version = "2"
distribution-version = "2201.11.0-20241121-075100-c4c87cbc"
distribution-version = "2201.11.0-20241204-121300-fc33b755"

[[package]]
org = "ballerina"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

[ballerina]
dependencies-toml-version = "2"
distribution-version = "2201.11.0-20241121-075100-c4c87cbc"
distribution-version = "2201.11.0-20241204-121300-fc33b755"

[[package]]
org = "ballerina"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

[ballerina]
dependencies-toml-version = "2"
distribution-version = "2201.11.0-20241121-075100-c4c87cbc"
distribution-version = "2201.11.0-20241204-121300-fc33b755"

[[package]]
org = "ballerina"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

[ballerina]
dependencies-toml-version = "2"
distribution-version = "2201.11.0-20241121-075100-c4c87cbc"
distribution-version = "2201.11.0-20241204-121300-fc33b755"

[[package]]
org = "ballerina"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

[ballerina]
dependencies-toml-version = "2"
distribution-version = "2201.11.0-20241121-075100-c4c87cbc"
distribution-version = "2201.11.0-20241204-121300-fc33b755"

[[package]]
org = "ballerina"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

[ballerina]
dependencies-toml-version = "2"
distribution-version = "2201.11.0-20241121-075100-c4c87cbc"
distribution-version = "2201.11.0-20241204-121300-fc33b755"

[[package]]
org = "ballerina"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

[ballerina]
dependencies-toml-version = "2"
distribution-version = "2201.11.0-20241121-075100-c4c87cbc"
distribution-version = "2201.11.0-20241204-121300-fc33b755"

[[package]]
org = "ballerina"
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"errors": [
{
"message":"Input type \"ProfileDetail\" does not have a field \"address\".",
"locations": [
{
"line": 3,
"column": 60
}
]
}
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"errors": [
{
"message": "Input type \"ProfileDetail\" does not have a field \"address\".",
"locations": [
{
"line": 3,
"column": 21
}
]
},
{
"message": "Input type \"Movie\" does not have a field \"episodes\".",
"locations": [
{
"line": 3,
"column": 21
}
]
},
{
"message": "Input type \"Info\" does not have a field \"dir\".",
"locations": [
{
"line": 3,
"column": 21
}
]
}
]
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

[ballerina]
dependencies-toml-version = "2"
distribution-version = "2201.11.0-20241121-075100-c4c87cbc"
distribution-version = "2201.11.0-20241204-121300-fc33b755"

[[package]]
org = "ballerina"
Expand Down
2 changes: 1 addition & 1 deletion ballerina-tests/graphql-test-common/Dependencies.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

[ballerina]
dependencies-toml-version = "2"
distribution-version = "2201.11.0-20241121-075100-c4c87cbc"
distribution-version = "2201.11.0-20241204-121300-fc33b755"

[[package]]
org = "ballerina"
Expand Down
2 changes: 1 addition & 1 deletion ballerina/Dependencies.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

[ballerina]
dependencies-toml-version = "2"
distribution-version = "2201.11.0-20241121-075100-c4c87cbc"
distribution-version = "2201.11.0-20241204-121300-fc33b755"

[[package]]
org = "ballerina"
Expand Down
Loading

0 comments on commit 26c2874

Please sign in to comment.