Skip to content

Releases: MichaelHilus/Nitrolize

Support for [List] field

17 May 22:01
Compare
Choose a tag to compare
Pre-release

Added support for list fields.
Example usage within a viewer or other graph type:

[List]
public ListField<EntityA> EntityList => (context) =>
{
    return new List<EntityA>()
    {
        new EntityA { Id = new Guid(), Name = "No1" },
        new EntityA { Id = new Guid(), Name = "No2" }
    };
};

.NET Core projects support

20 Apr 16:30
Compare
Choose a tag to compare
Pre-release

Added support for .NET Core projects and added a build configuration for easy NuGet package building.

Initial repository transfer

28 Mar 00:07
Compare
Choose a tag to compare
Pre-release

This is the first published version.
All files were transfered from an internal repository at progresso group to github. Namespaces were changed to "Nitrolize".
Next steps:

  • continue with code comments
  • start documentation in wiki
  • integrate helpers for Relay compatible Node field definition