Skip to content

Commit 809ee3a

Browse files
committed
Fixed some nullable issues
1 parent 8ccbcf0 commit 809ee3a

21 files changed

Lines changed: 18 additions & 22 deletions

src/Linq2GraphQL.Generator/Properties/launchSettings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"profiles": {
33
"Linq2GraphQL.Generator": {
44
"commandName": "Project",
5-
"commandLineArgs": "https://localhost:50741/graphql/ -c=\"SampleNullableClient\" -n=\"Linq2GraphQL.TestClientNullable\" -o=\"C:\\Code\\Github\\Linq2GraphQL.Client\\test\\Linq2GraphQL.TestClientNullable\\Generated\" -s=true -nu=true"
5+
"commandLineArgs": "https://localhost:7184/graphql/ -c=\"SampleClient\" -n=\"Linq2GraphQL.TestClient\" -o=\"C:\\Code\\Github\\Linq2GraphQL.Client\\test\\Linq2GraphQL.TestClient\\Generated\" -s=true"
66
}
77
}
88
}

test/Linq2GraphQL.TestClient/Generated/Enums/AddressType.cs

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,4 @@ public enum AddressType
1111
Delivery,
1212
[EnumMember(Value = "INVOICE")]
1313
Invoice,
14-
/// <summary>
15-
/// Unknown values are mapped to this member.
16-
/// Generated via --es/-enum-strategy command line option upon generation.
17-
/// Don't set explicitly.
18-
/// </summary>
19-
[EnumMember(Value = "")]
20-
__Unknown
2114
}

test/Linq2GraphQL.TestClient/Generated/Enums/CustomerStatus.cs

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,4 @@ public enum CustomerStatus
1111
Active,
1212
[EnumMember(Value = "DISABLED")]
1313
Disabled,
14-
/// <summary>
15-
/// Unknown values are mapped to this member.
16-
/// Generated via --es/-enum-strategy command line option upon generation.
17-
/// Don't set explicitly.
18-
/// </summary>
19-
[EnumMember(Value = "")]
20-
__Unknown
2114
}

test/Linq2GraphQL.TestClient/Generated/Enums/SortEnumType.cs

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,4 @@ public enum SortEnumType
1111
Asc,
1212
[EnumMember(Value = "DESC")]
1313
Desc,
14-
/// <summary>
15-
/// Unknown values are mapped to this member.
16-
/// Generated via --es/-enum-strategy command line option upon generation.
17-
/// Don't set explicitly.
18-
/// </summary>
19-
[EnumMember(Value = "")]
20-
__Unknown
2114
}

test/Linq2GraphQL.TestClient/Generated/Types/Address.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77
namespace Linq2GraphQL.TestClient;
88

9+
910
public partial class Address : GraphQLTypeBase
1011
{
1112
[JsonPropertyName("name")]

test/Linq2GraphQL.TestClient/Generated/Types/AnimalsConnection.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77
namespace Linq2GraphQL.TestClient;
88

9+
910
public partial class AnimalsConnection : GraphQLTypeBase, Linq2GraphQL.Client.Common.ICursorPaging
1011
{
1112
[JsonPropertyName("pageInfo")]

test/Linq2GraphQL.TestClient/Generated/Types/AnimalsEdge.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77
namespace Linq2GraphQL.TestClient;
88

9+
910
public partial class AnimalsEdge : GraphQLTypeBase
1011
{
1112
[JsonPropertyName("cursor")]

test/Linq2GraphQL.TestClient/Generated/Types/CollectionSegmentInfo.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77
namespace Linq2GraphQL.TestClient;
88

9+
910
public partial class CollectionSegmentInfo : GraphQLTypeBase
1011
{
1112
[JsonPropertyName("hasNextPage")]

test/Linq2GraphQL.TestClient/Generated/Types/Customer.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77
namespace Linq2GraphQL.TestClient;
88

9+
910
public partial class Customer : GraphQLTypeBase
1011
{
1112
[JsonPropertyName("customerId")]

test/Linq2GraphQL.TestClient/Generated/Types/Item.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77
namespace Linq2GraphQL.TestClient;
88

9+
910
public partial class Item : GraphQLTypeBase
1011
{
1112
[JsonPropertyName("itemId")]

0 commit comments

Comments
 (0)