Skip to content

Commit dabe069

Browse files
authored
Fix to serialize ExecutionResult from subscriptions (graphql-dotnet#2408)
1 parent 57e5495 commit dabe069

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project>
22

33
<PropertyGroup>
4-
<VersionPrefix>4.0.0-preview</VersionPrefix>
4+
<VersionPrefix>4.0.1-preview</VersionPrefix>
55
<LangVersion>8.0</LangVersion>
66
<PackageLicenseExpression>MIT</PackageLicenseExpression>
77
<PackageIcon>logo.64x64.png</PackageIcon>

src/GraphQL.SystemReactive/SubscriptionExecutionStrategy.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,7 @@ await listener.AfterExecutionAsync(context)
134134
// Return the result
135135
return new ExecutionResult
136136
{
137+
Executed = true,
137138
Data = new RootExecutionNode(null, null)
138139
{
139140
SubFields = new ExecutionNode[]

0 commit comments

Comments
 (0)