├── .editorconfig ├── .gitignore ├── Directory.Build.props ├── GraphQlClientGenerator.sln ├── GraphQlLogo.png ├── License.md ├── README.md ├── src ├── GraphQlClientGenerator.Console │ ├── Commands.cs │ ├── GraphQlCSharpFileHelper.cs │ ├── GraphQlClientGenerator.Console.csproj │ ├── Program.cs │ └── ProgramOptions.cs └── GraphQlClientGenerator │ ├── BaseClasses.cs │ ├── CSharpHelper.cs │ ├── Extensions.cs │ ├── GenerationContext.cs │ ├── GraphQlClientGenerator.csproj │ ├── GraphQlClientSourceGenerator.cs │ ├── GraphQlGenerator.cs │ ├── GraphQlGeneratorConfiguration.cs │ ├── GraphQlHttpUtilities.cs │ ├── GraphQlIntrospection.cs │ ├── GraphQlIntrospectionSchema.cs │ ├── GraphQlTypeKind.cs │ ├── ICodeFileEmitter.cs │ ├── IScalarFieldTypeMappingProvider.cs │ ├── KeyValueParameterParser.cs │ ├── MultipleFileGenerationContext.cs │ ├── NamingHelper.cs │ ├── OutputType.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── RegexScalarFieldTypeMappingProvider.cs │ └── SingleFileGenerationContext.cs └── test └── GraphQlClientGenerator.Test ├── CompilationHelper.cs ├── DefaultScalarFieldTypeMappingProviderTest.cs ├── ExpectedMultipleFilesContext ├── Avatar ├── Avatar.FileScoped ├── Home ├── Home.FileScoped ├── IncludeDirective ├── IncludeDirective.FileScoped ├── MutationQueryBuilder └── MutationQueryBuilder.FileScoped ├── GlobalFixture.cs ├── GraphQlClientGenerator.Test.csproj ├── GraphQlClientSourceGeneratorTest.cs ├── GraphQlGeneratorTest.cs ├── GraphQlIntrospectionSchemaTest.cs ├── NamingHelperTest.cs ├── RegexCustomScalarFieldTypeMappingRules ├── TestSchemas ├── TestSchema ├── TestSchema2 ├── TestSchema3 ├── TestSchemaWithDeprecatedFields ├── TestSchemaWithNestedListsOfComplexObjects └── TestSchemaWithUnions └── VerifierExpectations ├── GraphQlClientSourceGeneratorTest.SourceGenerationWithRegexCustomScalarFieldTypeMappingProvider.verified.txt ├── GraphQlClientSourceGeneratorTest.SourceGeneration_scalarFieldTypeMappingProviderTypeName=False.verified.txt ├── GraphQlClientSourceGeneratorTest.SourceGeneration_scalarFieldTypeMappingProviderTypeName=True.verified.txt ├── GraphQlGeneratorTest.DeprecatedAttributes.verified.txt ├── GraphQlGeneratorTest.GenerateDataClasses.verified.txt ├── GraphQlGeneratorTest.GenerateDataClassesWithTypeConfiguration_csharpVersion=CSharp12.verified.txt ├── GraphQlGeneratorTest.GenerateDataClassesWithTypeConfiguration_csharpVersion=Compatible.verified.txt ├── GraphQlGeneratorTest.GenerateFormatMasks.verified.txt ├── GraphQlGeneratorTest.GenerateFullClientCSharpFile.verified.txt ├── GraphQlGeneratorTest.GenerateQueryBuilder.verified.txt ├── GraphQlGeneratorTest.GeneratedQueryWithAllFragments.verified.txt ├── GraphQlGeneratorTest.NewCSharpSyntaxWithClassPrefixAndSuffix.verified.txt ├── GraphQlGeneratorTest.WithNestedListsOfComplexObjects.verified.txt ├── GraphQlGeneratorTest.WithNullableReferencesAndPropertyNullabilityBySchema.verified.txt └── GraphQlGeneratorTest.WithUnions.verified.txt /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Husqvik/GraphQlClientGenerator/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Husqvik/GraphQlClientGenerator/HEAD/.gitignore -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Husqvik/GraphQlClientGenerator/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /GraphQlClientGenerator.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Husqvik/GraphQlClientGenerator/HEAD/GraphQlClientGenerator.sln -------------------------------------------------------------------------------- /GraphQlLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Husqvik/GraphQlClientGenerator/HEAD/GraphQlLogo.png -------------------------------------------------------------------------------- /License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Husqvik/GraphQlClientGenerator/HEAD/License.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Husqvik/GraphQlClientGenerator/HEAD/README.md -------------------------------------------------------------------------------- /src/GraphQlClientGenerator.Console/Commands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Husqvik/GraphQlClientGenerator/HEAD/src/GraphQlClientGenerator.Console/Commands.cs -------------------------------------------------------------------------------- /src/GraphQlClientGenerator.Console/GraphQlCSharpFileHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Husqvik/GraphQlClientGenerator/HEAD/src/GraphQlClientGenerator.Console/GraphQlCSharpFileHelper.cs -------------------------------------------------------------------------------- /src/GraphQlClientGenerator.Console/GraphQlClientGenerator.Console.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Husqvik/GraphQlClientGenerator/HEAD/src/GraphQlClientGenerator.Console/GraphQlClientGenerator.Console.csproj -------------------------------------------------------------------------------- /src/GraphQlClientGenerator.Console/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Husqvik/GraphQlClientGenerator/HEAD/src/GraphQlClientGenerator.Console/Program.cs -------------------------------------------------------------------------------- /src/GraphQlClientGenerator.Console/ProgramOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Husqvik/GraphQlClientGenerator/HEAD/src/GraphQlClientGenerator.Console/ProgramOptions.cs -------------------------------------------------------------------------------- /src/GraphQlClientGenerator/BaseClasses.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Husqvik/GraphQlClientGenerator/HEAD/src/GraphQlClientGenerator/BaseClasses.cs -------------------------------------------------------------------------------- /src/GraphQlClientGenerator/CSharpHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Husqvik/GraphQlClientGenerator/HEAD/src/GraphQlClientGenerator/CSharpHelper.cs -------------------------------------------------------------------------------- /src/GraphQlClientGenerator/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Husqvik/GraphQlClientGenerator/HEAD/src/GraphQlClientGenerator/Extensions.cs -------------------------------------------------------------------------------- /src/GraphQlClientGenerator/GenerationContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Husqvik/GraphQlClientGenerator/HEAD/src/GraphQlClientGenerator/GenerationContext.cs -------------------------------------------------------------------------------- /src/GraphQlClientGenerator/GraphQlClientGenerator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Husqvik/GraphQlClientGenerator/HEAD/src/GraphQlClientGenerator/GraphQlClientGenerator.csproj -------------------------------------------------------------------------------- /src/GraphQlClientGenerator/GraphQlClientSourceGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Husqvik/GraphQlClientGenerator/HEAD/src/GraphQlClientGenerator/GraphQlClientSourceGenerator.cs -------------------------------------------------------------------------------- /src/GraphQlClientGenerator/GraphQlGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Husqvik/GraphQlClientGenerator/HEAD/src/GraphQlClientGenerator/GraphQlGenerator.cs -------------------------------------------------------------------------------- /src/GraphQlClientGenerator/GraphQlGeneratorConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Husqvik/GraphQlClientGenerator/HEAD/src/GraphQlClientGenerator/GraphQlGeneratorConfiguration.cs -------------------------------------------------------------------------------- /src/GraphQlClientGenerator/GraphQlHttpUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Husqvik/GraphQlClientGenerator/HEAD/src/GraphQlClientGenerator/GraphQlHttpUtilities.cs -------------------------------------------------------------------------------- /src/GraphQlClientGenerator/GraphQlIntrospection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Husqvik/GraphQlClientGenerator/HEAD/src/GraphQlClientGenerator/GraphQlIntrospection.cs -------------------------------------------------------------------------------- /src/GraphQlClientGenerator/GraphQlIntrospectionSchema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Husqvik/GraphQlClientGenerator/HEAD/src/GraphQlClientGenerator/GraphQlIntrospectionSchema.cs -------------------------------------------------------------------------------- /src/GraphQlClientGenerator/GraphQlTypeKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Husqvik/GraphQlClientGenerator/HEAD/src/GraphQlClientGenerator/GraphQlTypeKind.cs -------------------------------------------------------------------------------- /src/GraphQlClientGenerator/ICodeFileEmitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Husqvik/GraphQlClientGenerator/HEAD/src/GraphQlClientGenerator/ICodeFileEmitter.cs -------------------------------------------------------------------------------- /src/GraphQlClientGenerator/IScalarFieldTypeMappingProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Husqvik/GraphQlClientGenerator/HEAD/src/GraphQlClientGenerator/IScalarFieldTypeMappingProvider.cs -------------------------------------------------------------------------------- /src/GraphQlClientGenerator/KeyValueParameterParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Husqvik/GraphQlClientGenerator/HEAD/src/GraphQlClientGenerator/KeyValueParameterParser.cs -------------------------------------------------------------------------------- /src/GraphQlClientGenerator/MultipleFileGenerationContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Husqvik/GraphQlClientGenerator/HEAD/src/GraphQlClientGenerator/MultipleFileGenerationContext.cs -------------------------------------------------------------------------------- /src/GraphQlClientGenerator/NamingHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Husqvik/GraphQlClientGenerator/HEAD/src/GraphQlClientGenerator/NamingHelper.cs -------------------------------------------------------------------------------- /src/GraphQlClientGenerator/OutputType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Husqvik/GraphQlClientGenerator/HEAD/src/GraphQlClientGenerator/OutputType.cs -------------------------------------------------------------------------------- /src/GraphQlClientGenerator/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Runtime.CompilerServices; 2 | [assembly: InternalsVisibleTo("GraphQlClientGenerator.Test")] 3 | -------------------------------------------------------------------------------- /src/GraphQlClientGenerator/RegexScalarFieldTypeMappingProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Husqvik/GraphQlClientGenerator/HEAD/src/GraphQlClientGenerator/RegexScalarFieldTypeMappingProvider.cs -------------------------------------------------------------------------------- /src/GraphQlClientGenerator/SingleFileGenerationContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Husqvik/GraphQlClientGenerator/HEAD/src/GraphQlClientGenerator/SingleFileGenerationContext.cs -------------------------------------------------------------------------------- /test/GraphQlClientGenerator.Test/CompilationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Husqvik/GraphQlClientGenerator/HEAD/test/GraphQlClientGenerator.Test/CompilationHelper.cs -------------------------------------------------------------------------------- /test/GraphQlClientGenerator.Test/DefaultScalarFieldTypeMappingProviderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Husqvik/GraphQlClientGenerator/HEAD/test/GraphQlClientGenerator.Test/DefaultScalarFieldTypeMappingProviderTest.cs -------------------------------------------------------------------------------- /test/GraphQlClientGenerator.Test/ExpectedMultipleFilesContext/Avatar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Husqvik/GraphQlClientGenerator/HEAD/test/GraphQlClientGenerator.Test/ExpectedMultipleFilesContext/Avatar -------------------------------------------------------------------------------- /test/GraphQlClientGenerator.Test/ExpectedMultipleFilesContext/Avatar.FileScoped: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Husqvik/GraphQlClientGenerator/HEAD/test/GraphQlClientGenerator.Test/ExpectedMultipleFilesContext/Avatar.FileScoped -------------------------------------------------------------------------------- /test/GraphQlClientGenerator.Test/ExpectedMultipleFilesContext/Home: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Husqvik/GraphQlClientGenerator/HEAD/test/GraphQlClientGenerator.Test/ExpectedMultipleFilesContext/Home -------------------------------------------------------------------------------- /test/GraphQlClientGenerator.Test/ExpectedMultipleFilesContext/Home.FileScoped: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Husqvik/GraphQlClientGenerator/HEAD/test/GraphQlClientGenerator.Test/ExpectedMultipleFilesContext/Home.FileScoped -------------------------------------------------------------------------------- /test/GraphQlClientGenerator.Test/ExpectedMultipleFilesContext/IncludeDirective: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Husqvik/GraphQlClientGenerator/HEAD/test/GraphQlClientGenerator.Test/ExpectedMultipleFilesContext/IncludeDirective -------------------------------------------------------------------------------- /test/GraphQlClientGenerator.Test/ExpectedMultipleFilesContext/IncludeDirective.FileScoped: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Husqvik/GraphQlClientGenerator/HEAD/test/GraphQlClientGenerator.Test/ExpectedMultipleFilesContext/IncludeDirective.FileScoped -------------------------------------------------------------------------------- /test/GraphQlClientGenerator.Test/ExpectedMultipleFilesContext/MutationQueryBuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Husqvik/GraphQlClientGenerator/HEAD/test/GraphQlClientGenerator.Test/ExpectedMultipleFilesContext/MutationQueryBuilder -------------------------------------------------------------------------------- /test/GraphQlClientGenerator.Test/ExpectedMultipleFilesContext/MutationQueryBuilder.FileScoped: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Husqvik/GraphQlClientGenerator/HEAD/test/GraphQlClientGenerator.Test/ExpectedMultipleFilesContext/MutationQueryBuilder.FileScoped -------------------------------------------------------------------------------- /test/GraphQlClientGenerator.Test/GlobalFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Husqvik/GraphQlClientGenerator/HEAD/test/GraphQlClientGenerator.Test/GlobalFixture.cs -------------------------------------------------------------------------------- /test/GraphQlClientGenerator.Test/GraphQlClientGenerator.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Husqvik/GraphQlClientGenerator/HEAD/test/GraphQlClientGenerator.Test/GraphQlClientGenerator.Test.csproj -------------------------------------------------------------------------------- /test/GraphQlClientGenerator.Test/GraphQlClientSourceGeneratorTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Husqvik/GraphQlClientGenerator/HEAD/test/GraphQlClientGenerator.Test/GraphQlClientSourceGeneratorTest.cs -------------------------------------------------------------------------------- /test/GraphQlClientGenerator.Test/GraphQlGeneratorTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Husqvik/GraphQlClientGenerator/HEAD/test/GraphQlClientGenerator.Test/GraphQlGeneratorTest.cs -------------------------------------------------------------------------------- /test/GraphQlClientGenerator.Test/GraphQlIntrospectionSchemaTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Husqvik/GraphQlClientGenerator/HEAD/test/GraphQlClientGenerator.Test/GraphQlIntrospectionSchemaTest.cs -------------------------------------------------------------------------------- /test/GraphQlClientGenerator.Test/NamingHelperTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Husqvik/GraphQlClientGenerator/HEAD/test/GraphQlClientGenerator.Test/NamingHelperTest.cs -------------------------------------------------------------------------------- /test/GraphQlClientGenerator.Test/RegexCustomScalarFieldTypeMappingRules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Husqvik/GraphQlClientGenerator/HEAD/test/GraphQlClientGenerator.Test/RegexCustomScalarFieldTypeMappingRules -------------------------------------------------------------------------------- /test/GraphQlClientGenerator.Test/TestSchemas/TestSchema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Husqvik/GraphQlClientGenerator/HEAD/test/GraphQlClientGenerator.Test/TestSchemas/TestSchema -------------------------------------------------------------------------------- /test/GraphQlClientGenerator.Test/TestSchemas/TestSchema2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Husqvik/GraphQlClientGenerator/HEAD/test/GraphQlClientGenerator.Test/TestSchemas/TestSchema2 -------------------------------------------------------------------------------- /test/GraphQlClientGenerator.Test/TestSchemas/TestSchema3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Husqvik/GraphQlClientGenerator/HEAD/test/GraphQlClientGenerator.Test/TestSchemas/TestSchema3 -------------------------------------------------------------------------------- /test/GraphQlClientGenerator.Test/TestSchemas/TestSchemaWithDeprecatedFields: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Husqvik/GraphQlClientGenerator/HEAD/test/GraphQlClientGenerator.Test/TestSchemas/TestSchemaWithDeprecatedFields -------------------------------------------------------------------------------- /test/GraphQlClientGenerator.Test/TestSchemas/TestSchemaWithNestedListsOfComplexObjects: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Husqvik/GraphQlClientGenerator/HEAD/test/GraphQlClientGenerator.Test/TestSchemas/TestSchemaWithNestedListsOfComplexObjects -------------------------------------------------------------------------------- /test/GraphQlClientGenerator.Test/TestSchemas/TestSchemaWithUnions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Husqvik/GraphQlClientGenerator/HEAD/test/GraphQlClientGenerator.Test/TestSchemas/TestSchemaWithUnions -------------------------------------------------------------------------------- /test/GraphQlClientGenerator.Test/VerifierExpectations/GraphQlClientSourceGeneratorTest.SourceGenerationWithRegexCustomScalarFieldTypeMappingProvider.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Husqvik/GraphQlClientGenerator/HEAD/test/GraphQlClientGenerator.Test/VerifierExpectations/GraphQlClientSourceGeneratorTest.SourceGenerationWithRegexCustomScalarFieldTypeMappingProvider.verified.txt -------------------------------------------------------------------------------- /test/GraphQlClientGenerator.Test/VerifierExpectations/GraphQlClientSourceGeneratorTest.SourceGeneration_scalarFieldTypeMappingProviderTypeName=False.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Husqvik/GraphQlClientGenerator/HEAD/test/GraphQlClientGenerator.Test/VerifierExpectations/GraphQlClientSourceGeneratorTest.SourceGeneration_scalarFieldTypeMappingProviderTypeName=False.verified.txt -------------------------------------------------------------------------------- /test/GraphQlClientGenerator.Test/VerifierExpectations/GraphQlClientSourceGeneratorTest.SourceGeneration_scalarFieldTypeMappingProviderTypeName=True.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Husqvik/GraphQlClientGenerator/HEAD/test/GraphQlClientGenerator.Test/VerifierExpectations/GraphQlClientSourceGeneratorTest.SourceGeneration_scalarFieldTypeMappingProviderTypeName=True.verified.txt -------------------------------------------------------------------------------- /test/GraphQlClientGenerator.Test/VerifierExpectations/GraphQlGeneratorTest.DeprecatedAttributes.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Husqvik/GraphQlClientGenerator/HEAD/test/GraphQlClientGenerator.Test/VerifierExpectations/GraphQlGeneratorTest.DeprecatedAttributes.verified.txt -------------------------------------------------------------------------------- /test/GraphQlClientGenerator.Test/VerifierExpectations/GraphQlGeneratorTest.GenerateDataClasses.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Husqvik/GraphQlClientGenerator/HEAD/test/GraphQlClientGenerator.Test/VerifierExpectations/GraphQlGeneratorTest.GenerateDataClasses.verified.txt -------------------------------------------------------------------------------- /test/GraphQlClientGenerator.Test/VerifierExpectations/GraphQlGeneratorTest.GenerateDataClassesWithTypeConfiguration_csharpVersion=CSharp12.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Husqvik/GraphQlClientGenerator/HEAD/test/GraphQlClientGenerator.Test/VerifierExpectations/GraphQlGeneratorTest.GenerateDataClassesWithTypeConfiguration_csharpVersion=CSharp12.verified.txt -------------------------------------------------------------------------------- /test/GraphQlClientGenerator.Test/VerifierExpectations/GraphQlGeneratorTest.GenerateDataClassesWithTypeConfiguration_csharpVersion=Compatible.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Husqvik/GraphQlClientGenerator/HEAD/test/GraphQlClientGenerator.Test/VerifierExpectations/GraphQlGeneratorTest.GenerateDataClassesWithTypeConfiguration_csharpVersion=Compatible.verified.txt -------------------------------------------------------------------------------- /test/GraphQlClientGenerator.Test/VerifierExpectations/GraphQlGeneratorTest.GenerateFormatMasks.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Husqvik/GraphQlClientGenerator/HEAD/test/GraphQlClientGenerator.Test/VerifierExpectations/GraphQlGeneratorTest.GenerateFormatMasks.verified.txt -------------------------------------------------------------------------------- /test/GraphQlClientGenerator.Test/VerifierExpectations/GraphQlGeneratorTest.GenerateFullClientCSharpFile.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Husqvik/GraphQlClientGenerator/HEAD/test/GraphQlClientGenerator.Test/VerifierExpectations/GraphQlGeneratorTest.GenerateFullClientCSharpFile.verified.txt -------------------------------------------------------------------------------- /test/GraphQlClientGenerator.Test/VerifierExpectations/GraphQlGeneratorTest.GenerateQueryBuilder.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Husqvik/GraphQlClientGenerator/HEAD/test/GraphQlClientGenerator.Test/VerifierExpectations/GraphQlGeneratorTest.GenerateQueryBuilder.verified.txt -------------------------------------------------------------------------------- /test/GraphQlClientGenerator.Test/VerifierExpectations/GraphQlGeneratorTest.GeneratedQueryWithAllFragments.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Husqvik/GraphQlClientGenerator/HEAD/test/GraphQlClientGenerator.Test/VerifierExpectations/GraphQlGeneratorTest.GeneratedQueryWithAllFragments.verified.txt -------------------------------------------------------------------------------- /test/GraphQlClientGenerator.Test/VerifierExpectations/GraphQlGeneratorTest.NewCSharpSyntaxWithClassPrefixAndSuffix.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Husqvik/GraphQlClientGenerator/HEAD/test/GraphQlClientGenerator.Test/VerifierExpectations/GraphQlGeneratorTest.NewCSharpSyntaxWithClassPrefixAndSuffix.verified.txt -------------------------------------------------------------------------------- /test/GraphQlClientGenerator.Test/VerifierExpectations/GraphQlGeneratorTest.WithNestedListsOfComplexObjects.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Husqvik/GraphQlClientGenerator/HEAD/test/GraphQlClientGenerator.Test/VerifierExpectations/GraphQlGeneratorTest.WithNestedListsOfComplexObjects.verified.txt -------------------------------------------------------------------------------- /test/GraphQlClientGenerator.Test/VerifierExpectations/GraphQlGeneratorTest.WithNullableReferencesAndPropertyNullabilityBySchema.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Husqvik/GraphQlClientGenerator/HEAD/test/GraphQlClientGenerator.Test/VerifierExpectations/GraphQlGeneratorTest.WithNullableReferencesAndPropertyNullabilityBySchema.verified.txt -------------------------------------------------------------------------------- /test/GraphQlClientGenerator.Test/VerifierExpectations/GraphQlGeneratorTest.WithUnions.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Husqvik/GraphQlClientGenerator/HEAD/test/GraphQlClientGenerator.Test/VerifierExpectations/GraphQlGeneratorTest.WithUnions.verified.txt --------------------------------------------------------------------------------