Add attribute scoping support#9820
Merged
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR adds field-level “declaring CLR type” tracking to the type descriptor configuration pipeline, enabling attribute-based scoping scenarios (notably when a GraphQL type is composed from multiple static partial classes). It propagates the declaring type through runtime descriptors, resolver interception, and source-generated schema code, and updates tests/snapshots accordingly.
Changes:
- Introduces
OutputFieldConfiguration.DeclaringTypeand ensures it is copied/merged. - Populates
DeclaringTypewhen fields are inferred from members or configured viaResolveWith(...)across object/interface fields and Relay node resolvers. - Updates source generator output and extensive analyzer/integration snapshots; adds targeted unit + integration tests for partial-type scoping.
Reviewed changes
Copilot reviewed 231 out of 231 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| src/HotChocolate/Core/src/Types/Types/Descriptors/Configurations/OutputFieldConfiguration.cs | Adds DeclaringType to output field configuration and includes it in copy/merge behavior. |
| src/HotChocolate/Core/src/Types/Types/Descriptors/ObjectFieldDescriptor.cs | Sets DeclaringType from reflected/declaring member type and from resolver members. |
| src/HotChocolate/Core/src/Types/Types/Descriptors/InterfaceFieldDescriptor.cs | Sets DeclaringType from reflected/declaring member type and from resolver members. |
| src/HotChocolate/Core/src/Types/Types/Interceptors/ResolverTypeInterceptor.cs | Ensures inferred resolver/source members set DeclaringType before descriptor completion. |
| src/HotChocolate/Core/src/Types/Types/Relay/Descriptors/NodeDescriptorBase.cs | Sets DeclaringType for node resolver field members. |
| src/HotChocolate/Core/src/Types/Types/Relay/Descriptors/NodeDescriptor~2.cs | Sets DeclaringType for node resolver field members (generic variant). |
| src/HotChocolate/Core/src/Types.Analyzers/FileBuilders/TypeFileBuilderBase.cs | Emits configuration.DeclaringType = context.ThisType; in generated resolver binding code. |
| src/HotChocolate/Core/test/Types.Tests/Types/Descriptors/ObjectFieldDescriptorTests.cs | Adds unit tests validating DeclaringType for member-inferred, ResolveWith, and delegate resolvers. |
| src/HotChocolate/Core/test/Types.Analyzers.Integration.Tests/Types.cs | Adds a partial-type scoping probe type and an attribute that tags only “own” partial fields via DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Integration.Tests/IntegrationTests.cs | Adds integration test asserting only fields from the attributed partial are tagged. |
| src/HotChocolate/Core/test/Types.Analyzers.Integration.Tests/snapshots/IntegrationTests.Schema_Snapshot.snap | Updates schema snapshot to include the new probe type and field description output. |
| src/HotChocolate/Core/test/Types.Analyzers.Integration.Tests/snapshots/IntegrationTests.Schema_Snapshot_Without_ConnectionName_Inference.snap | Updates schema snapshot (including new probe type) for the “without inference” variant. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/WrongAuthorizationAttributeAnalyzerTests.Microsoft_AuthorizeAttribute_On_RootType_RaisesError.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/WrongAuthorizationAttributeAnalyzerTests.Microsoft_AuthorizeAttribute_On_Resolver_Method_RaisesError.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/WrongAuthorizationAttributeAnalyzerTests.Microsoft_AuthorizeAttribute_On_Resolver_Method_In_RootType_RaisesError.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/WrongAuthorizationAttributeAnalyzerTests.Microsoft_AuthorizeAttribute_On_Class_RaisesError.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/WrongAuthorizationAttributeAnalyzerTests.Microsoft_AllowAnonymousAttribute_On_Resolver_Method_RaisesError.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/WrongAuthorizationAttributeAnalyzerTests.HotChocolate_AuthorizeAttribute_On_Resolver_Property_NoError.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/WrongAuthorizationAttributeAnalyzerTests.HotChocolate_AuthorizeAttribute_On_Resolver_Method_NoError.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/WrongAuthorizationAttributeAnalyzerTests.HotChocolate_AuthorizeAttribute_On_Class_NoError.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/WrongAuthorizationAttributeAnalyzerTests.HotChocolate_AllowAnonymousAttribute_On_Resolver_Method_NoError.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/TypeModuleSyntaxGeneratorTests.GenerateSource_Interface_Inheritance_Registers_Derived_Implementations.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/TypeModuleSyntaxGeneratorTests.DetectSourceSchemaDefaults_From_Shareable.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/TypeModuleSyntaxGeneratorTests.DetectSourceSchemaDefaults_From_Shareable_On_Field.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/TypeModuleSyntaxGeneratorTests.DetectSourceSchemaDefaults_From_Lookup.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ShareableScopedOnMemberAnalyzerTests.Property_WithScopedTrue_RaisesError.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ShareableScopedOnMemberAnalyzerTests.Property_WithoutScoped_NoError.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ShareableScopedOnMemberAnalyzerTests.Method_WithScopedTrue_RaisesError.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ShareableScopedOnMemberAnalyzerTests.Method_WithScopedFalse_RaisesError.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ShareableScopedOnMemberAnalyzerTests.Method_WithoutScoped_NoError.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ShareableScopedOnMemberAnalyzerTests.Method_NoShareableAttribute_NoError.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ShareableScopedOnMemberAnalyzerTests.Class_WithScopedTrue_NoError.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ShareableInterfaceTypeAnalyzerTests.ObjectType_WithShareable_NoError.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ShareableInterfaceTypeAnalyzerTests.InterfaceType_WithShareable_RaisesError.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ShareableInterfaceTypeAnalyzerTests.InterfaceType_WithShareable_MultipleAttributes_RaisesError.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ShareableInterfaceTypeAnalyzerTests.InterfaceType_WithoutShareable_NoError.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ShareableInterfaceTypeAnalyzerTests.InterfaceType_WithOtherAttributes_NoError.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/RootTypePartialAnalyzerTests.StaticPartialQueryType_NoDiagnostic.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/RootTypePartialAnalyzerTests.NonStaticPartialQueryType_NoDiagnostic.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/RootTypePartialAnalyzerTests.NonStaticPartialQueryType_InstanceBatchResolver_UsesResolverReceiver.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ResolverTests.Resolver_With_Multiple_DataLoaders_Same_Name_Different_Namespaces_MatchesSnapshot.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ResolverTests.Resolver_With_Generated_DataLoader_Parameter_MatchesSnapshot.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ResolverTests.Resolver_With_Generated_DataLoader_From_Different_Namespace_MatchesSnapshot.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ResolverTests.Resolver_Parameter_With_Two_Attribute.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ResolverTests.Resolver_Parameter_With_One_Attribute.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ResolverTests.Inject_QueryContext.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ResolverTests.GenerateSource_ResolverWithScopedStateSetStateArgument_MatchesSnapshot.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ResolverTests.GenerateSource_ResolverWithScopedStateDerivedAttribute_BaseConstructorKey_MatchesSnapshot.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ResolverTests.GenerateSource_ResolverWithScopedStateArgument_MatchesSnapshot.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ResolverTests.GenerateSource_ResolverWithLocalStateSetStateArgument_MatchesSnapshot.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ResolverTests.GenerateSource_ResolverWithLocalStateDerivedAttribute_PrimaryConstructorBaseKey_MatchesSnapshot.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ResolverTests.GenerateSource_ResolverWithLocalStateArgument_MatchesSnapshot.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ResolverTests.GenerateSource_ResolverWithIsSelectedSingleField_MatchesSnapshot.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ResolverTests.GenerateSource_ResolverWithIsSelectedPattern_MatchesSnapshot.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ResolverTests.GenerateSource_ResolverWithIsSelectedMultipleFields_MatchesSnapshot.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ResolverTests.GenerateSource_ResolverWithGlobalStateSetStateArgument_MatchesSnapshot.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ResolverTests.GenerateSource_ResolverWithGlobalStateArgument_MatchesSnapshot.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ResolverTests.Ensure_Entity_Becomes_Node.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ResolverTests.Ensure_Entity_Becomes_Node_With_Query_Node_Resolver.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/QueryContextProjectionAnalyzerTests.UseProjection_WithoutQueryContext_NoError.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/QueryContextProjectionAnalyzerTests.QueryContext_WithUseProjections_RaisesError.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/QueryContextProjectionAnalyzerTests.QueryContext_WithUseProjection_RaisesError.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/QueryContextProjectionAnalyzerTests.QueryContext_WithoutUseProjection_NoError.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/QueryContextProjectionAnalyzerTests.QueryContext_MultipleAttributes_OnlyUseProjectionFlagged.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/QueryContextProjectionAnalyzerTests.NoQueryContext_NoAttributes_NoError.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/QueryContextConnectionAnalyzerTests.TypeMismatch_WithSubscriptionType_RaisesError.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/QueryContextConnectionAnalyzerTests.TypeMismatch_WithQueryType_RaisesError.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/QueryContextConnectionAnalyzerTests.TypeMismatch_WithObjectType_RaisesError.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/QueryContextConnectionAnalyzerTests.TypeMismatch_WithMutationType_RaisesError.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/QueryContextConnectionAnalyzerTests.TypeMismatch_WithInterfaceType_RaisesError.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/QueryContextConnectionAnalyzerTests.TypeMismatch_WithConnection_RaisesError.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/QueryContextConnectionAnalyzerTests.NoQueryContextParameter_NoError.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/QueryContextConnectionAnalyzerTests.NoConnectionReturnType_NoError.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/QueryContextConnectionAnalyzerTests.CorrectGenericTypeMatch_WithConnection_NoError.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/QueryContextConnectionAnalyzerTests.CorrectGenericTypeMatch_NoError.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ParentAttributeAnalyzerTests.ParentAttribute_WithRequires_TypeMismatch_RaisesError.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ParentAttributeAnalyzerTests.ParentAttribute_TypeMismatch_RaisesError.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ParentAttributeAnalyzerTests.ParentAttribute_NoParentAttribute_NoError.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ParentAttributeAnalyzerTests.ParentAttribute_MultipleParameters_OnlyParentChecked.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ParentAttributeAnalyzerTests.ParentAttribute_MatchingType_NoError.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ParentAttributeAnalyzerTests.ParentAttribute_Interface_NoError.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ParentAttributeAnalyzerTests.ParentAttribute_BatchResolver_ListOfWrongType_RaisesError.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ParentAttributeAnalyzerTests.ParentAttribute_BatchResolver_ListOfParentType_NoError.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ParentAttributeAnalyzerTests.ParentAttribute_BatchResolver_ImmutableArrayOfWrongType_RaisesError.md | Snapshot update: generated field config includes DeclaringType and adjusted diagnostic locations. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ParentAttributeAnalyzerTests.ParentAttribute_BatchResolver_ImmutableArrayOfParentType_NoError.md | Snapshot update: generated field config includes DeclaringType and adjusted diagnostic locations. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ParentAttributeAnalyzerTests.ParentAttribute_BatchResolver_ArrayOfParentType_NoError.md | Snapshot update: generated field config includes DeclaringType and adjusted diagnostic locations. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ParentAttributeAnalyzerTests.ParentAttribute_BaseClass_NoError.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/OperationTests.Subscription_With_Subscribe_With_Excludes_Stream_Method.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/OperationTests.Subscription_Ignored_Method_Does_Not_Suppress_Public_Resolver.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/OperationTests.Shareable_On_Field.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/OperationTests.Shareable_On_Class.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/OperationTests.Shareable_On_Class_Scoped.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/OperationTests.Root_Projection_Single_Entity.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/OperationTests.Root_NodeResolver.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/OperationTests.Partial_Static_QueryType.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/OperationTests.Lookup_With_Generic_ID_Attribute.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/OperationTests.Internal_Resolvers_Can_Be_Included_With_ModuleOptions.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/OperationTests.Internal_Resolvers_Are_Ignored_By_Default.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/OperationTests.Internal_NodeResolver_Is_Added_Without_InternalMember_Option.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/OperationTests.Inaccessible_On_Field.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/OperationTests.Inaccessible_On_Class.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/OperationTests.Inaccessible_On_Class_Scoped.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/RootTypePartialAnalyzerTests.NonStaticPartialQueryType_InstanceBatchResolver_UsesResolverReceiver.md | Snapshot update: generated field config includes DeclaringType (batch resolver scenario). |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/BindMemberAnalyzerTests.BindMember_WithString_ValidMember_NoError.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/BindMemberAnalyzerTests.BindMember_WithString_InvalidMember_RaisesError.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/BindMemberAnalyzerTests.BindMember_WithString_InheritedMember_NoError.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/BindMemberAnalyzerTests.BindMember_WithNameofSimple_ValidMember_NoError.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/BindMemberAnalyzerTests.BindMember_WithNameof_WrongType_RaisesError.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/BindMemberAnalyzerTests.BindMember_WithNameof_ValidMember_NoError.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/BindMemberAnalyzerTests.BindMember_WithNameof_InvalidMember_RaisesError.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/BindMemberAnalyzerTests.BindMember_WithNameof_InheritedMember_NoError.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/BindMemberAnalyzerTests.BindMember_MultipleErrors_RaisesMultipleErrors.md | Snapshot update: generated field config includes DeclaringType for multiple fields. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/DataAttributeOrderAnalyzerTests.SingleAttribute_NoError.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/DataAttributeOrderAnalyzerTests.NoDataAttributes_NoError.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/DataAttributeOrderAnalyzerTests.IncorrectOrder_SortingBeforeFiltering_RaisesError.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/DataAttributeOrderAnalyzerTests.IncorrectOrder_ProjectionBeforePaging_RaisesError.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/DataAttributeOrderAnalyzerTests.IncorrectOrder_CompleteReverse_RaisesError.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/DataAttributeOrderAnalyzerTests.CorrectOrder_WithCustomAttributes_NoError.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/DataAttributeOrderAnalyzerTests.CorrectOrder_SomeAttributes_NoError.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/DataAttributeOrderAnalyzerTests.CorrectOrder_AllAttributes_NoError.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/CollectionInferenceTests.Infer_Dictionary_As_List_Of_KeyValuePair.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/NodeResolverIdParameterAnalyzerTests.MethodWithoutNodeResolver_NoError.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ExtendObjectTypeAnalyzerTests.ObjectType_WithGenericType_NoInfo.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ExtendObjectTypeAnalyzerTests.MixedAttributes_OnlyRaisesInfoForExtendObjectType.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ObjectTypeXmlDocInferenceTests.XmlDocumentation_With_InheritdocCref_AllPossibleTargets.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ObjectTypeXmlDocInferenceTests.XmlDocumentation_ForParameter_WithInheritdoc_WithinParamComment.snap | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ObjectTypeXmlDocInferenceTests.XmlDocumentation_ForParameter_WithInheritdoc_Is_Overriden_By_ExplicitParamComment.snap | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ObjectTypeXmlDocInferenceTests.XmlDocumentation_ForParameter_WithInheritdoc_Is_Overriden_By_DescriptionAttribute.snap | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ObjectTypeXmlDocInferenceTests.XmlDocumentation_ForParameter_WithInheritdoc_AndAdditional_ExplicitParamComment.snap | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ObjectTypeXmlDocInferenceTests.XmlDocumentation_ForParameter_IsInferred.snap | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ObjectTypeXmlDocInferenceTests.XmlDocumentation_ForParameter_Is_Overriden_By_DescriptionAttribute.snap | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ObjectTypeXmlDocInferenceTests.XmlDocumentation_ForParameter_Ignores_ReturnsAndExceptions.snap | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ObjectTypeXmlDocInferenceTests.XmlDocumentation_ForMethod_WithInheritdoc_ThatContainsInheritdoc.snap | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ObjectTypeXmlDocInferenceTests.XmlDocumentation_ForMethod_WithInheritdoc_OnRootLevel_CustomSummary.snap | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ObjectTypeXmlDocInferenceTests.XmlDocumentation_ForMethod_WithInheritdoc_OnRootLevel_CustomReturns.snap | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ObjectTypeXmlDocInferenceTests.XmlDocumentation_ForMethod_WithInheritdoc_OnRootLevel_CustomParam.snap | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ObjectTypeXmlDocInferenceTests.XmlDocumentation_ForMethod_WithInheritdoc_OnRootLevel_CustomException.snap | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ObjectTypeXmlDocInferenceTests.XmlDocumentation_ForMethod_WithInheritdoc_Inside_Summary.snap | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ObjectTypeXmlDocInferenceTests.XmlDocumentation_ForMethod_WithInheritdoc_Inside_Returns.snap | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ObjectTypeXmlDocInferenceTests.XmlDocumentation_ForMethod_WithInheritdoc_Inside_Param.snap | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ObjectTypeXmlDocInferenceTests.XmlDocumentation_ForMethod_WithInheritdoc_Inside_Exception.snap | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ObjectTypeXmlDocInferenceTests.XmlDocumentation_ForMethod_WithInheritdoc_And_MultipleLayersOfInheritance.snap | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ObjectTypeXmlDocInferenceTests.XmlDocumentation_ForMethod_With_Nested_InheritdocCref.snap | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ObjectTypeXmlDocInferenceTests.XmlDocumentation_ForMethod_Is_Overriden_By_DescriptionAttribute.snap | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ObjectTypeXmlDocInferenceTests.When_xml_doc_with_multiple_breaks_is_read_then_they_are_not_stripped_away.snap | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ObjectTypeXmlDocInferenceTests.When_xml_doc_is_missing_then_description_is_empty.snap | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ObjectTypeXmlDocInferenceTests.When_parameter_has_inheritdoc_then_it_is_resolved.snap | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ObjectTypeXmlDocInferenceTests.When_method_has_returns_then_it_is_converted.snap | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ObjectTypeXmlDocInferenceTests.When_method_has_only_exceptions_with_no_code_then_error_section_will_not_be_written.snap | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ObjectTypeXmlDocInferenceTests.When_method_has_inheritdoc_then_it_is_resolved.snap | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ObjectTypeXmlDocInferenceTests.When_method_has_exceptions_then_it_is_converted.snap | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ObjectTypeXmlDocInferenceTests.When_method_has_exceptions_then_exceptions_with_no_code_will_be_ignored.snap | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ObjectTypeXmlDocInferenceTests.When_description_has_see_tag_then_it_is_converted.snap | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ObjectTypeXmlDocInferenceTests.When_description_has_paramref_tag_then_it_is_converted.snap | Snapshot update: generated field config includes DeclaringType and adjusted diagnostic locations. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ObjectTypeXmlDocInferenceTests.When_description_has_generic_tags_then_it_is_converted.snap | Snapshot update: generated field config includes DeclaringType and adjusted diagnostic locations. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ObjectTypeXmlDocInferenceTests.When_class_implements_interface_and_method_has_description_then_method_parameter_description_is_used.snap | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ObjectTypeXmlDocInferenceTests.When_class_has_description_then_it_is_converted.snap | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ObjectTypeTests.XmlDocumentation_With_SpecialCharacters.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ObjectTypeTests.XmlDocumentation_With_ParameterDescription.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ObjectTypeTests.XmlDocumentation_With_MultilineDescription.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ObjectTypeTests.XmlDocumentation_With_ComplexScenario.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ObjectTypeTests.Shareable_On_Field.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ObjectTypeTests.Shareable_On_Class.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ObjectTypeTests.Shareable_On_Class_Scoped.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ObjectTypeTests.NullableValueTypeArgument_With_DefaultValue.md | Snapshot update: generated field config includes DeclaringType across many fields in the snapshot. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ObjectTypeTests.GraphQLType_On_Resolver_MatchesSnapshot.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ObjectTypeTests.GraphQLType_On_Parameter_MatchesSnapshot.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ObjectTypeTests.GraphQLType_NonGeneric_On_Parameter_MatchesSnapshot.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ObjectTypeTests.GenerateSource_BatchDataLoader_MatchesSnapshot.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ObjectTypeTests.Field_Nullable_RefType_Arguments_Nullability_Is_Honored_MatchesSnapshot.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ObjectTypeTests.Field_Nullable_Enum_Arguments_Nullability_Is_Honored_MatchesSnapshot.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ObjectTypeTests.Field_Arguments_With_DefaultValue_String_MatchesSnapshot.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ObjectTypeTests.Field_Arguments_With_DefaultValue_Int_MatchesSnapshot.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ObjectTypeTests.Field_Arguments_With_DefaultValue_Enum_MatchesSnapshot.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ObjectTypeTests.CustomAttribute_With_Enum_And_Composite_Enum_Arguments_On_Parameter_MatchesSnapshot.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ObjectTypeTests.CustomAttribute_On_Parameter_MatchesSnapshot.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ObjectTypeTests.BindField_MultipleAttributes_RaisesError.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ObjectTypeTests.BindField_BoundProperty_MatchesSnapshot.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ObjectTypeTests.BatchResolver_With_Service_MatchesSnapshot.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ObjectTypeTests.BatchResolver_With_Argument_MatchesSnapshot.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ObjectTypeTests.BatchResolver_Simple_MatchesSnapshot.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ObjectTypeTests.BatchResolver_Async_MatchesSnapshot.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ObjectTypeTests.Argument_With_DefaultValue.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ObjectTypeDisableXmlDocumentationTests.XmlDocumentation_Is_Suppressed_When_DisableXmlDocumentation_Is_Set.snap | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ObjectTypeDisableXmlDocumentationTests.XmlDocumentation_Is_Emitted_When_DisableXmlDocumentation_Is_Not_Set.snap | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/ObjectTypeDisableXmlDocumentationTests.GraphQLDescription_Attribute_Still_Works_When_DisableXmlDocumentation_Is_Set.snap | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/LookupReturnsNonNullableTypeAnalyzerTests.Property_NullableReturn_NoWarning.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/LookupReturnsNonNullableTypeAnalyzerTests.Property_NonNullableReturn_RaisesWarning.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/LookupReturnsNonNullableTypeAnalyzerTests.Method_ValueTaskNonNullableReturn_RaisesWarning.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/LookupReturnsNonNullableTypeAnalyzerTests.Method_TaskNullableReturn_NoWarning.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/LookupReturnsNonNullableTypeAnalyzerTests.Method_TaskNonNullableReturn_RaisesWarning.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/LookupReturnsNonNullableTypeAnalyzerTests.Method_NullableReturn_NoWarning.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/LookupReturnsNonNullableTypeAnalyzerTests.Method_NonNullableReturn_RaisesWarning.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/LookupReturnsNonNullableTypeAnalyzerTests.Method_NoLookupAttribute_NoWarning.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/LookupReturnsNonNullableTypeAnalyzerTests.Method_FullyQualifiedTaskNullableReturn_NoWarning.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/LookupReturnsNonNullableTypeAnalyzerTests.Method_FullyQualifiedTaskNonNullableReturn_RaisesWarning.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/LookupReturnsListTypeAnalyzerTests.Property_ListReturn_RaisesError.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/LookupReturnsListTypeAnalyzerTests.Method_TaskListReturn_RaisesError.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/LookupReturnsListTypeAnalyzerTests.Method_SingleReturn_NoError.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/LookupReturnsListTypeAnalyzerTests.Method_NoLookupAttribute_NoError.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/LookupReturnsListTypeAnalyzerTests.Method_ListReturn_RaisesError.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/LookupReturnsListTypeAnalyzerTests.Method_IEnumerableReturn_RaisesError.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/LookupReturnsListTypeAnalyzerTests.Method_ArrayReturn_RaisesError.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/PagingTests.Shareable_On_PageConnection.md | Snapshot update: generated field config includes DeclaringType (paging-related generated types). |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/PagingTests.Shareable_On_PageConnection_Scoped.md | Snapshot update: generated field config includes DeclaringType (scoped variant). |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/PagingTests.Shareable_On_Edge_Field.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/PagingTests.Shareable_On_Edge_Class.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/PagingTests.Shareable_On_Edge_Class_Scoped.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/PagingTests.Shareable_On_Connection_Field.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/PagingTests.Shareable_On_Connection_Class.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/PagingTests.Shareable_On_Connection_Class_Scoped.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/PagingTests.Inaccessible_On_PageConnection.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/PagingTests.Inaccessible_On_PageConnection_Scoped.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/PagingTests.Inaccessible_On_Edge_Field.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/PagingTests.Inaccessible_On_Edge_Class.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/PagingTests.Inaccessible_On_Edge_Class_Scoped.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/PagingTests.Inaccessible_On_Connection_Field.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/PagingTests.Inaccessible_On_Connection_Class.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/PagingTests.Inaccessible_On_Connection_Class_Scoped.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/PagingTests.GenerateSource_Inherit_From_PageConnection.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/PagingTests.GenerateSource_Inherit_From_ConnectionBase_Reuse_PageEdge.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/PagingTests.GenerateSource_Inherit_From_ConnectionBase_Reuse_PageEdge_Generic.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/PagingTests.GenerateSource_Inherit_From_ConnectionBase_Inherit_PageEdge.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/PagingTests.GenerateSource_GenericCustomConnection_WithConnectionName_MatchesSnapshot.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/PagingTests.GenerateSource_GenericCustomConnection_MatchesSnapshot.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/PagingTests.GenerateSource_CustomConnection_UseConnection_IncludeTotalCount_MatchesSnapshot.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/PagingTests.GenerateSource_CustomConnection_UseConnection_ConnectionName_MatchesSnapshot.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/PagingTests.GenerateSource_CustomConnection_No_Duplicates_MatchesSnapshot.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/PagingTests.GenerateSource_CustomConnection_MatchesSnapshot.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/PagingTests.GenerateSource_ConnectionT_MatchesSnapshot.md | Snapshot update: generated field config includes DeclaringType. |
| src/HotChocolate/Core/test/Types.Analyzers.Tests/snapshots/PagingTests.GenerateSource_ConnectionFlags.md | Snapshot update: generated field config includes DeclaringType. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
This was referenced Jun 3, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.