GraphQL.Code.Generator
1.5.0
See the version list below for details.
dotnet add package GraphQL.Code.Generator --version 1.5.0
NuGet\Install-Package GraphQL.Code.Generator -Version 1.5.0
<PackageReference Include="GraphQL.Code.Generator" Version="1.5.0" />
paket add GraphQL.Code.Generator --version 1.5.0
#r "nuget: GraphQL.Code.Generator, 1.5.0"
// Install GraphQL.Code.Generator as a Cake Addin #addin nuget:?package=GraphQL.Code.Generator&version=1.5.0 // Install GraphQL.Code.Generator as a Cake Tool #tool nuget:?package=GraphQL.Code.Generator&version=1.5.0
1.5.0 Added GroupByOperationOn queries and related repository. This will provide option to group by on multiple fields (, separated fields) and then perform an operation like count, sum, max or min on another field. Also provide option to apply where and pagination on group by.
1.4.0 Added Distinct, DistinctBy, and GroupBy functionalities.
/////////////////////////////////////// Pagination and Search Example //////////////////////////////////////////////////////////////////////
"Query" : query($pagination: PaginationInputType, $search: SearchInputType) {order(pagination: $pagination, search: $search) {id, orderDate quantity customerId}} ,"Variables" :{ "pagination" : {"take": 100, "skip": 100, "sorts": [{"fieldName": "created", "direction": "desc"}, {"fieldName": "quantity", "direction": "asc"}]}, "search" : {"filters": [{ "logic": "or", "operation": "eq", "value": 3245, "fieldName": "orderId" }, { "logic": "and", "operation": "inlist", "value": "32,66,87,199", "fieldName": "customerId" }, { "logic": "and", "operation": "gte", "value": 600, "fieldName": "customerId" } ]}}
///////////////////////////////////// List of Operators //////////////////////////////////////////////////////////////////////////////////////////
gte, gt, eq, neq, lte, lt, contains, notcontains, startswith, endswith, inlist, notinlist
///////////////////////////////////////Configuration Section//////////////////////////////////////////////////////////////////////////////////// Configuration.UseDataAnnotationsToFindKeys = true; Configuration.MakeAllFieldsOfViewNullable = true; Configuration.ViewNameFilter = new Regex(@"^Vw.*$"); Configuration.ElementsToGenerate = Configuration.Elements.Types | Configuration.Elements.Repositoy | Configuration.Elements.Query; Configuration.ORMType = Configuration.ORMTypes.EFCore;
Configuration.TypeClasses.RepositoryConstructorParameter = "RepositoryNamespace.RepositoryClass repositoryConstructorMemberName"; Configuration.TypeClasses.RepositoryPrivateMember = "RepositoryNamespace.RepositoryClass repositoryPrivateMemberName"; // In constructor of Type class it will translate as this.repositoryPrivateMemberName = respositoryConstructorMemberName;
Configuration.TypeClasses.TypeClassesNamespace = "GraphQL.Types.Custom"; // This will translate as namespace GraphQL.Types.Custom {...
Configuration.TypeClasses.EntityClassesNamespacesInclude = new Regex(@"^EntitiesNamespace$", RegexOptions.IgnoreCase); // Any namespace in input dll (where entities classes are) match above regular expression will be included.
Configuration.TypeClasses.EntityClassNamesExclude = new Regex(@"^Rusp.*$|^DatabaseInitializer$|^DBManager$|^DataSeeder$", RegexOptions.IgnoreCase); // Any class match above regular expression will be excluded
Configuration.TypeClasses.AdditionalNamespaces = "MyNamespace1, MyNamespace2";
string path = @"c:\dllFolder\EntitiesAssembly.dll";
Configuration.InputDllNameAndPath = path; Configuration.TypeClasses.EntityClassNamesInclude = new Regex(@"^DomainClass1$|^DomainClass2$", RegexOptions.IgnoreCase); // Any class in input dll (where entities classes are) match above regular expression will be included.
Dictionary<string, string> pluralizationFilter = new Dictionary<string, string>(); pluralizationFilter.Add("Person", "Persons"); Configuration.PluralizationFilter = pluralizationFilter;
Configuration.TypeClasses.AdditionalCodeToBeAddedInConstructor = "InitializePartial();"; //Above setting will create InitializePartial(); in the Type Classes constructor and this can be used to call partial class method. If you don't have InitializePartial in your // partial class or you don't have partial class at all then remove above line. But you can add this later if in all the classes you called some partial class method.
Configuration.RepositoryClass.DBContextPrivateMember = "MyDbContextNamespace.MyDbContextclass _context"; Configuration.RepositoryClass.DBContextConstructorParameter = "MyDbContextNamespace.MyDbContextclass context"; Configuration.RepositoryClass.RepositoryClassName = "CustomRepository"; Configuration.RepositoryClass.RepositoryClassesNamespace = "Custom.Repository.namespace"; Configuration.RepositoryClass.AdditionalNamespaces = "MyNamespace1, MyNamespace2"; //Configuration.RepositoryClass.MethodExcludeFilter = new List<string> { "GetPersons" }; //Configuration.RepositoryClass.IsMethodExcludeFilterApplyToInterface = true;
Configuration.QueryClass.RepositoryConstructorParameter = "RepositoryNamespace.RepositoryClass rMp1oViPb3EdvcJ5kxoqe52RuaiK6YiUYo"; Configuration.QueryClass.RepositoryPrivateMember Configuration.QueryClass.QueryClassName = "CustomGraphQLQuery"; Configuration.QueryClass.QueryClassNamespace = "Graph.Queries"; Configuration.QueryClass.AdditionalNamespaces = "MyNamespace1, MyNamespace2";
int fileCount = GraphQL.Code.Generator.GraphQLCodeGenerator.GenerateGraphQLCode();
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp3.1 is compatible. |
.NET Framework | net45 is compatible. net451 is compatible. net452 is compatible. net46 was computed. net461 was computed. net462 is compatible. net463 was computed. net47 was computed. net471 was computed. net472 is compatible. net48 was computed. net481 was computed. |
-
.NETCoreApp 3.1
- Pluralize.NET (>= 1.0.2)
- System.CodeDom (>= 4.7.0)
- System.ComponentModel.Annotations (>= 4.7.0)
-
.NETFramework 4.5
- Pluralize.NET (>= 1.0.2)
- System.ComponentModel.Annotations (>= 4.7.0)
-
.NETFramework 4.5.1
- Pluralize.NET (>= 1.0.2)
- System.ComponentModel.Annotations (>= 4.7.0)
-
.NETFramework 4.5.2
- Pluralize.NET (>= 1.0.2)
- System.ComponentModel.Annotations (>= 4.7.0)
-
.NETFramework 4.6.2
- Pluralize.NET (>= 1.0.2)
- System.CodeDom (>= 4.7.0)
- System.ComponentModel.Annotations (>= 4.7.0)
-
.NETFramework 4.7.2
- Pluralize.NET (>= 1.0.2)
- System.CodeDom (>= 4.7.0)
- System.ComponentModel.Annotations (>= 4.7.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.5.1 | 125 | 6/27/2024 |
1.5.0.1 | 102 | 6/25/2024 |
1.5.0 | 93 | 6/25/2024 |
1.4.0.2 | 103 | 6/22/2024 |
1.4.0.1 | 108 | 6/21/2024 |
1.4.0 | 113 | 6/20/2024 |
1.3.0.1 | 99 | 6/3/2024 |
1.2.0.5 | 457 | 11/8/2022 |
1.2.0.4 | 335 | 11/7/2022 |
1.2.0.3 | 2,188 | 7/29/2020 |
1.2.0.2 | 473 | 7/29/2020 |
1.2.0.1 | 451 | 7/28/2020 |
1.2.0 | 439 | 7/27/2020 |
1.5.0 Added GroupByOperationOn queries and related repository. This will provide option to group by on multiple fields (, separated fields) and then perform an operation like count, sum, max or min on another field. Also provide option to apply where and pagination on group by.