forked from ChilliCream/graphql-platform
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes the error that caused the side not being scrollable (ChilliCrea…
…m#3415) Co-authored-by: Rafael Staib <me@rafaelstaib.com> Fixed also a ton of bugs.
- Loading branch information
1 parent
8a7c4b9
commit c59403c
Showing
192 changed files
with
4,807 additions
and
1,428 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
185 changes: 64 additions & 121 deletions
185
src/HotChocolate/AspNetCore/src/AspNetCore/Properties/AspNetCoreResources.Designer.cs
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 0 additions & 11 deletions
11
src/HotChocolate/AspNetCore/src/AspNetCore/Subscriptions/ISubscription.cs
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
28 changes: 28 additions & 0 deletions
28
src/HotChocolate/AspNetCore/src/AspNetCore/Subscriptions/ISubscriptionSession.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
using System; | ||
using HotChocolate.Execution.Processing; | ||
|
||
namespace HotChocolate.AspNetCore.Subscriptions | ||
{ | ||
/// <summary> | ||
/// Represents a session with an execution engine subscription. | ||
/// A subscription session is created within a <see cref="ISocketSession"/>. | ||
/// Each socket session can have multiple subscription sessions open. | ||
/// </summary> | ||
public interface ISubscriptionSession : IDisposable | ||
{ | ||
/// <summary> | ||
/// An event that indicates that the underlying subscription has completed. | ||
/// </summary> | ||
event EventHandler? Completed; | ||
|
||
/// <summary> | ||
/// Gets the subscription id that the client has provided. | ||
/// </summary> | ||
string Id { get; } | ||
|
||
/// <summary> | ||
/// Gets the underlying subscription. | ||
/// </summary> | ||
ISubscription Subscription { get; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.