File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Linq2GraphQL.Client.Subscriptions Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ public WebsocketRequest(string type)
1313
1414 [ JsonPropertyName ( "type" ) ] public string Type { get ; set ; }
1515
16- [ JsonPropertyName ( "payload" ) ] public GraphQLRequest Payload { get ; set ; }
16+ [ JsonPropertyName ( "payload" ) ] public object Payload { get ; set ; }
1717}
1818
1919//public class WebsocketRequestPayload
Original file line number Diff line number Diff line change @@ -5,5 +5,5 @@ public class GraphClientOptions
55{
66 public bool UseSafeMode { get ; set ; } = false ;
77 public SubscriptionProtocol SubscriptionProtocol { get ; set ; } = default ;
8- public Func < GraphClient , Task < GraphQLRequest > > WSConnectionInitPayload { get ; internal set ; } = opts => null ;
8+ public Func < GraphClient , Task < GraphQLRequest > > WSConnectionInitPayload { get ; set ; } = opts => null ;
99}
You can’t perform that action at this time.
0 commit comments