This file contains hidden or 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
schema { | |
query: Query | |
mutation: Mutation | |
} | |
type Query { | |
session(id: ID!): Session | |
} | |
type Mutation { |
This file contains hidden or 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
public class InteractionSource | |
{ | |
public static readonly InteractionSource Global = new InteractionSource(); | |
private readonly IList<Func<NewInteraction, IObservable<Unit>>> handlers; | |
public InteractionSource() | |
{ | |
this.handlers = new List<Func<NewInteraction, IObservable<Unit>>>(); | |
} |