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

Added better error messages to data #4370

Merged
merged 25 commits into from
Nov 4, 2021
Merged
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
2441ee2
Added better error messages to data
PascalSenn Nov 2, 2021
f686661
Fix format
PascalSenn Nov 2, 2021
a3919cc
Merge branch 'main' into pse/add-better-error-messages-to-data
michaelstaib Nov 3, 2021
40f0b28
Merge branch 'main' into pse/add-better-error-messages-to-data
michaelstaib Nov 3, 2021
c7de9bb
Fixed Projection
PascalSenn Nov 3, 2021
304fd50
Merge branch 'pse/add-better-error-messages-to-data' of github.com:Ch…
PascalSenn Nov 3, 2021
01b3126
Fixed argument name
PascalSenn Nov 3, 2021
6c23b1d
Update src/HotChocolate/Data/src/Data/Projections/Expressions/Handler…
michaelstaib Nov 4, 2021
10abc1e
Update src/HotChocolate/Data/src/Data/Projections/Expressions/Handler…
michaelstaib Nov 4, 2021
a6741a7
Update src/HotChocolate/Data/src/Data/Sorting/Expressions/Handlers/Qu…
michaelstaib Nov 4, 2021
ee22d77
Update src/HotChocolate/Data/src/Data/ThrowHelper.cs
michaelstaib Nov 4, 2021
8cdd40d
Update src/HotChocolate/Data/src/Data/ThrowHelper.cs
michaelstaib Nov 4, 2021
72aba18
Update src/HotChocolate/Data/src/Data/ThrowHelper.cs
michaelstaib Nov 4, 2021
e544f57
Update src/HotChocolate/Data/src/Data/ThrowHelper.cs
michaelstaib Nov 4, 2021
f1ef64f
Update src/HotChocolate/Data/src/Data/ThrowHelper.cs
michaelstaib Nov 4, 2021
095e3fb
Update src/HotChocolate/Data/src/Data/ThrowHelper.cs
michaelstaib Nov 4, 2021
51918c2
Update src/HotChocolate/Data/src/Data/ThrowHelper.cs
michaelstaib Nov 4, 2021
85f7a15
Update src/HotChocolate/Data/src/Data/ThrowHelper.cs
michaelstaib Nov 4, 2021
32e2675
Update src/HotChocolate/Data/src/Data/ThrowHelper.cs
michaelstaib Nov 4, 2021
e3dd316
Update src/HotChocolate/Data/src/Data/ThrowHelper.cs
michaelstaib Nov 4, 2021
ece7d60
Update src/HotChocolate/Data/src/Data/ThrowHelper.cs
michaelstaib Nov 4, 2021
b4b541c
Update src/HotChocolate/Data/src/Data/ThrowHelper.cs
michaelstaib Nov 4, 2021
0a98465
Update src/HotChocolate/Data/src/Data/ThrowHelper.cs
michaelstaib Nov 4, 2021
e887d67
Update src/HotChocolate/Data/src/Data/ThrowHelper.cs
michaelstaib Nov 4, 2021
938e5b2
Merge branch 'main' into pse/add-better-error-messages-to-data
michaelstaib Nov 4, 2021
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
Prev Previous commit
Next Next commit
Update src/HotChocolate/Data/src/Data/ThrowHelper.cs
  • Loading branch information
michaelstaib authored Nov 4, 2021
commit e544f5778a3e775683f259bdec643ebf9756f6ea
3 changes: 1 addition & 2 deletions src/HotChocolate/Data/src/Data/ThrowHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -487,8 +487,7 @@ public static InvalidOperationException SortField_ArgumentInvalid_NoHandlerWasFo
string argumentName) =>
new(string.Format(
CultureInfo.CurrentCulture,
DataResources.SortField_ArgumentInvalid_NoHandlerWasFound
));
DataResources.SortField_ArgumentInvalid_NoHandlerWasFound));

public static InvalidOperationException ProjectionVisitor_CouldNotUnwrapType(IType type) =>
new(string.Format(
Expand Down