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);
        }
예제 #2
0
        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);
        }