Skip to content

Commit

Permalink
HotChocolate v14 support added
Browse files Browse the repository at this point in the history
  • Loading branch information
snifter committed Dec 31, 2024
1 parent 04ad82b commit f0f106e
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Sample/Sample.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="HotChocolate.AspNetCore" Version="13.7.0" />
<PackageReference Include="HotChocolate.AspNetCore" Version="14.3.0" />
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/Graph.ArgumentValidator.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="HotChocolate.Execution" Version="13.7.0" />
<PackageReference Include="HotChocolate.Execution" Version="14.3.0" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
"errors": [
{
"message": "The String field is not a valid e-mail address.",
"locations": [
{
"line": 1,
"column": 3
}
],
"path": [
"email"
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
"errors": [
{
"message": "Email already exist",
"locations": [
{
"line": 1,
"column": 3
}
],
"path": [
"email"
],
Expand All @@ -13,4 +19,4 @@
"data": {
"checkDuplicateEmail": null
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
"errors": [
{
"message": "The Email field is not a valid e-mail address.",
"locations": [
{
"line": 1,
"column": 3
}
],
"path": [
"input"
],
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"errors": [
{
"message": "\u0060scoreCard\u0060 is a required field and cannot be null.",
"message": "`scoreCard` is a required field and cannot be null.",
"locations": [
{
"line": 1,
Expand All @@ -13,7 +13,7 @@
],
"extensions": {
"field": "scoreCard",
"specifiedBy": "http://spec.graphql.org/October2021/#sec-Input-Object-Required-Fields"
"specifiedBy": "https://spec.graphql.org/October2021/#sec-Input-Object-Required-Fields"
}
}
]
Expand Down

0 comments on commit f0f106e

Please sign in to comment.