We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Edge
1 parent 13245cf commit 17b8761Copy full SHA for 17b8761
2 files changed
RELEASE_NOTES.md
@@ -248,4 +248,5 @@
248
249
### 4.0.0 - Unreleased
250
251
-* **Breaking Change** Migrated to .NET 10
+* **Breaking Change** Migrated to .NET 10
252
+* **Breaking Change** Made Relay `Edge` a struct
src/FSharp.Data.GraphQL.Server.Relay/Connections.fs
@@ -11,6 +11,7 @@ open FSharp.Data.GraphQL.Types.Patterns
11
/// Edges are used to traverse connections in Relay pagination.
12
/// </summary>
13
/// <typeparam name="Node">The type of the node at the end of this edge.</typeparam>
14
+[<Struct>]
15
type Edge<'Node> = {
16
/// <summary>Opaque cursor string used to identify this node's position in the connection.</summary>
17
Cursor : string
0 commit comments