Skip to content

Commit

Permalink
Merge pull request #945 from clement911/master
Browse files Browse the repository at this point in the history
Regenerated GraphQL model with connection interfaces
  • Loading branch information
clement911 committed Oct 23, 2023
2 parents fab598e + 3454ded commit 86b5070
Show file tree
Hide file tree
Showing 5 changed files with 1,434 additions and 1,407 deletions.
4 changes: 2 additions & 2 deletions ShopifySharp.Tests/GenerateGraphQLSchema_Test.cs
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,8 @@ public async Task GetOrders()
}
");
var orders = res.nodes;
Assert.True(orders.Length > 0);
var o = orders[0];
Assert.True(orders.Count() > 0);
var o = orders.First();
Assert.True(o.name != null);
Assert.True(o.lineItems.nodes.First().quantity != null);
var commentEventEmbed = o as ICommentEventEmbed;
Expand Down
2 changes: 1 addition & 1 deletion ShopifySharp.Tests/ShopifySharp.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net7.0'">
<PackageReference Include="Wish.GraphQLSchemaGenerator">
<Version>1.4.1</Version>
<Version>1.5.1</Version>
</PackageReference>
</ItemGroup>
</Project>
Loading

0 comments on commit 86b5070

Please sign in to comment.