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