public void SetGroup(RootMutation mutation)
 {
     mutation.Field <RoomWallObjectMutation>
     (
         "wallObject",
         resolve: _ => new { });
 }
Ejemplo n.º 2
0
 public void SetGroup(RootMutation mutation)
 {
     mutation.Field <MaterialMutation>(
         "material",
         resolve: _ => new { }
         );
 }
Ejemplo n.º 3
0
 public void SetGroup(RootMutation mutation)
 {
     mutation.Field <UserMutations>(
         "user",
         resolve: context => new { });
 }
Ejemplo n.º 4
0
 public void SetGroup(RootMutation mutation)
 {
     mutation.Field <ShuttleMutations>(
         "shuttles",
         resolve: context => new { });
 }
Ejemplo n.º 5
0
 public void SetGroup(RootMutation mutation)
 {
     mutation.Field <ExplorersTeamMutations>(
         FIELD_NAME,
         resolve: context => new { });
 }
Ejemplo n.º 6
0
 public void SetGroup(RootMutation mutation)
 {
     mutation.Field <UserFriendMutation>(
         "friend",
         resolve: _ => new { });
 }
Ejemplo n.º 7
0
 public void SetGroup(RootMutation mutation)
 {
     mutation.Field <HouseMutation>(
         "house",
         resolve: _ => new { });
 }
Ejemplo n.º 8
0
 public void SetGroup(RootMutation mutation)
 {
     mutation.Field <PlanetMutations>(
         "planets",
         resolve: context => new { });
 }
Ejemplo n.º 9
0
 public void SetGroup(RootMutation mutation)
 {
     mutation.Field <ReportMutation>(
         "report",
         resolve: _ => new { });
 }
Ejemplo n.º 10
0
 public void SetGroup(RootMutation mutation)
 {
     mutation.Field <UserMutation>(
         "users",
         resolve: _ => new { });
 }
Ejemplo n.º 11
0
 public void SetGroup(RootMutation mutation)
 {
     mutation.Field <RobotMutations>(
         "robots",
         resolve: context => new { });
 }
 public void SetGroup(RootMutation mutation)
 {
     mutation.Field <ContributorMutation>(
         "contributor",
         resolve: _ => new { });
 }
Ejemplo n.º 13
0
 public void SetGroup(RootMutation mutation)
 {
     mutation.Field <ScheduleMutation>(
         "schedule",
         resolve: _ => new { });
 }
Ejemplo n.º 14
0
 public void SetGroup(RootMutation mutation)
 {
     mutation.Field <CaptainMutations>(
         "captains",
         resolve: context => new { });
 }
Ejemplo n.º 15
0
 public void SetGroup(RootMutation mutation)
 {
     mutation.Field <PublisherMutation>(
         "publishers",
         resolve: context => new { });
 }
 public void SetGroup(RootMutation mutation)
 {
     mutation.Field <MaterialExpenditureMutation>(
         "expenditures",
         resolve: _ => new { });
 }
Ejemplo n.º 17
0
 public void SetGroup(RootMutation mutation)
 {
     mutation.Field <AccountMutation>(
         "account",
         resolve: _ => new { });
 }
Ejemplo n.º 18
0
 public void SetGroup(RootMutation mutation)
 {
     mutation.Field <LoginMutation>(
         "login",
         resolve: _ => new { });
 }
Ejemplo n.º 19
0
 public void SetGroup(RootMutation mutation)
 {
     mutation.Field <RoomJobMutation>(
         "roomJob",
         resolve: _ => new { });
 }
 public void SetGroup(RootMutation mutation)
 {
     mutation.Field <PlanetMutations>(
         FIELD_NAME,
         resolve: context => new { });
 }
Ejemplo n.º 21
0
 public void SetGroup(RootMutation mutation)
 {
     mutation.Field <PermissionMutations>(
         "permissions",
         resolve: context => new { });
 }
Ejemplo n.º 22
0
 public void SetGroup(RootMutation mutation)
 {
     mutation.Field <ArticleMutation>(
         "articles",
         resolve: context => new { });
 }
Ejemplo n.º 23
0
 public void SetGroup(RootMutation mutation)
 {
     mutation.Field <ExplorationMutations>(
         "explorations",
         resolve: context => new { });
 }
Ejemplo n.º 24
0
 public void SetGroup(RootMutation mutation)
 {
     mutation.Field <TeamMutations>(
         "teams",
         resolve: context => new { });
 }