File tree 3 files changed +3
-3
lines changed
Sources/Graphiti/Connection/PagniationArguments
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ public protocol BackwardPaginatable: Decodable {
6
6
public struct BackwardPaginationArguments : BackwardPaginatable {
7
7
public let last : Int ?
8
8
public let before : String ?
9
-
9
+
10
10
public init ( last: Int ? , before: String ? ) {
11
11
self . last = last
12
12
self . before = before
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ public protocol ForwardPaginatable: Decodable {
6
6
public struct ForwardPaginationArguments : ForwardPaginatable {
7
7
public let first : Int ?
8
8
public let after : String ?
9
-
9
+
10
10
public init ( first: Int ? , after: String ? ) {
11
11
self . first = first
12
12
self . after = after
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ public struct PaginationArguments: Paginatable {
5
5
public let last : Int ?
6
6
public let after : String ?
7
7
public let before : String ?
8
-
8
+
9
9
public init ( first: Int ? = nil , last: Int ? = nil , after: String ? = nil , before: String ? = nil ) {
10
10
self . first = first
11
11
self . last = last
You can’t perform that action at this time.
0 commit comments