ci: initial work for migration-testing (#311)

Also generating new assets for new ci steps.
This commit is contained in:
Ariel Mashraki
2020-01-22 21:20:18 +02:00
committed by GitHub
parent 28b9ef193f
commit faf6c2f2f6
50 changed files with 42 additions and 53 deletions

View File

@@ -25,9 +25,9 @@ type Node struct {
// The values are being populated by the NodeQuery when eager-loading is set.
Edges struct {
// Prev holds the value of the prev edge.
Prev *Node
Prev *Node `gqlgen:prev`
// Next holds the value of the next edge.
Next *Node
Next *Node `gqlgen:next`
} `json:"edges"`
}