aboutsummaryrefslogtreecommitdiffstats
path: root/graphql/connections/lazy_identity.go
diff options
context:
space:
mode:
Diffstat (limited to 'graphql/connections/lazy_identity.go')
-rw-r--r--graphql/connections/lazy_identity.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/graphql/connections/lazy_identity.go b/graphql/connections/lazy_identity.go
index 34ba579a..3274dd7e 100644
--- a/graphql/connections/lazy_identity.go
+++ b/graphql/connections/lazy_identity.go
@@ -1,8 +1,10 @@
package connections
+import "github.com/MichaelMure/git-bug/entity"
+
// LazyIdentityEdge is a special relay edge used to implement a lazy loading connection
type LazyIdentityEdge struct {
- Id string
+ Id entity.Id
Cursor string
}