protected override void Configure(IInputObjectTypeDescriptor <CreateUserInput> descriptor) { base.Configure(descriptor); descriptor.Name(nameof(CreateUserInput)); descriptor.Description("Input for creating a new User account."); descriptor.Ignore(p => p.Provider); }
protected override void Configure(IInputObjectTypeDescriptor <RemoveGameInput> descriptor) { descriptor.Description("Represents the input to remove a game."); descriptor .Field(g => g.GameId) .Description("Represents the game id for the game."); base.Configure(descriptor); }