Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adds deprecation of input fields and arguments #4630

Merged
merged 24 commits into from
Feb 7, 2022
Merged
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
1db5e1d
Added Deprecation of input fields
PascalSenn Jan 9, 2022
e2fe06f
Update Snapshots
PascalSenn Jan 9, 2022
0fdaf63
Update src/HotChocolate/Core/src/Types/Types/Introspection/__Type.cs
michaelstaib Jan 10, 2022
fdb3572
Add tests for validation rules
PascalSenn Jan 11, 2022
1d6428d
Resolve comments
PascalSenn Jan 11, 2022
fb4d3ff
Merge branch 'pse/deprecation-of-input-fields' of github.com:ChilliCr…
PascalSenn Jan 11, 2022
d82adbc
Fix format
PascalSenn Jan 12, 2022
6f56276
Fix format
PascalSenn Jan 12, 2022
4062541
Algin loop format
PascalSenn Jan 12, 2022
6a4944a
Algin loop format
PascalSenn Jan 12, 2022
d41daec
Fix csproj
PascalSenn Jan 12, 2022
0dd34a2
Merge branch 'main' into pse/deprecation-of-input-fields
PascalSenn Jan 12, 2022
580465d
Merge branch 'main' into pse/deprecation-of-input-fields
michaelstaib Jan 28, 2022
b819ac9
Added test for input fields
michaelstaib Jan 28, 2022
ec72764
Merge branch 'main' into pse/deprecation-of-input-fields
PascalSenn Feb 2, 2022
f568ee3
Add Tests for directives
PascalSenn Feb 6, 2022
0876a50
Add Tests for inputtypes
PascalSenn Feb 6, 2022
272cff1
Add Tests for interfaces
PascalSenn Feb 6, 2022
76f0300
Add Tests for object types
PascalSenn Feb 6, 2022
7d16e3b
Merge branch 'pse/deprecation-of-input-fields' of github.com:ChilliCr…
PascalSenn Feb 6, 2022
0119e0c
Update tests
PascalSenn Feb 6, 2022
64a82ff
Fixed [Obsolete] on directive argument
PascalSenn Feb 6, 2022
12f6d6f
Merge branch 'main' into pse/deprecation-of-input-fields
PascalSenn Feb 6, 2022
50d8baa
Update ResolveObjectFieldDescriptorExtensions.cs
michaelstaib Feb 7, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ namespace HotChocolate.Types;

public static class ResolveObjectFieldDescriptorExtensions
{
// Resolve(IResolverContext)
michaelstaib marked this conversation as resolved.
Show resolved Hide resolved

public static IObjectFieldDescriptor Resolve(
this IObjectFieldDescriptor descriptor,
Func<IResolverContext, object?> resolver)
Expand Down