Skip to content

Commit 29517ee

Browse files
committed
fixup! Removed unnecessary GraphQL types upcasts
1 parent e1fab18 commit 29517ee

1 file changed

Lines changed: 2 additions & 6 deletions

File tree

src/FSharp.Data.GraphQL.Server.Relay/Connections.fs

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -303,19 +303,15 @@ module Connection =
303303
/// </summary>
304304
/// <seealso cref="backwardArgs"/>
305305
/// <seealso cref="allArgs"/>
306-
let forwardArgs =
307-
[ Define.Input ("first", Nullable IntType)
308-
Define.Input ("after", Nullable StringType) ]
306+
let forwardArgs = [ Define.Input ("first", Nullable IntType); Define.Input ("after", Nullable StringType) ]
309307

310308
/// <summary>
311309
/// Argument definitions for backward pagination ("last" and "before").
312310
/// Use these when defining GraphQL fields that support backward-only pagination.
313311
/// </summary>
314312
/// <seealso cref="forwardArgs"/>
315313
/// <seealso cref="allArgs"/>
316-
let backwardArgs =
317-
[ Define.Input ("last", Nullable IntType)
318-
Define.Input ("before", Nullable StringType) ]
314+
let backwardArgs = [ Define.Input ("last", Nullable IntType); Define.Input ("before", Nullable StringType) ]
319315

320316
/// <summary>
321317
/// Complete set of argument definitions for bidirectional pagination.

0 commit comments

Comments
 (0)