Skip to content

Commit

Permalink
Fix ConnectionUtils.ToConnection overload not passing strictCheck (#111)
Browse files Browse the repository at this point in the history
  • Loading branch information
ko-au authored May 6, 2021
1 parent 35e434f commit 1767d7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/GraphQL.Relay/Types/ConnectionUtils.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public static Connection<TSource> ToConnection<TSource, TParent>(
)
{
var list = items.ToList();
return ToConnection(list, context, sliceStartIndex: 0, totalCount: list.Count, strictCheck: true);
return ToConnection(list, context, sliceStartIndex: 0, totalCount: list.Count, strictCheck);
}

public static Connection<TSource> ToConnection<TSource, TParent>(
Expand Down

0 comments on commit 1767d7a

Please sign in to comment.