Skip to content

Commit da07279

Browse files
authoredJun 25, 2021
Changed the whay we resolver the type from the runtime type. (#3869)
1 parent 6616f91 commit da07279

File tree

5 files changed

+90
-16
lines changed

5 files changed

+90
-16
lines changed
 

‎src/HotChocolate/Core/src/Types/Types/ObjectType.cs

+4-11
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ private void CompleteTypeResolver(ITypeCompletionContext context)
144144
}
145145
else
146146
{
147-
_isOfType = IsOfTypeWithClrType;
147+
_isOfType = IsOfTypeWithRuntimeType;
148148
}
149149
}
150150
}
@@ -164,17 +164,10 @@ private bool ValidateFields(
164164
return !hasErrors;
165165
}
166166

167-
private bool IsOfTypeWithClrType(
167+
private bool IsOfTypeWithRuntimeType(
168168
IResolverContext context,
169-
object? result)
170-
{
171-
if (result is null)
172-
{
173-
return true;
174-
}
175-
176-
return RuntimeType.IsInstanceOfType(result);
177-
}
169+
object? result) =>
170+
result is null || RuntimeType == result.GetType();
178171

179172
private bool IsOfTypeWithName(
180173
IResolverContext context,

‎src/HotChocolate/Core/test/Types.Tests/CodeFirstTests.cs

+45
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,10 @@
33
using System;
44
using System.Threading;
55
using System.Threading.Tasks;
6+
using HotChocolate.Execution;
7+
using HotChocolate.Tests;
68
using HotChocolate.Types;
9+
using Microsoft.Extensions.DependencyInjection;
710
using Snapshooter.Xunit;
811
using Xunit;
912

@@ -97,6 +100,44 @@ public void Infer_Interface_Usage_With_Interfaces_Implementing_Interfaces()
97100
.MatchSnapshot();
98101
}
99102

103+
[Fact]
104+
public async Task Default_Type_Resolution_Shall_Be_Exact()
105+
{
106+
Snapshot.FullName();
107+
108+
await new ServiceCollection()
109+
.AddGraphQL()
110+
.AddQueryType(d =>
111+
{
112+
d.Name("Query");
113+
d.Field("shouldBeCat").Type<InterfaceType<IPet>>().Resolve(new Cat());
114+
d.Field("shouldBeDog").Type<InterfaceType<IPet>>().Resolve(new Dog());
115+
})
116+
.AddType<Dog>()
117+
.AddType<Cat>()
118+
.ExecuteRequestAsync("{ shouldBeCat { __typename } shouldBeDog { __typename } }")
119+
.MatchSnapshotAsync();
120+
}
121+
122+
[Fact]
123+
public async Task Default_Type_Resolution_Shall_Be_Exact_Schema()
124+
{
125+
Snapshot.FullName();
126+
127+
await new ServiceCollection()
128+
.AddGraphQL()
129+
.AddQueryType(d =>
130+
{
131+
d.Name("Query");
132+
d.Field("shouldBeCat").Type<InterfaceType<IPet>>().Resolve(new Cat());
133+
d.Field("shouldBeDog").Type<InterfaceType<IPet>>().Resolve(new Dog());
134+
})
135+
.AddType<Dog>()
136+
.AddType<Cat>()
137+
.BuildSchemaAsync()
138+
.MatchSnapshotAsync();
139+
}
140+
100141
public class Query
101142
{
102143
public string SayHello(string name) =>
@@ -163,6 +204,10 @@ public class Dog : IPet
163204
throw new NotImplementedException();
164205
}
165206

207+
public class Cat : Dog
208+
{
209+
}
210+
166211
public class QueryWithDateTimeType : ObjectType<QueryWithDateTime>
167212
{
168213
protected override void Configure(IObjectTypeDescriptor<QueryWithDateTime> descriptor)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"data": {
3+
"shouldBeCat": {
4+
"__typename": "Cat"
5+
},
6+
"shouldBeDog": {
7+
"__typename": "Dog"
8+
}
9+
}
10+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
schema {
2+
query: Query
3+
}
4+
5+
interface IPet {
6+
name: String
7+
}
8+
9+
type Cat implements IPet {
10+
name: String
11+
}
12+
13+
type Dog implements IPet {
14+
name: String
15+
}
16+
17+
type Query {
18+
shouldBeCat: IPet
19+
shouldBeDog: IPet
20+
}
21+
22+
"The `@defer` directive may be provided for fragment spreads and inline fragments to inform the executor to delay the execution of the current fragment to indicate deprioritization of the current fragment. A query with `@defer` directive will cause the request to potentially return multiple responses, where non-deferred data is delivered in the initial response and data deferred is delivered in a subsequent response. `@include` and `@skip` take precedence over `@defer`."
23+
directive @defer("If this argument label has a value other than null, it will be passed on to the result of this defer directive. This label is intended to give client applications a way to identify to which fragment a deferred result belongs to." label: String "Deferred when true." if: Boolean) on FRAGMENT_SPREAD | INLINE_FRAGMENT
24+
25+
"The `@stream` directive may be provided for a field of `List` type so that the backend can leverage technology such as asynchronous iterators to provide a partial list in the initial response, and additional list items in subsequent responses. `@include` and `@skip` take precedence over `@stream`."
26+
directive @stream("If this argument label has a value other than null, it will be passed on to the result of this stream directive. This label is intended to give client applications a way to identify to which fragment a streamed result belongs to." label: String "The initial elements that shall be send down to the consumer." initialCount: Int! "Streamed when true." if: Boolean!) on FIELD

‎src/StrawberryShake/Client/test/Core.Tests/Serialization/UuidSerializerTests.cs

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
using System;
1+
using System;
22
using StrawberryShake;
3-
using StrawberryShake.Serialization;
3+
using StrawberryShake.Serialization;
44
using Xunit;
55

66
namespace Core.Tests.Serialization
@@ -16,7 +16,7 @@ public class UuidSerializerTests
1616
public void Parse_Different_Formats(string format)
1717
{
1818
// arrange
19-
var serializer = new UUIDSerializer();
19+
var serializer = new UuidSerializer();
2020
var guid = Guid.NewGuid();
2121

2222
// act
@@ -30,7 +30,7 @@ public void Parse_Different_Formats(string format)
3030
public void Parse_Exception()
3131
{
3232
// arrange
33-
var serializer = new UUIDSerializer();
33+
var serializer = new UuidSerializer();
3434

3535
// assert
3636
Assert.Throws<GraphQLClientException>(() => serializer.Parse(string.Empty));
@@ -45,7 +45,7 @@ public void Parse_Exception()
4545
public void Format(string format)
4646
{
4747
// arrange
48-
var serializer = new UUIDSerializer(format: format);
48+
var serializer = new UuidSerializer(format: format);
4949
var guid = Guid.NewGuid();
5050

5151
// act

0 commit comments

Comments
 (0)
Please sign in to comment.