├── .config └── dotnet-tools.json ├── .editorconfig ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug.md │ └── feature_request.md └── workflows │ └── dotnet.yml ├── .gitignore ├── CLAUDE.md ├── Directory.Build.props ├── LICENCE ├── README.md ├── ZeroQL.sln ├── ZeroQL.sln.DotSettings ├── docs └── articles │ ├── 0.showcase.md │ ├── 1.fragments.md │ └── 2.zeroql-v2.md ├── nuget.config ├── nugets └── keep folder in git.txt ├── pack.ps1 ├── schema.verified.json └── src ├── Benchmarks ├── StrawberryShake.Client │ ├── .graphqlrc.json │ ├── Query │ │ └── GetUser.graphql │ ├── StrawberryShake.Client.csproj │ └── schema.graphql └── ZeroQL.Benchmark │ ├── BenchmarkDotNet.Artifacts │ └── results │ │ ├── AMDRyzen3600-RawVSZeroQL-report-github.md │ │ ├── M1-RawVSZeroQL-report-github.md │ │ ├── M3MAX-RawVSZeroQL-report-github.md │ │ └── i7-11700KF-RawVsZeroQL-report-github.md │ ├── GenerationBenchmark.cs │ ├── OldVariablesVsNewVariablesBenchmark.cs │ ├── Program.cs │ ├── RawVsZeroQLBenchmark.cs │ ├── ZeroQL.Benchmark.csproj │ └── appsettings.json ├── TestApp ├── TestStandardLibrary │ ├── Client.cs │ ├── Generated │ │ └── GraphQL.g.cs │ └── TestStandardLibrary.csproj ├── ZeroQL.BuildTaskTest │ ├── Program.cs │ ├── ZeroQL.BuildTaskTest.csproj │ ├── config1.zeroql.json │ └── config2.zeroql.json └── ZeroQL.TestApp │ ├── BrokenQueryFragments.cs │ ├── Generated │ └── GraphQL.g.cs │ ├── Program.cs │ ├── QueryFragments.cs │ ├── QueryFragmentsWithoutNamespace.cs │ ├── RandomQueryMethod.cs │ ├── Requests.cs │ ├── Scalars │ └── Instant.cs │ ├── Services │ ├── GraphQLClientMethodWrapper.cs │ └── GraphQLClientWrapper.cs │ ├── User.cs │ ├── UserRead.cs │ ├── ZeroQL.TestApp.csproj │ ├── ZeroQLScalarsInitializer.cs │ └── schema.graphql ├── ZeroQL.CLI ├── Commands │ ├── ConfigEchoOutputCommand.cs │ ├── ConfigInitCommand.cs │ ├── ExtractQueriesCommand.cs │ ├── GenerateCommand.cs │ └── PullSchemaCommand.cs ├── Converters │ └── HeaderConverter.cs ├── DownloadHelper.cs ├── Program.cs └── ZeroQL.CLI.csproj ├── ZeroQL.Core ├── Config │ └── ZeroQLFileConfig.cs ├── Enums │ └── ClientVisibility.cs ├── Result.cs └── ZeroQL.Core.csproj ├── ZeroQL.MSBuild ├── ZeroQL.MSBuild.csproj └── ZeroQL.props ├── ZeroQL.Package ├── ZeroQL.Package.csproj └── tools │ ├── install.ps1 │ └── uninstall.ps1 ├── ZeroQL.Runtime ├── Attributes.cs ├── GraphQL │ ├── GraphQL.cs │ └── GraphQLSyntaxExtensions.cs ├── GraphQLClient.cs ├── GraphQLClientLambdaExtensions.cs ├── GraphQLClientRequestExtensions.cs ├── GraphQLResult.cs ├── HttpHandler.cs ├── Internal │ ├── CallerArgumentExpression.cs │ ├── GraphQLRequest.cs │ ├── HttpResponseMessageExtension.cs │ ├── MultipartFormDataContentContext.cs │ ├── OperationTypes.cs │ ├── QueryKey.cs │ └── __TypeKind.cs ├── Json │ ├── InterfaceJsonConverter.cs │ ├── ZeroQLConverter.cs │ ├── ZeroQLDateOnlyConverter.cs │ ├── ZeroQLEnumConverter.cs │ ├── ZeroQLJsonOptions.cs │ ├── ZeroQLJsonSerializersStore.cs │ ├── ZeroQLTimeSpanConverter.cs │ └── ZeroQLUploadJsonConverter.cs ├── Pipelines │ ├── FullQueryPipeline.cs │ ├── IGraphQLQueryPipeline.cs │ └── PersistedQueryPipeline.cs ├── Schema │ ├── ID.cs │ ├── Upload.cs │ └── ZeroQLScalar.cs ├── Stores │ ├── GraphQLQueryStore.cs │ └── QueryInfoProvider.cs ├── ZeroQL.Runtime.csproj └── ZeroQLReflectionCache.cs ├── ZeroQL.SourceGenerators ├── Analyzers │ ├── OptionalParametersAnalyzer.cs │ ├── QueryLambdaAnalyzer.cs │ ├── QueryOnSyntaxAnalyzer.cs │ ├── QueryRequestAnalyzer.cs │ └── StaticLambdaAnalyzer.cs ├── Descriptors.cs ├── Extensions │ ├── InvocationExtensions.cs │ ├── LinqExtensions.cs │ └── LocationExtensions.cs ├── Generator │ ├── GraphQLFragmentTemplateIncrementalSourceGenerator.cs │ ├── GraphQLLambdaIncrementalSourceGenerator.cs │ └── GraphQLRequestIncrementalSourceGenerator.cs ├── QueryAnalyzerHelper.cs ├── Resolver │ ├── Context │ │ ├── GraphQLLambdaLikeContextResolver.cs │ │ ├── GraphQLSourceGenerationContext.cs │ │ └── ZeroQLRequestLikeContextResolver.cs │ ├── GraphQLConstantResolver.cs │ ├── GraphQLQueryResolver.cs │ ├── GraphQLQueryResolverResult.cs │ ├── GraphQLQueryVariable.cs │ ├── GraphQLResolveContext.cs │ ├── GraphQLSourceResolver.cs │ └── GraphQLUploadResolver.cs ├── SourceGeneratorInfo.cs ├── Utils.cs └── ZeroQL.SourceGenerators.csproj ├── ZeroQL.TestServer ├── Program.cs ├── Properties │ └── launchSettings.json ├── Query │ ├── CSharpKeywordsQueryExtensions.cs │ ├── CustomScalarsMutations.cs │ ├── DateMutation.cs │ ├── ErrorQuery.cs │ ├── InterfacesExtensions.cs │ ├── JSONQueryExtensions.cs │ ├── LongOperationsExtensions.cs │ ├── Models │ │ ├── Limit.cs │ │ ├── Page.cs │ │ ├── Role.cs │ │ ├── TypesContainer.cs │ │ ├── User.cs │ │ ├── UserFilterInput.cs │ │ ├── UserKind.cs │ │ └── UuidType.cs │ ├── NodeTimeGraphQLExtensions.cs │ ├── RoleGraphQLExtension.cs │ ├── UnionExtensions.cs │ ├── UserGraphQLExtensions.cs │ ├── UserGraphQLMutations.cs │ └── UserLoginAttemptExtensions.cs ├── ZeroQL.TestServer.csproj └── appsettings.json ├── ZeroQL.Tests ├── Bootstrap │ ├── CustomSchemaParseTests.ClassNameIdenticalToPropertyName.verified.txt │ ├── CustomSchemaParseTests.IdenticalNamesForArrayReplaced.verified.txt │ ├── CustomSchemaParseTests.InputTypeNameIdenticalToPropertyName.verified.txt │ ├── CustomSchemaParseTests.InterfaceNameIdenticalToPropertyName.verified.txt │ ├── CustomSchemaParseTests.Interfaces.verified.txt │ ├── CustomSchemaParseTests.NetstandardCompatibilityUsesDateTimeInsteadOfDateOnly.verified.txt │ ├── CustomSchemaParseTests.SchemaCanBeOmitted.verified.txt │ ├── CustomSchemaParseTests.Union.verified.txt │ ├── CustomSchemaParseTests.cs │ ├── ParseSchemaTests.EnumWithCustomNaming.verified.txt │ ├── ParseSchemaTests.InternalClient.verified.txt │ ├── ParseSchemaTests.MutationDetected.verified.txt │ ├── ParseSchemaTests.PublicClient.verified.txt │ ├── ParseSchemaTests.QueryDetected.verified.txt │ └── ParseSchemaTests.cs ├── CLI │ ├── CLITests.cs │ ├── CliTests.CanPullSchemaFromRemoteServer.verified.txt │ ├── CliTests.GeneratedCodeShouldDisableCustomWarnings.verified.txt │ ├── ConfigCliTests.CanCreateWithCustomValues.verified.txt │ ├── ConfigCliTests.CanCreateWithDefaultValues.verified.txt │ ├── ConfigCliTests.ConfigCanBeParsed.verified.txt │ ├── ConfigCliTests.ConfigWithUnrecognizedFieldFails.verified.txt │ ├── ConfigCliTests.EchoOutput.verified.txt │ ├── ConfigCliTests.cs │ ├── JsonSchema.cs │ └── ModuleInitializer.cs ├── Core │ ├── Fixtures │ │ └── TestServerFixture.cs │ ├── IntegrationTest.cs │ ├── TestExtensions.cs │ └── TestSchema.cs ├── Data │ └── TestProject.cs ├── EnumSerializationTests.cs ├── SourceGeneration │ ├── CancellationTokenTests.MutationWithCancellationToken.verified.txt │ ├── CancellationTokenTests.QueryWithCanceledCancellationToken.verified.txt │ ├── CancellationTokenTests.QueryWithCancellationToken.verified.txt │ ├── CancellationTokenTests.RequestWithCancellationToken.verified.txt │ ├── CancellationTokenTests.cs │ ├── DateTests.Dates_name=DateOnly.verified.txt │ ├── DateTests.Dates_name=DateTime.verified.txt │ ├── DateTests.Dates_name=DateTimeOffset.verified.txt │ ├── DateTests.Dates_name=DateTimes.verified.txt │ ├── DateTests.Dates_name=TimeOnly.verified.txt │ ├── DateTests.Dates_name=TimeSpan.verified.txt │ ├── DateTests.cs │ ├── FileUploadTests.UploadFileAsAnonymousType.verified.txt │ ├── FileUploadTests.UploadFileAsAnonymousTypeWithMultipleProperties.verified.txt │ ├── FileUploadTests.UploadFileAsDeepNestedAnonymousType.verified.txt │ ├── FileUploadTests.UploadFileAsDeepNestedAnonymousTypeWithClosureSyntax.verified.txt │ ├── FileUploadTests.UploadFileGenerates.verified.txt │ ├── FileUploadTests.cs │ ├── FragmentTests.CanApplyFragmentWithClosureLambda.verified.txt │ ├── FragmentTests.CanApplyFragmentWithConstantArgument.verified.txt │ ├── FragmentTests.CanApplyFragmentWithEnumCast.verified.txt │ ├── FragmentTests.cs │ ├── MutationTests.MutationWithCustomEnums.verified.txt │ ├── MutationTests.MutationWithCustomEnumsAsVariable.verified.txt │ ├── MutationTests.OverrideScalarsAccounted.verified.txt │ ├── MutationTests.ReplacementTypeWorks.verified.txt │ ├── MutationTests.SupportForVariablesPassedViaClosure.verified.txt │ ├── MutationTests.SupportedDifferentCSharpQueriesButIdenticalGraphQLQueries.verified.txt │ ├── MutationTests.cs │ ├── NameFormattingTests.cs │ ├── OnSyntaxTests.AppliedToWrongType.verified.txt │ ├── OnSyntaxTests.Interfaces.verified.txt │ ├── OnSyntaxTests.InterfacesDominatedProperty.verified.txt │ ├── OnSyntaxTests.InterfacesDominatedPropertyAndInterfaceProperty.verified.txt │ ├── OnSyntaxTests.InterfacesInterfaceProperty.verified.txt │ ├── OnSyntaxTests.Union.verified.txt │ ├── OnSyntaxTests.cs │ ├── OptionalParametersDetectionTests.AppliedToWrongType.verified.txt │ ├── OptionalParametersDetectionTests.RequireParameterMissed.verified.txt │ ├── OptionalParametersDetectionTests.SelectorParameterMissed.verified.txt │ ├── OptionalParametersDetectionTests.cs │ ├── PersistentQueryTest.CanPushPersistedQueryWhenServerDoesntHaveIt.verified.txt │ ├── PersistentQueryTest.CanSendPersistedQueryWhenServerHasIt.verified.txt │ ├── PersistentQueryTest.FailsPushPersistedQueryWhenServerWhenServerDoesntSupportIt.verified.txt │ ├── PersistentQueryTest.FailsWhenPersistedQueryIsMissing.verified.txt │ ├── PersistentQueryTest.cs │ ├── QueryInfoProviderTests.MutationProviderWorks.verified.txt │ ├── QueryInfoProviderTests.QueryProviderWorks.verified.txt │ ├── QueryInfoProviderTests.cs │ ├── QueryTests.CombinationNullableAndNonNullable.verified.txt │ ├── QueryTests.FieldsWithPascalCasingIsSupported.verified.txt │ ├── QueryTests.FieldsWithUpperCasingIsSupported.verified.txt │ ├── QueryTests.LambdaModuleInitializerGenerated.verified.txt │ ├── QueryTests.NamedArgumentsAreSupported.verified.txt │ ├── QueryTests.QueryDataIsReturnedWhenErrorHappens.verified.txt │ ├── QueryTests.QueryPreviewGenerated.verified.txt │ ├── QueryTests.QueryToWrongUrl.verified.txt │ ├── QueryTests.ReportsLinqMethodsAsErrors.verified.txt │ ├── QueryTests.SimpleQuery.verified.txt │ ├── QueryTests.SupportForArray.verified.txt │ ├── QueryTests.SupportForConstants.verified.txt │ ├── QueryTests.SupportForEnumConstants.verified.txt │ ├── QueryTests.SupportForEnums.verified.txt │ ├── QueryTests.SupportForEnumsWithCast.verified.txt │ ├── QueryTests.SupportForEnumsWithCustomCasing.verified.txt │ ├── QueryTests.SupportForVariablesPassedViaClosure.verified.txt │ ├── QueryTests.SupportsExtensionsInsideError.verified.txt │ ├── QueryTests.SupportsLocalStaticFunctionAsFragment.verified.txt │ ├── QueryTests.SupportsNameofQueryName.verified.txt │ ├── QueryTests.SupportsOptionalArguments.verified.txt │ ├── QueryTests.SupportsOptionalArgumentsWithOnlySelector.verified.txt │ ├── QueryTests.cs │ ├── RequestTests.CanSendRequestLikeMutationWithUpload.verified.txt │ ├── RequestTests.RequestWithLocalFunction.verified.txt │ ├── RequestTests.cs │ ├── UserScalarTests.InstantScalarTypeWorks.verified.txt │ ├── UserScalarTests.JsonDocumentTypeWorks.verified.txt │ ├── UserScalarTests.JsonElementTypeWorks.verified.txt │ ├── UserScalarTests.cs │ ├── VariablesTests.SupportsDifferentTypes.verified.txt │ ├── VariablesTests.UnusedVariablesAreIgnored.verified.txt │ ├── VariablesTests.VariablesCanBeFunctionArgument.verified.txt │ ├── VariablesTests.cs │ ├── WrapperTests.HaveDashInAssemblyName.verified.txt │ ├── WrapperTests.LocalMethodWrapperWorks.verified.txt │ ├── WrapperTests.MethodWrapperWorks.verified.txt │ ├── WrapperTests.WrapperWorks.verified.txt │ └── WrapperTests.cs ├── Tools │ ├── QueryGeneratorTests.cs │ └── Tools.cs ├── TransformationTests.cs ├── VerifyModuleInitializer.cs └── ZeroQL.Tests.csproj └── ZeroQL.Tools ├── Bootstrap ├── Generators │ ├── DirectiveGenerator.cs │ ├── GraphQLClientGenerator.cs │ ├── InterfaceGenerator.cs │ ├── JsonGenerators.cs │ ├── ScalarGenerator.cs │ └── TypeGenerator.cs ├── GraphQLGenerator.cs └── GraphQlGeneratorOptions.cs ├── Config ├── ZeroQLConfigReader.cs └── ZeroQLSchema.cs ├── Constants.cs ├── Extensions ├── GraphQLTypeExtensions.cs ├── LinqExtensions.cs ├── NodeExtensions.cs └── StringExtensions.cs ├── Internal ├── CSharpHelper.cs ├── ChecksumHelper.cs └── TypeContext.cs ├── Schema ├── ArgumentDefinition.cs ├── ClassDefinition.cs ├── DirectiveDefinition.cs ├── FieldDefinition.cs └── GraphQLType.cs ├── ZeroQL.Tools.csproj └── ZeroQLGenerationInfo.cs /.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/.config/dotnet-tools.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/.github/ISSUE_TEMPLATE/bug.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/dotnet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/.github/workflows/dotnet.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/.gitignore -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/README.md -------------------------------------------------------------------------------- /ZeroQL.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/ZeroQL.sln -------------------------------------------------------------------------------- /ZeroQL.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/ZeroQL.sln.DotSettings -------------------------------------------------------------------------------- /docs/articles/0.showcase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/docs/articles/0.showcase.md -------------------------------------------------------------------------------- /docs/articles/1.fragments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/docs/articles/1.fragments.md -------------------------------------------------------------------------------- /docs/articles/2.zeroql-v2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/docs/articles/2.zeroql-v2.md -------------------------------------------------------------------------------- /nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/nuget.config -------------------------------------------------------------------------------- /nugets/keep folder in git.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pack.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/pack.ps1 -------------------------------------------------------------------------------- /schema.verified.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/schema.verified.json -------------------------------------------------------------------------------- /src/Benchmarks/StrawberryShake.Client/.graphqlrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/Benchmarks/StrawberryShake.Client/.graphqlrc.json -------------------------------------------------------------------------------- /src/Benchmarks/StrawberryShake.Client/Query/GetUser.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/Benchmarks/StrawberryShake.Client/Query/GetUser.graphql -------------------------------------------------------------------------------- /src/Benchmarks/StrawberryShake.Client/StrawberryShake.Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/Benchmarks/StrawberryShake.Client/StrawberryShake.Client.csproj -------------------------------------------------------------------------------- /src/Benchmarks/StrawberryShake.Client/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/Benchmarks/StrawberryShake.Client/schema.graphql -------------------------------------------------------------------------------- /src/Benchmarks/ZeroQL.Benchmark/BenchmarkDotNet.Artifacts/results/AMDRyzen3600-RawVSZeroQL-report-github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/Benchmarks/ZeroQL.Benchmark/BenchmarkDotNet.Artifacts/results/AMDRyzen3600-RawVSZeroQL-report-github.md -------------------------------------------------------------------------------- /src/Benchmarks/ZeroQL.Benchmark/BenchmarkDotNet.Artifacts/results/M1-RawVSZeroQL-report-github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/Benchmarks/ZeroQL.Benchmark/BenchmarkDotNet.Artifacts/results/M1-RawVSZeroQL-report-github.md -------------------------------------------------------------------------------- /src/Benchmarks/ZeroQL.Benchmark/BenchmarkDotNet.Artifacts/results/M3MAX-RawVSZeroQL-report-github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/Benchmarks/ZeroQL.Benchmark/BenchmarkDotNet.Artifacts/results/M3MAX-RawVSZeroQL-report-github.md -------------------------------------------------------------------------------- /src/Benchmarks/ZeroQL.Benchmark/BenchmarkDotNet.Artifacts/results/i7-11700KF-RawVsZeroQL-report-github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/Benchmarks/ZeroQL.Benchmark/BenchmarkDotNet.Artifacts/results/i7-11700KF-RawVsZeroQL-report-github.md -------------------------------------------------------------------------------- /src/Benchmarks/ZeroQL.Benchmark/GenerationBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/Benchmarks/ZeroQL.Benchmark/GenerationBenchmark.cs -------------------------------------------------------------------------------- /src/Benchmarks/ZeroQL.Benchmark/OldVariablesVsNewVariablesBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/Benchmarks/ZeroQL.Benchmark/OldVariablesVsNewVariablesBenchmark.cs -------------------------------------------------------------------------------- /src/Benchmarks/ZeroQL.Benchmark/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/Benchmarks/ZeroQL.Benchmark/Program.cs -------------------------------------------------------------------------------- /src/Benchmarks/ZeroQL.Benchmark/RawVsZeroQLBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/Benchmarks/ZeroQL.Benchmark/RawVsZeroQLBenchmark.cs -------------------------------------------------------------------------------- /src/Benchmarks/ZeroQL.Benchmark/ZeroQL.Benchmark.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/Benchmarks/ZeroQL.Benchmark/ZeroQL.Benchmark.csproj -------------------------------------------------------------------------------- /src/Benchmarks/ZeroQL.Benchmark/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/Benchmarks/ZeroQL.Benchmark/appsettings.json -------------------------------------------------------------------------------- /src/TestApp/TestStandardLibrary/Client.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/TestApp/TestStandardLibrary/Client.cs -------------------------------------------------------------------------------- /src/TestApp/TestStandardLibrary/Generated/GraphQL.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/TestApp/TestStandardLibrary/Generated/GraphQL.g.cs -------------------------------------------------------------------------------- /src/TestApp/TestStandardLibrary/TestStandardLibrary.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/TestApp/TestStandardLibrary/TestStandardLibrary.csproj -------------------------------------------------------------------------------- /src/TestApp/ZeroQL.BuildTaskTest/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/TestApp/ZeroQL.BuildTaskTest/Program.cs -------------------------------------------------------------------------------- /src/TestApp/ZeroQL.BuildTaskTest/ZeroQL.BuildTaskTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/TestApp/ZeroQL.BuildTaskTest/ZeroQL.BuildTaskTest.csproj -------------------------------------------------------------------------------- /src/TestApp/ZeroQL.BuildTaskTest/config1.zeroql.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/TestApp/ZeroQL.BuildTaskTest/config1.zeroql.json -------------------------------------------------------------------------------- /src/TestApp/ZeroQL.BuildTaskTest/config2.zeroql.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/TestApp/ZeroQL.BuildTaskTest/config2.zeroql.json -------------------------------------------------------------------------------- /src/TestApp/ZeroQL.TestApp/BrokenQueryFragments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/TestApp/ZeroQL.TestApp/BrokenQueryFragments.cs -------------------------------------------------------------------------------- /src/TestApp/ZeroQL.TestApp/Generated/GraphQL.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/TestApp/ZeroQL.TestApp/Generated/GraphQL.g.cs -------------------------------------------------------------------------------- /src/TestApp/ZeroQL.TestApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/TestApp/ZeroQL.TestApp/Program.cs -------------------------------------------------------------------------------- /src/TestApp/ZeroQL.TestApp/QueryFragments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/TestApp/ZeroQL.TestApp/QueryFragments.cs -------------------------------------------------------------------------------- /src/TestApp/ZeroQL.TestApp/QueryFragmentsWithoutNamespace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/TestApp/ZeroQL.TestApp/QueryFragmentsWithoutNamespace.cs -------------------------------------------------------------------------------- /src/TestApp/ZeroQL.TestApp/RandomQueryMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/TestApp/ZeroQL.TestApp/RandomQueryMethod.cs -------------------------------------------------------------------------------- /src/TestApp/ZeroQL.TestApp/Requests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/TestApp/ZeroQL.TestApp/Requests.cs -------------------------------------------------------------------------------- /src/TestApp/ZeroQL.TestApp/Scalars/Instant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/TestApp/ZeroQL.TestApp/Scalars/Instant.cs -------------------------------------------------------------------------------- /src/TestApp/ZeroQL.TestApp/Services/GraphQLClientMethodWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/TestApp/ZeroQL.TestApp/Services/GraphQLClientMethodWrapper.cs -------------------------------------------------------------------------------- /src/TestApp/ZeroQL.TestApp/Services/GraphQLClientWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/TestApp/ZeroQL.TestApp/Services/GraphQLClientWrapper.cs -------------------------------------------------------------------------------- /src/TestApp/ZeroQL.TestApp/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/TestApp/ZeroQL.TestApp/User.cs -------------------------------------------------------------------------------- /src/TestApp/ZeroQL.TestApp/UserRead.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/TestApp/ZeroQL.TestApp/UserRead.cs -------------------------------------------------------------------------------- /src/TestApp/ZeroQL.TestApp/ZeroQL.TestApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/TestApp/ZeroQL.TestApp/ZeroQL.TestApp.csproj -------------------------------------------------------------------------------- /src/TestApp/ZeroQL.TestApp/ZeroQLScalarsInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/TestApp/ZeroQL.TestApp/ZeroQLScalarsInitializer.cs -------------------------------------------------------------------------------- /src/TestApp/ZeroQL.TestApp/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/TestApp/ZeroQL.TestApp/schema.graphql -------------------------------------------------------------------------------- /src/ZeroQL.CLI/Commands/ConfigEchoOutputCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.CLI/Commands/ConfigEchoOutputCommand.cs -------------------------------------------------------------------------------- /src/ZeroQL.CLI/Commands/ConfigInitCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.CLI/Commands/ConfigInitCommand.cs -------------------------------------------------------------------------------- /src/ZeroQL.CLI/Commands/ExtractQueriesCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.CLI/Commands/ExtractQueriesCommand.cs -------------------------------------------------------------------------------- /src/ZeroQL.CLI/Commands/GenerateCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.CLI/Commands/GenerateCommand.cs -------------------------------------------------------------------------------- /src/ZeroQL.CLI/Commands/PullSchemaCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.CLI/Commands/PullSchemaCommand.cs -------------------------------------------------------------------------------- /src/ZeroQL.CLI/Converters/HeaderConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.CLI/Converters/HeaderConverter.cs -------------------------------------------------------------------------------- /src/ZeroQL.CLI/DownloadHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.CLI/DownloadHelper.cs -------------------------------------------------------------------------------- /src/ZeroQL.CLI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.CLI/Program.cs -------------------------------------------------------------------------------- /src/ZeroQL.CLI/ZeroQL.CLI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.CLI/ZeroQL.CLI.csproj -------------------------------------------------------------------------------- /src/ZeroQL.Core/Config/ZeroQLFileConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Core/Config/ZeroQLFileConfig.cs -------------------------------------------------------------------------------- /src/ZeroQL.Core/Enums/ClientVisibility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Core/Enums/ClientVisibility.cs -------------------------------------------------------------------------------- /src/ZeroQL.Core/Result.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Core/Result.cs -------------------------------------------------------------------------------- /src/ZeroQL.Core/ZeroQL.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Core/ZeroQL.Core.csproj -------------------------------------------------------------------------------- /src/ZeroQL.MSBuild/ZeroQL.MSBuild.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.MSBuild/ZeroQL.MSBuild.csproj -------------------------------------------------------------------------------- /src/ZeroQL.MSBuild/ZeroQL.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.MSBuild/ZeroQL.props -------------------------------------------------------------------------------- /src/ZeroQL.Package/ZeroQL.Package.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Package/ZeroQL.Package.csproj -------------------------------------------------------------------------------- /src/ZeroQL.Package/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Package/tools/install.ps1 -------------------------------------------------------------------------------- /src/ZeroQL.Package/tools/uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Package/tools/uninstall.ps1 -------------------------------------------------------------------------------- /src/ZeroQL.Runtime/Attributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Runtime/Attributes.cs -------------------------------------------------------------------------------- /src/ZeroQL.Runtime/GraphQL/GraphQL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Runtime/GraphQL/GraphQL.cs -------------------------------------------------------------------------------- /src/ZeroQL.Runtime/GraphQL/GraphQLSyntaxExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Runtime/GraphQL/GraphQLSyntaxExtensions.cs -------------------------------------------------------------------------------- /src/ZeroQL.Runtime/GraphQLClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Runtime/GraphQLClient.cs -------------------------------------------------------------------------------- /src/ZeroQL.Runtime/GraphQLClientLambdaExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Runtime/GraphQLClientLambdaExtensions.cs -------------------------------------------------------------------------------- /src/ZeroQL.Runtime/GraphQLClientRequestExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Runtime/GraphQLClientRequestExtensions.cs -------------------------------------------------------------------------------- /src/ZeroQL.Runtime/GraphQLResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Runtime/GraphQLResult.cs -------------------------------------------------------------------------------- /src/ZeroQL.Runtime/HttpHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Runtime/HttpHandler.cs -------------------------------------------------------------------------------- /src/ZeroQL.Runtime/Internal/CallerArgumentExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Runtime/Internal/CallerArgumentExpression.cs -------------------------------------------------------------------------------- /src/ZeroQL.Runtime/Internal/GraphQLRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Runtime/Internal/GraphQLRequest.cs -------------------------------------------------------------------------------- /src/ZeroQL.Runtime/Internal/HttpResponseMessageExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Runtime/Internal/HttpResponseMessageExtension.cs -------------------------------------------------------------------------------- /src/ZeroQL.Runtime/Internal/MultipartFormDataContentContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Runtime/Internal/MultipartFormDataContentContext.cs -------------------------------------------------------------------------------- /src/ZeroQL.Runtime/Internal/OperationTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Runtime/Internal/OperationTypes.cs -------------------------------------------------------------------------------- /src/ZeroQL.Runtime/Internal/QueryKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Runtime/Internal/QueryKey.cs -------------------------------------------------------------------------------- /src/ZeroQL.Runtime/Internal/__TypeKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Runtime/Internal/__TypeKind.cs -------------------------------------------------------------------------------- /src/ZeroQL.Runtime/Json/InterfaceJsonConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Runtime/Json/InterfaceJsonConverter.cs -------------------------------------------------------------------------------- /src/ZeroQL.Runtime/Json/ZeroQLConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Runtime/Json/ZeroQLConverter.cs -------------------------------------------------------------------------------- /src/ZeroQL.Runtime/Json/ZeroQLDateOnlyConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Runtime/Json/ZeroQLDateOnlyConverter.cs -------------------------------------------------------------------------------- /src/ZeroQL.Runtime/Json/ZeroQLEnumConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Runtime/Json/ZeroQLEnumConverter.cs -------------------------------------------------------------------------------- /src/ZeroQL.Runtime/Json/ZeroQLJsonOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Runtime/Json/ZeroQLJsonOptions.cs -------------------------------------------------------------------------------- /src/ZeroQL.Runtime/Json/ZeroQLJsonSerializersStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Runtime/Json/ZeroQLJsonSerializersStore.cs -------------------------------------------------------------------------------- /src/ZeroQL.Runtime/Json/ZeroQLTimeSpanConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Runtime/Json/ZeroQLTimeSpanConverter.cs -------------------------------------------------------------------------------- /src/ZeroQL.Runtime/Json/ZeroQLUploadJsonConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Runtime/Json/ZeroQLUploadJsonConverter.cs -------------------------------------------------------------------------------- /src/ZeroQL.Runtime/Pipelines/FullQueryPipeline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Runtime/Pipelines/FullQueryPipeline.cs -------------------------------------------------------------------------------- /src/ZeroQL.Runtime/Pipelines/IGraphQLQueryPipeline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Runtime/Pipelines/IGraphQLQueryPipeline.cs -------------------------------------------------------------------------------- /src/ZeroQL.Runtime/Pipelines/PersistedQueryPipeline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Runtime/Pipelines/PersistedQueryPipeline.cs -------------------------------------------------------------------------------- /src/ZeroQL.Runtime/Schema/ID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Runtime/Schema/ID.cs -------------------------------------------------------------------------------- /src/ZeroQL.Runtime/Schema/Upload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Runtime/Schema/Upload.cs -------------------------------------------------------------------------------- /src/ZeroQL.Runtime/Schema/ZeroQLScalar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Runtime/Schema/ZeroQLScalar.cs -------------------------------------------------------------------------------- /src/ZeroQL.Runtime/Stores/GraphQLQueryStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Runtime/Stores/GraphQLQueryStore.cs -------------------------------------------------------------------------------- /src/ZeroQL.Runtime/Stores/QueryInfoProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Runtime/Stores/QueryInfoProvider.cs -------------------------------------------------------------------------------- /src/ZeroQL.Runtime/ZeroQL.Runtime.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Runtime/ZeroQL.Runtime.csproj -------------------------------------------------------------------------------- /src/ZeroQL.Runtime/ZeroQLReflectionCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Runtime/ZeroQLReflectionCache.cs -------------------------------------------------------------------------------- /src/ZeroQL.SourceGenerators/Analyzers/OptionalParametersAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.SourceGenerators/Analyzers/OptionalParametersAnalyzer.cs -------------------------------------------------------------------------------- /src/ZeroQL.SourceGenerators/Analyzers/QueryLambdaAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.SourceGenerators/Analyzers/QueryLambdaAnalyzer.cs -------------------------------------------------------------------------------- /src/ZeroQL.SourceGenerators/Analyzers/QueryOnSyntaxAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.SourceGenerators/Analyzers/QueryOnSyntaxAnalyzer.cs -------------------------------------------------------------------------------- /src/ZeroQL.SourceGenerators/Analyzers/QueryRequestAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.SourceGenerators/Analyzers/QueryRequestAnalyzer.cs -------------------------------------------------------------------------------- /src/ZeroQL.SourceGenerators/Analyzers/StaticLambdaAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.SourceGenerators/Analyzers/StaticLambdaAnalyzer.cs -------------------------------------------------------------------------------- /src/ZeroQL.SourceGenerators/Descriptors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.SourceGenerators/Descriptors.cs -------------------------------------------------------------------------------- /src/ZeroQL.SourceGenerators/Extensions/InvocationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.SourceGenerators/Extensions/InvocationExtensions.cs -------------------------------------------------------------------------------- /src/ZeroQL.SourceGenerators/Extensions/LinqExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.SourceGenerators/Extensions/LinqExtensions.cs -------------------------------------------------------------------------------- /src/ZeroQL.SourceGenerators/Extensions/LocationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.SourceGenerators/Extensions/LocationExtensions.cs -------------------------------------------------------------------------------- /src/ZeroQL.SourceGenerators/Generator/GraphQLFragmentTemplateIncrementalSourceGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.SourceGenerators/Generator/GraphQLFragmentTemplateIncrementalSourceGenerator.cs -------------------------------------------------------------------------------- /src/ZeroQL.SourceGenerators/Generator/GraphQLLambdaIncrementalSourceGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.SourceGenerators/Generator/GraphQLLambdaIncrementalSourceGenerator.cs -------------------------------------------------------------------------------- /src/ZeroQL.SourceGenerators/Generator/GraphQLRequestIncrementalSourceGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.SourceGenerators/Generator/GraphQLRequestIncrementalSourceGenerator.cs -------------------------------------------------------------------------------- /src/ZeroQL.SourceGenerators/QueryAnalyzerHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.SourceGenerators/QueryAnalyzerHelper.cs -------------------------------------------------------------------------------- /src/ZeroQL.SourceGenerators/Resolver/Context/GraphQLLambdaLikeContextResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.SourceGenerators/Resolver/Context/GraphQLLambdaLikeContextResolver.cs -------------------------------------------------------------------------------- /src/ZeroQL.SourceGenerators/Resolver/Context/GraphQLSourceGenerationContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.SourceGenerators/Resolver/Context/GraphQLSourceGenerationContext.cs -------------------------------------------------------------------------------- /src/ZeroQL.SourceGenerators/Resolver/Context/ZeroQLRequestLikeContextResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.SourceGenerators/Resolver/Context/ZeroQLRequestLikeContextResolver.cs -------------------------------------------------------------------------------- /src/ZeroQL.SourceGenerators/Resolver/GraphQLConstantResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.SourceGenerators/Resolver/GraphQLConstantResolver.cs -------------------------------------------------------------------------------- /src/ZeroQL.SourceGenerators/Resolver/GraphQLQueryResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.SourceGenerators/Resolver/GraphQLQueryResolver.cs -------------------------------------------------------------------------------- /src/ZeroQL.SourceGenerators/Resolver/GraphQLQueryResolverResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.SourceGenerators/Resolver/GraphQLQueryResolverResult.cs -------------------------------------------------------------------------------- /src/ZeroQL.SourceGenerators/Resolver/GraphQLQueryVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.SourceGenerators/Resolver/GraphQLQueryVariable.cs -------------------------------------------------------------------------------- /src/ZeroQL.SourceGenerators/Resolver/GraphQLResolveContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.SourceGenerators/Resolver/GraphQLResolveContext.cs -------------------------------------------------------------------------------- /src/ZeroQL.SourceGenerators/Resolver/GraphQLSourceResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.SourceGenerators/Resolver/GraphQLSourceResolver.cs -------------------------------------------------------------------------------- /src/ZeroQL.SourceGenerators/Resolver/GraphQLUploadResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.SourceGenerators/Resolver/GraphQLUploadResolver.cs -------------------------------------------------------------------------------- /src/ZeroQL.SourceGenerators/SourceGeneratorInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.SourceGenerators/SourceGeneratorInfo.cs -------------------------------------------------------------------------------- /src/ZeroQL.SourceGenerators/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.SourceGenerators/Utils.cs -------------------------------------------------------------------------------- /src/ZeroQL.SourceGenerators/ZeroQL.SourceGenerators.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.SourceGenerators/ZeroQL.SourceGenerators.csproj -------------------------------------------------------------------------------- /src/ZeroQL.TestServer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.TestServer/Program.cs -------------------------------------------------------------------------------- /src/ZeroQL.TestServer/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.TestServer/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/ZeroQL.TestServer/Query/CSharpKeywordsQueryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.TestServer/Query/CSharpKeywordsQueryExtensions.cs -------------------------------------------------------------------------------- /src/ZeroQL.TestServer/Query/CustomScalarsMutations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.TestServer/Query/CustomScalarsMutations.cs -------------------------------------------------------------------------------- /src/ZeroQL.TestServer/Query/DateMutation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.TestServer/Query/DateMutation.cs -------------------------------------------------------------------------------- /src/ZeroQL.TestServer/Query/ErrorQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.TestServer/Query/ErrorQuery.cs -------------------------------------------------------------------------------- /src/ZeroQL.TestServer/Query/InterfacesExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.TestServer/Query/InterfacesExtensions.cs -------------------------------------------------------------------------------- /src/ZeroQL.TestServer/Query/JSONQueryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.TestServer/Query/JSONQueryExtensions.cs -------------------------------------------------------------------------------- /src/ZeroQL.TestServer/Query/LongOperationsExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.TestServer/Query/LongOperationsExtensions.cs -------------------------------------------------------------------------------- /src/ZeroQL.TestServer/Query/Models/Limit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.TestServer/Query/Models/Limit.cs -------------------------------------------------------------------------------- /src/ZeroQL.TestServer/Query/Models/Page.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.TestServer/Query/Models/Page.cs -------------------------------------------------------------------------------- /src/ZeroQL.TestServer/Query/Models/Role.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.TestServer/Query/Models/Role.cs -------------------------------------------------------------------------------- /src/ZeroQL.TestServer/Query/Models/TypesContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.TestServer/Query/Models/TypesContainer.cs -------------------------------------------------------------------------------- /src/ZeroQL.TestServer/Query/Models/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.TestServer/Query/Models/User.cs -------------------------------------------------------------------------------- /src/ZeroQL.TestServer/Query/Models/UserFilterInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.TestServer/Query/Models/UserFilterInput.cs -------------------------------------------------------------------------------- /src/ZeroQL.TestServer/Query/Models/UserKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.TestServer/Query/Models/UserKind.cs -------------------------------------------------------------------------------- /src/ZeroQL.TestServer/Query/Models/UuidType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.TestServer/Query/Models/UuidType.cs -------------------------------------------------------------------------------- /src/ZeroQL.TestServer/Query/NodeTimeGraphQLExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.TestServer/Query/NodeTimeGraphQLExtensions.cs -------------------------------------------------------------------------------- /src/ZeroQL.TestServer/Query/RoleGraphQLExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.TestServer/Query/RoleGraphQLExtension.cs -------------------------------------------------------------------------------- /src/ZeroQL.TestServer/Query/UnionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.TestServer/Query/UnionExtensions.cs -------------------------------------------------------------------------------- /src/ZeroQL.TestServer/Query/UserGraphQLExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.TestServer/Query/UserGraphQLExtensions.cs -------------------------------------------------------------------------------- /src/ZeroQL.TestServer/Query/UserGraphQLMutations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.TestServer/Query/UserGraphQLMutations.cs -------------------------------------------------------------------------------- /src/ZeroQL.TestServer/Query/UserLoginAttemptExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.TestServer/Query/UserLoginAttemptExtensions.cs -------------------------------------------------------------------------------- /src/ZeroQL.TestServer/ZeroQL.TestServer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.TestServer/ZeroQL.TestServer.csproj -------------------------------------------------------------------------------- /src/ZeroQL.TestServer/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.TestServer/appsettings.json -------------------------------------------------------------------------------- /src/ZeroQL.Tests/Bootstrap/CustomSchemaParseTests.ClassNameIdenticalToPropertyName.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/Bootstrap/CustomSchemaParseTests.ClassNameIdenticalToPropertyName.verified.txt -------------------------------------------------------------------------------- /src/ZeroQL.Tests/Bootstrap/CustomSchemaParseTests.IdenticalNamesForArrayReplaced.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/Bootstrap/CustomSchemaParseTests.IdenticalNamesForArrayReplaced.verified.txt -------------------------------------------------------------------------------- /src/ZeroQL.Tests/Bootstrap/CustomSchemaParseTests.InputTypeNameIdenticalToPropertyName.verified.txt: -------------------------------------------------------------------------------- 1 | [ 2 | LimitZeroQL 3 | ] -------------------------------------------------------------------------------- /src/ZeroQL.Tests/Bootstrap/CustomSchemaParseTests.InterfaceNameIdenticalToPropertyName.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/Bootstrap/CustomSchemaParseTests.InterfaceNameIdenticalToPropertyName.verified.txt -------------------------------------------------------------------------------- /src/ZeroQL.Tests/Bootstrap/CustomSchemaParseTests.Interfaces.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/Bootstrap/CustomSchemaParseTests.Interfaces.verified.txt -------------------------------------------------------------------------------- /src/ZeroQL.Tests/Bootstrap/CustomSchemaParseTests.NetstandardCompatibilityUsesDateTimeInsteadOfDateOnly.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/Bootstrap/CustomSchemaParseTests.NetstandardCompatibilityUsesDateTimeInsteadOfDateOnly.verified.txt -------------------------------------------------------------------------------- /src/ZeroQL.Tests/Bootstrap/CustomSchemaParseTests.SchemaCanBeOmitted.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/Bootstrap/CustomSchemaParseTests.SchemaCanBeOmitted.verified.txt -------------------------------------------------------------------------------- /src/ZeroQL.Tests/Bootstrap/CustomSchemaParseTests.Union.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/Bootstrap/CustomSchemaParseTests.Union.verified.txt -------------------------------------------------------------------------------- /src/ZeroQL.Tests/Bootstrap/CustomSchemaParseTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/Bootstrap/CustomSchemaParseTests.cs -------------------------------------------------------------------------------- /src/ZeroQL.Tests/Bootstrap/ParseSchemaTests.EnumWithCustomNaming.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/Bootstrap/ParseSchemaTests.EnumWithCustomNaming.verified.txt -------------------------------------------------------------------------------- /src/ZeroQL.Tests/Bootstrap/ParseSchemaTests.InternalClient.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/Bootstrap/ParseSchemaTests.InternalClient.verified.txt -------------------------------------------------------------------------------- /src/ZeroQL.Tests/Bootstrap/ParseSchemaTests.MutationDetected.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/Bootstrap/ParseSchemaTests.MutationDetected.verified.txt -------------------------------------------------------------------------------- /src/ZeroQL.Tests/Bootstrap/ParseSchemaTests.PublicClient.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/Bootstrap/ParseSchemaTests.PublicClient.verified.txt -------------------------------------------------------------------------------- /src/ZeroQL.Tests/Bootstrap/ParseSchemaTests.QueryDetected.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/Bootstrap/ParseSchemaTests.QueryDetected.verified.txt -------------------------------------------------------------------------------- /src/ZeroQL.Tests/Bootstrap/ParseSchemaTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/Bootstrap/ParseSchemaTests.cs -------------------------------------------------------------------------------- /src/ZeroQL.Tests/CLI/CLITests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/CLI/CLITests.cs -------------------------------------------------------------------------------- /src/ZeroQL.Tests/CLI/CliTests.CanPullSchemaFromRemoteServer.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/CLI/CliTests.CanPullSchemaFromRemoteServer.verified.txt -------------------------------------------------------------------------------- /src/ZeroQL.Tests/CLI/CliTests.GeneratedCodeShouldDisableCustomWarnings.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/CLI/CliTests.GeneratedCodeShouldDisableCustomWarnings.verified.txt -------------------------------------------------------------------------------- /src/ZeroQL.Tests/CLI/ConfigCliTests.CanCreateWithCustomValues.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/CLI/ConfigCliTests.CanCreateWithCustomValues.verified.txt -------------------------------------------------------------------------------- /src/ZeroQL.Tests/CLI/ConfigCliTests.CanCreateWithDefaultValues.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/CLI/ConfigCliTests.CanCreateWithDefaultValues.verified.txt -------------------------------------------------------------------------------- /src/ZeroQL.Tests/CLI/ConfigCliTests.ConfigCanBeParsed.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/CLI/ConfigCliTests.ConfigCanBeParsed.verified.txt -------------------------------------------------------------------------------- /src/ZeroQL.Tests/CLI/ConfigCliTests.ConfigWithUnrecognizedFieldFails.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/CLI/ConfigCliTests.ConfigWithUnrecognizedFieldFails.verified.txt -------------------------------------------------------------------------------- /src/ZeroQL.Tests/CLI/ConfigCliTests.EchoOutput.verified.txt: -------------------------------------------------------------------------------- 1 | QL.g.cs 2 | -------------------------------------------------------------------------------- /src/ZeroQL.Tests/CLI/ConfigCliTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/CLI/ConfigCliTests.cs -------------------------------------------------------------------------------- /src/ZeroQL.Tests/CLI/JsonSchema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/CLI/JsonSchema.cs -------------------------------------------------------------------------------- /src/ZeroQL.Tests/CLI/ModuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/CLI/ModuleInitializer.cs -------------------------------------------------------------------------------- /src/ZeroQL.Tests/Core/Fixtures/TestServerFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/Core/Fixtures/TestServerFixture.cs -------------------------------------------------------------------------------- /src/ZeroQL.Tests/Core/IntegrationTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/Core/IntegrationTest.cs -------------------------------------------------------------------------------- /src/ZeroQL.Tests/Core/TestExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/Core/TestExtensions.cs -------------------------------------------------------------------------------- /src/ZeroQL.Tests/Core/TestSchema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/Core/TestSchema.cs -------------------------------------------------------------------------------- /src/ZeroQL.Tests/Data/TestProject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/Data/TestProject.cs -------------------------------------------------------------------------------- /src/ZeroQL.Tests/EnumSerializationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/EnumSerializationTests.cs -------------------------------------------------------------------------------- /src/ZeroQL.Tests/SourceGeneration/CancellationTokenTests.MutationWithCancellationToken.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/SourceGeneration/CancellationTokenTests.MutationWithCancellationToken.verified.txt -------------------------------------------------------------------------------- /src/ZeroQL.Tests/SourceGeneration/CancellationTokenTests.QueryWithCanceledCancellationToken.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/SourceGeneration/CancellationTokenTests.QueryWithCanceledCancellationToken.verified.txt -------------------------------------------------------------------------------- /src/ZeroQL.Tests/SourceGeneration/CancellationTokenTests.QueryWithCancellationToken.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/SourceGeneration/CancellationTokenTests.QueryWithCancellationToken.verified.txt -------------------------------------------------------------------------------- /src/ZeroQL.Tests/SourceGeneration/CancellationTokenTests.RequestWithCancellationToken.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/SourceGeneration/CancellationTokenTests.RequestWithCancellationToken.verified.txt -------------------------------------------------------------------------------- /src/ZeroQL.Tests/SourceGeneration/CancellationTokenTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/SourceGeneration/CancellationTokenTests.cs -------------------------------------------------------------------------------- /src/ZeroQL.Tests/SourceGeneration/DateTests.Dates_name=DateOnly.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/SourceGeneration/DateTests.Dates_name=DateOnly.verified.txt -------------------------------------------------------------------------------- /src/ZeroQL.Tests/SourceGeneration/DateTests.Dates_name=DateTime.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/SourceGeneration/DateTests.Dates_name=DateTime.verified.txt -------------------------------------------------------------------------------- /src/ZeroQL.Tests/SourceGeneration/DateTests.Dates_name=DateTimeOffset.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/SourceGeneration/DateTests.Dates_name=DateTimeOffset.verified.txt -------------------------------------------------------------------------------- /src/ZeroQL.Tests/SourceGeneration/DateTests.Dates_name=DateTimes.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/SourceGeneration/DateTests.Dates_name=DateTimes.verified.txt -------------------------------------------------------------------------------- /src/ZeroQL.Tests/SourceGeneration/DateTests.Dates_name=TimeOnly.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/SourceGeneration/DateTests.Dates_name=TimeOnly.verified.txt -------------------------------------------------------------------------------- /src/ZeroQL.Tests/SourceGeneration/DateTests.Dates_name=TimeSpan.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/SourceGeneration/DateTests.Dates_name=TimeSpan.verified.txt -------------------------------------------------------------------------------- /src/ZeroQL.Tests/SourceGeneration/DateTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/SourceGeneration/DateTests.cs -------------------------------------------------------------------------------- /src/ZeroQL.Tests/SourceGeneration/FileUploadTests.UploadFileAsAnonymousType.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/SourceGeneration/FileUploadTests.UploadFileAsAnonymousType.verified.txt -------------------------------------------------------------------------------- /src/ZeroQL.Tests/SourceGeneration/FileUploadTests.UploadFileAsAnonymousTypeWithMultipleProperties.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/SourceGeneration/FileUploadTests.UploadFileAsAnonymousTypeWithMultipleProperties.verified.txt -------------------------------------------------------------------------------- /src/ZeroQL.Tests/SourceGeneration/FileUploadTests.UploadFileAsDeepNestedAnonymousType.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/SourceGeneration/FileUploadTests.UploadFileAsDeepNestedAnonymousType.verified.txt -------------------------------------------------------------------------------- /src/ZeroQL.Tests/SourceGeneration/FileUploadTests.UploadFileAsDeepNestedAnonymousTypeWithClosureSyntax.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/SourceGeneration/FileUploadTests.UploadFileAsDeepNestedAnonymousTypeWithClosureSyntax.verified.txt -------------------------------------------------------------------------------- /src/ZeroQL.Tests/SourceGeneration/FileUploadTests.UploadFileGenerates.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/SourceGeneration/FileUploadTests.UploadFileGenerates.verified.txt -------------------------------------------------------------------------------- /src/ZeroQL.Tests/SourceGeneration/FileUploadTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/SourceGeneration/FileUploadTests.cs -------------------------------------------------------------------------------- /src/ZeroQL.Tests/SourceGeneration/FragmentTests.CanApplyFragmentWithClosureLambda.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/SourceGeneration/FragmentTests.CanApplyFragmentWithClosureLambda.verified.txt -------------------------------------------------------------------------------- /src/ZeroQL.Tests/SourceGeneration/FragmentTests.CanApplyFragmentWithConstantArgument.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/SourceGeneration/FragmentTests.CanApplyFragmentWithConstantArgument.verified.txt -------------------------------------------------------------------------------- /src/ZeroQL.Tests/SourceGeneration/FragmentTests.CanApplyFragmentWithEnumCast.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/SourceGeneration/FragmentTests.CanApplyFragmentWithEnumCast.verified.txt -------------------------------------------------------------------------------- /src/ZeroQL.Tests/SourceGeneration/FragmentTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/SourceGeneration/FragmentTests.cs -------------------------------------------------------------------------------- /src/ZeroQL.Tests/SourceGeneration/MutationTests.MutationWithCustomEnums.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/SourceGeneration/MutationTests.MutationWithCustomEnums.verified.txt -------------------------------------------------------------------------------- /src/ZeroQL.Tests/SourceGeneration/MutationTests.MutationWithCustomEnumsAsVariable.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/SourceGeneration/MutationTests.MutationWithCustomEnumsAsVariable.verified.txt -------------------------------------------------------------------------------- /src/ZeroQL.Tests/SourceGeneration/MutationTests.OverrideScalarsAccounted.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/SourceGeneration/MutationTests.OverrideScalarsAccounted.verified.txt -------------------------------------------------------------------------------- /src/ZeroQL.Tests/SourceGeneration/MutationTests.ReplacementTypeWorks.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/SourceGeneration/MutationTests.ReplacementTypeWorks.verified.txt -------------------------------------------------------------------------------- /src/ZeroQL.Tests/SourceGeneration/MutationTests.SupportForVariablesPassedViaClosure.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/SourceGeneration/MutationTests.SupportForVariablesPassedViaClosure.verified.txt -------------------------------------------------------------------------------- /src/ZeroQL.Tests/SourceGeneration/MutationTests.SupportedDifferentCSharpQueriesButIdenticalGraphQLQueries.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/SourceGeneration/MutationTests.SupportedDifferentCSharpQueriesButIdenticalGraphQLQueries.verified.txt -------------------------------------------------------------------------------- /src/ZeroQL.Tests/SourceGeneration/MutationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/SourceGeneration/MutationTests.cs -------------------------------------------------------------------------------- /src/ZeroQL.Tests/SourceGeneration/NameFormattingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/SourceGeneration/NameFormattingTests.cs -------------------------------------------------------------------------------- /src/ZeroQL.Tests/SourceGeneration/OnSyntaxTests.AppliedToWrongType.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/SourceGeneration/OnSyntaxTests.AppliedToWrongType.verified.txt -------------------------------------------------------------------------------- /src/ZeroQL.Tests/SourceGeneration/OnSyntaxTests.Interfaces.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/SourceGeneration/OnSyntaxTests.Interfaces.verified.txt -------------------------------------------------------------------------------- /src/ZeroQL.Tests/SourceGeneration/OnSyntaxTests.InterfacesDominatedProperty.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/SourceGeneration/OnSyntaxTests.InterfacesDominatedProperty.verified.txt -------------------------------------------------------------------------------- /src/ZeroQL.Tests/SourceGeneration/OnSyntaxTests.InterfacesDominatedPropertyAndInterfaceProperty.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/SourceGeneration/OnSyntaxTests.InterfacesDominatedPropertyAndInterfaceProperty.verified.txt -------------------------------------------------------------------------------- /src/ZeroQL.Tests/SourceGeneration/OnSyntaxTests.InterfacesInterfaceProperty.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/SourceGeneration/OnSyntaxTests.InterfacesInterfaceProperty.verified.txt -------------------------------------------------------------------------------- /src/ZeroQL.Tests/SourceGeneration/OnSyntaxTests.Union.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/SourceGeneration/OnSyntaxTests.Union.verified.txt -------------------------------------------------------------------------------- /src/ZeroQL.Tests/SourceGeneration/OnSyntaxTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/SourceGeneration/OnSyntaxTests.cs -------------------------------------------------------------------------------- /src/ZeroQL.Tests/SourceGeneration/OptionalParametersDetectionTests.AppliedToWrongType.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/SourceGeneration/OptionalParametersDetectionTests.AppliedToWrongType.verified.txt -------------------------------------------------------------------------------- /src/ZeroQL.Tests/SourceGeneration/OptionalParametersDetectionTests.RequireParameterMissed.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/SourceGeneration/OptionalParametersDetectionTests.RequireParameterMissed.verified.txt -------------------------------------------------------------------------------- /src/ZeroQL.Tests/SourceGeneration/OptionalParametersDetectionTests.SelectorParameterMissed.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/SourceGeneration/OptionalParametersDetectionTests.SelectorParameterMissed.verified.txt -------------------------------------------------------------------------------- /src/ZeroQL.Tests/SourceGeneration/OptionalParametersDetectionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/SourceGeneration/OptionalParametersDetectionTests.cs -------------------------------------------------------------------------------- /src/ZeroQL.Tests/SourceGeneration/PersistentQueryTest.CanPushPersistedQueryWhenServerDoesntHaveIt.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/SourceGeneration/PersistentQueryTest.CanPushPersistedQueryWhenServerDoesntHaveIt.verified.txt -------------------------------------------------------------------------------- /src/ZeroQL.Tests/SourceGeneration/PersistentQueryTest.CanSendPersistedQueryWhenServerHasIt.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/SourceGeneration/PersistentQueryTest.CanSendPersistedQueryWhenServerHasIt.verified.txt -------------------------------------------------------------------------------- /src/ZeroQL.Tests/SourceGeneration/PersistentQueryTest.FailsPushPersistedQueryWhenServerWhenServerDoesntSupportIt.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/SourceGeneration/PersistentQueryTest.FailsPushPersistedQueryWhenServerWhenServerDoesntSupportIt.verified.txt -------------------------------------------------------------------------------- /src/ZeroQL.Tests/SourceGeneration/PersistentQueryTest.FailsWhenPersistedQueryIsMissing.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/SourceGeneration/PersistentQueryTest.FailsWhenPersistedQueryIsMissing.verified.txt -------------------------------------------------------------------------------- /src/ZeroQL.Tests/SourceGeneration/PersistentQueryTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/SourceGeneration/PersistentQueryTest.cs -------------------------------------------------------------------------------- /src/ZeroQL.Tests/SourceGeneration/QueryInfoProviderTests.MutationProviderWorks.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/SourceGeneration/QueryInfoProviderTests.MutationProviderWorks.verified.txt -------------------------------------------------------------------------------- /src/ZeroQL.Tests/SourceGeneration/QueryInfoProviderTests.QueryProviderWorks.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/SourceGeneration/QueryInfoProviderTests.QueryProviderWorks.verified.txt -------------------------------------------------------------------------------- /src/ZeroQL.Tests/SourceGeneration/QueryInfoProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/SourceGeneration/QueryInfoProviderTests.cs -------------------------------------------------------------------------------- /src/ZeroQL.Tests/SourceGeneration/QueryTests.CombinationNullableAndNonNullable.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/SourceGeneration/QueryTests.CombinationNullableAndNonNullable.verified.txt -------------------------------------------------------------------------------- /src/ZeroQL.Tests/SourceGeneration/QueryTests.FieldsWithPascalCasingIsSupported.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/SourceGeneration/QueryTests.FieldsWithPascalCasingIsSupported.verified.txt -------------------------------------------------------------------------------- /src/ZeroQL.Tests/SourceGeneration/QueryTests.FieldsWithUpperCasingIsSupported.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/SourceGeneration/QueryTests.FieldsWithUpperCasingIsSupported.verified.txt -------------------------------------------------------------------------------- /src/ZeroQL.Tests/SourceGeneration/QueryTests.LambdaModuleInitializerGenerated.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/SourceGeneration/QueryTests.LambdaModuleInitializerGenerated.verified.txt -------------------------------------------------------------------------------- /src/ZeroQL.Tests/SourceGeneration/QueryTests.NamedArgumentsAreSupported.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/SourceGeneration/QueryTests.NamedArgumentsAreSupported.verified.txt -------------------------------------------------------------------------------- /src/ZeroQL.Tests/SourceGeneration/QueryTests.QueryDataIsReturnedWhenErrorHappens.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/SourceGeneration/QueryTests.QueryDataIsReturnedWhenErrorHappens.verified.txt -------------------------------------------------------------------------------- /src/ZeroQL.Tests/SourceGeneration/QueryTests.QueryPreviewGenerated.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/SourceGeneration/QueryTests.QueryPreviewGenerated.verified.txt -------------------------------------------------------------------------------- /src/ZeroQL.Tests/SourceGeneration/QueryTests.QueryToWrongUrl.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/SourceGeneration/QueryTests.QueryToWrongUrl.verified.txt -------------------------------------------------------------------------------- /src/ZeroQL.Tests/SourceGeneration/QueryTests.ReportsLinqMethodsAsErrors.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/SourceGeneration/QueryTests.ReportsLinqMethodsAsErrors.verified.txt -------------------------------------------------------------------------------- /src/ZeroQL.Tests/SourceGeneration/QueryTests.SimpleQuery.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/SourceGeneration/QueryTests.SimpleQuery.verified.txt -------------------------------------------------------------------------------- /src/ZeroQL.Tests/SourceGeneration/QueryTests.SupportForArray.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/SourceGeneration/QueryTests.SupportForArray.verified.txt -------------------------------------------------------------------------------- /src/ZeroQL.Tests/SourceGeneration/QueryTests.SupportForConstants.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/SourceGeneration/QueryTests.SupportForConstants.verified.txt -------------------------------------------------------------------------------- /src/ZeroQL.Tests/SourceGeneration/QueryTests.SupportForEnumConstants.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/SourceGeneration/QueryTests.SupportForEnumConstants.verified.txt -------------------------------------------------------------------------------- /src/ZeroQL.Tests/SourceGeneration/QueryTests.SupportForEnums.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/SourceGeneration/QueryTests.SupportForEnums.verified.txt -------------------------------------------------------------------------------- /src/ZeroQL.Tests/SourceGeneration/QueryTests.SupportForEnumsWithCast.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/SourceGeneration/QueryTests.SupportForEnumsWithCast.verified.txt -------------------------------------------------------------------------------- /src/ZeroQL.Tests/SourceGeneration/QueryTests.SupportForEnumsWithCustomCasing.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/SourceGeneration/QueryTests.SupportForEnumsWithCustomCasing.verified.txt -------------------------------------------------------------------------------- /src/ZeroQL.Tests/SourceGeneration/QueryTests.SupportForVariablesPassedViaClosure.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/SourceGeneration/QueryTests.SupportForVariablesPassedViaClosure.verified.txt -------------------------------------------------------------------------------- /src/ZeroQL.Tests/SourceGeneration/QueryTests.SupportsExtensionsInsideError.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/SourceGeneration/QueryTests.SupportsExtensionsInsideError.verified.txt -------------------------------------------------------------------------------- /src/ZeroQL.Tests/SourceGeneration/QueryTests.SupportsLocalStaticFunctionAsFragment.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/SourceGeneration/QueryTests.SupportsLocalStaticFunctionAsFragment.verified.txt -------------------------------------------------------------------------------- /src/ZeroQL.Tests/SourceGeneration/QueryTests.SupportsNameofQueryName.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/SourceGeneration/QueryTests.SupportsNameofQueryName.verified.txt -------------------------------------------------------------------------------- /src/ZeroQL.Tests/SourceGeneration/QueryTests.SupportsOptionalArguments.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/SourceGeneration/QueryTests.SupportsOptionalArguments.verified.txt -------------------------------------------------------------------------------- /src/ZeroQL.Tests/SourceGeneration/QueryTests.SupportsOptionalArgumentsWithOnlySelector.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/SourceGeneration/QueryTests.SupportsOptionalArgumentsWithOnlySelector.verified.txt -------------------------------------------------------------------------------- /src/ZeroQL.Tests/SourceGeneration/QueryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/SourceGeneration/QueryTests.cs -------------------------------------------------------------------------------- /src/ZeroQL.Tests/SourceGeneration/RequestTests.CanSendRequestLikeMutationWithUpload.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/SourceGeneration/RequestTests.CanSendRequestLikeMutationWithUpload.verified.txt -------------------------------------------------------------------------------- /src/ZeroQL.Tests/SourceGeneration/RequestTests.RequestWithLocalFunction.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/SourceGeneration/RequestTests.RequestWithLocalFunction.verified.txt -------------------------------------------------------------------------------- /src/ZeroQL.Tests/SourceGeneration/RequestTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/SourceGeneration/RequestTests.cs -------------------------------------------------------------------------------- /src/ZeroQL.Tests/SourceGeneration/UserScalarTests.InstantScalarTypeWorks.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/SourceGeneration/UserScalarTests.InstantScalarTypeWorks.verified.txt -------------------------------------------------------------------------------- /src/ZeroQL.Tests/SourceGeneration/UserScalarTests.JsonDocumentTypeWorks.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/SourceGeneration/UserScalarTests.JsonDocumentTypeWorks.verified.txt -------------------------------------------------------------------------------- /src/ZeroQL.Tests/SourceGeneration/UserScalarTests.JsonElementTypeWorks.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/SourceGeneration/UserScalarTests.JsonElementTypeWorks.verified.txt -------------------------------------------------------------------------------- /src/ZeroQL.Tests/SourceGeneration/UserScalarTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/SourceGeneration/UserScalarTests.cs -------------------------------------------------------------------------------- /src/ZeroQL.Tests/SourceGeneration/VariablesTests.SupportsDifferentTypes.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/SourceGeneration/VariablesTests.SupportsDifferentTypes.verified.txt -------------------------------------------------------------------------------- /src/ZeroQL.Tests/SourceGeneration/VariablesTests.UnusedVariablesAreIgnored.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/SourceGeneration/VariablesTests.UnusedVariablesAreIgnored.verified.txt -------------------------------------------------------------------------------- /src/ZeroQL.Tests/SourceGeneration/VariablesTests.VariablesCanBeFunctionArgument.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/SourceGeneration/VariablesTests.VariablesCanBeFunctionArgument.verified.txt -------------------------------------------------------------------------------- /src/ZeroQL.Tests/SourceGeneration/VariablesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/SourceGeneration/VariablesTests.cs -------------------------------------------------------------------------------- /src/ZeroQL.Tests/SourceGeneration/WrapperTests.HaveDashInAssemblyName.verified.txt: -------------------------------------------------------------------------------- 1 | Jon -------------------------------------------------------------------------------- /src/ZeroQL.Tests/SourceGeneration/WrapperTests.LocalMethodWrapperWorks.verified.txt: -------------------------------------------------------------------------------- 1 | Jon -------------------------------------------------------------------------------- /src/ZeroQL.Tests/SourceGeneration/WrapperTests.MethodWrapperWorks.verified.txt: -------------------------------------------------------------------------------- 1 | Jon -------------------------------------------------------------------------------- /src/ZeroQL.Tests/SourceGeneration/WrapperTests.WrapperWorks.verified.txt: -------------------------------------------------------------------------------- 1 | Jon -------------------------------------------------------------------------------- /src/ZeroQL.Tests/SourceGeneration/WrapperTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/SourceGeneration/WrapperTests.cs -------------------------------------------------------------------------------- /src/ZeroQL.Tests/Tools/QueryGeneratorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/Tools/QueryGeneratorTests.cs -------------------------------------------------------------------------------- /src/ZeroQL.Tests/Tools/Tools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/Tools/Tools.cs -------------------------------------------------------------------------------- /src/ZeroQL.Tests/TransformationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/TransformationTests.cs -------------------------------------------------------------------------------- /src/ZeroQL.Tests/VerifyModuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/VerifyModuleInitializer.cs -------------------------------------------------------------------------------- /src/ZeroQL.Tests/ZeroQL.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tests/ZeroQL.Tests.csproj -------------------------------------------------------------------------------- /src/ZeroQL.Tools/Bootstrap/Generators/DirectiveGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tools/Bootstrap/Generators/DirectiveGenerator.cs -------------------------------------------------------------------------------- /src/ZeroQL.Tools/Bootstrap/Generators/GraphQLClientGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tools/Bootstrap/Generators/GraphQLClientGenerator.cs -------------------------------------------------------------------------------- /src/ZeroQL.Tools/Bootstrap/Generators/InterfaceGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tools/Bootstrap/Generators/InterfaceGenerator.cs -------------------------------------------------------------------------------- /src/ZeroQL.Tools/Bootstrap/Generators/JsonGenerators.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tools/Bootstrap/Generators/JsonGenerators.cs -------------------------------------------------------------------------------- /src/ZeroQL.Tools/Bootstrap/Generators/ScalarGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tools/Bootstrap/Generators/ScalarGenerator.cs -------------------------------------------------------------------------------- /src/ZeroQL.Tools/Bootstrap/Generators/TypeGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tools/Bootstrap/Generators/TypeGenerator.cs -------------------------------------------------------------------------------- /src/ZeroQL.Tools/Bootstrap/GraphQLGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tools/Bootstrap/GraphQLGenerator.cs -------------------------------------------------------------------------------- /src/ZeroQL.Tools/Bootstrap/GraphQlGeneratorOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tools/Bootstrap/GraphQlGeneratorOptions.cs -------------------------------------------------------------------------------- /src/ZeroQL.Tools/Config/ZeroQLConfigReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tools/Config/ZeroQLConfigReader.cs -------------------------------------------------------------------------------- /src/ZeroQL.Tools/Config/ZeroQLSchema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tools/Config/ZeroQLSchema.cs -------------------------------------------------------------------------------- /src/ZeroQL.Tools/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tools/Constants.cs -------------------------------------------------------------------------------- /src/ZeroQL.Tools/Extensions/GraphQLTypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tools/Extensions/GraphQLTypeExtensions.cs -------------------------------------------------------------------------------- /src/ZeroQL.Tools/Extensions/LinqExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tools/Extensions/LinqExtensions.cs -------------------------------------------------------------------------------- /src/ZeroQL.Tools/Extensions/NodeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tools/Extensions/NodeExtensions.cs -------------------------------------------------------------------------------- /src/ZeroQL.Tools/Extensions/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tools/Extensions/StringExtensions.cs -------------------------------------------------------------------------------- /src/ZeroQL.Tools/Internal/CSharpHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tools/Internal/CSharpHelper.cs -------------------------------------------------------------------------------- /src/ZeroQL.Tools/Internal/ChecksumHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tools/Internal/ChecksumHelper.cs -------------------------------------------------------------------------------- /src/ZeroQL.Tools/Internal/TypeContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tools/Internal/TypeContext.cs -------------------------------------------------------------------------------- /src/ZeroQL.Tools/Schema/ArgumentDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tools/Schema/ArgumentDefinition.cs -------------------------------------------------------------------------------- /src/ZeroQL.Tools/Schema/ClassDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tools/Schema/ClassDefinition.cs -------------------------------------------------------------------------------- /src/ZeroQL.Tools/Schema/DirectiveDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tools/Schema/DirectiveDefinition.cs -------------------------------------------------------------------------------- /src/ZeroQL.Tools/Schema/FieldDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tools/Schema/FieldDefinition.cs -------------------------------------------------------------------------------- /src/ZeroQL.Tools/Schema/GraphQLType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tools/Schema/GraphQLType.cs -------------------------------------------------------------------------------- /src/ZeroQL.Tools/ZeroQL.Tools.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tools/ZeroQL.Tools.csproj -------------------------------------------------------------------------------- /src/ZeroQL.Tools/ZeroQLGenerationInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byme8/ZeroQL/HEAD/src/ZeroQL.Tools/ZeroQLGenerationInfo.cs --------------------------------------------------------------------------------