Skip to content

Commit

Permalink
update snapshots
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewlock committed Nov 28, 2024
1 parent dd0a5dd commit 46ed942
Show file tree
Hide file tree
Showing 9 changed files with 41 additions and 1,182 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -188,16 +188,11 @@ private string GetSuffix(string packageVersion)
{
// An empty package version means we're in the sample,
// which targets the latest version of the package.
if (string.IsNullOrEmpty(packageVersion) || new Version(packageVersion) >= new Version("14.0.0"))
if (string.IsNullOrEmpty(packageVersion) || new Version(packageVersion) >= new Version("13.1.0"))
{
return string.Empty;
}

if (new Version(packageVersion) >= new Version("13.1.0"))
{
return ".Pre_14_0_0";
}

return ".Pre_13_1_0";
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ mutation m {
TraceId: Id_8,
SpanId: Id_14,
Name: graphql.execute,
Resource: Uncompleted operation,
Resource: Query ErrorQuery,
Service: Samples.HotChocolate-graphql,
Type: graphql,
ParentId: Id_9,
Expand Down Expand Up @@ -304,19 +304,22 @@ errors: [
error.stack:
errors: [
{
"message": "The specified root type `Subscription` is not supported by this server.",
"message": "Unexpected Execution Error",
"locations": [
{
"line": 1,
"column": 18
},
]
},
]
,
error.type: HotChocolate.Error,
graphql.operation.type: Uncompleted,
graphql.operation.name: ErrorQuery,
graphql.operation.type: Query,
graphql.source:
subscription NotImplementedSub {
throwNotImplementedException {
name
}
query ErrorQuery {
throwException
},
language: dotnet,
runtime-id: Guid_1,
Expand Down

This file was deleted.

Loading

0 comments on commit 46ed942

Please sign in to comment.