File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Sources/Graphiti/Connection/PagniationArguments Expand file tree Collapse file tree 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 {
66public struct BackwardPaginationArguments : BackwardPaginatable {
77 public let last : Int ?
88 public let before : String ?
9-
9+
1010 public init ( last: Int ? , before: String ? ) {
1111 self . last = last
1212 self . before = before
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ public protocol ForwardPaginatable: Decodable {
66public struct ForwardPaginationArguments : ForwardPaginatable {
77 public let first : Int ?
88 public let after : String ?
9-
9+
1010 public init ( first: Int ? , after: String ? ) {
1111 self . first = first
1212 self . after = after
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ public struct PaginationArguments: Paginatable {
55 public let last : Int ?
66 public let after : String ?
77 public let before : String ?
8-
8+
99 public init ( first: Int ? = nil , last: Int ? = nil , after: String ? = nil , before: String ? = nil ) {
1010 self . first = first
1111 self . last = last
You can’t perform that action at this time.
0 commit comments