From 123889d98cd84174c081bdb496e34ded983e322b Mon Sep 17 00:00:00 2001 From: Manfred Touron Date: Tue, 10 Mar 2020 12:21:10 +0100 Subject: [PATCH] fix: remove duplicates --- internal/dvstore/query.go | 14 +++++++ internal/dvstore/query_test.go | 16 ++++++++ ...viz-test_moul-and-moulbot-depviz-test.json | 32 --------------- ...lden.all-depviz-test_moul-depviz-test.json | 16 -------- ...n.all-depviz-test_moulbot-depviz-test.json | 12 ------ ....all-depviz-test_theworld-with-closed.json | 40 ------------------- ....all-depviz-test_theworld-without-prs.json | 32 --------------- .../golden.all-depviz-test_theworld.json | 32 --------------- 8 files changed, 30 insertions(+), 164 deletions(-) diff --git a/internal/dvstore/query.go b/internal/dvstore/query.go index 9d62abb1e..5d4f421c9 100644 --- a/internal/dvstore/query.go +++ b/internal/dvstore/query.go @@ -125,6 +125,20 @@ func LoadTasks(h *cayley.Handle, schema *schema.Config, filters LoadTasksFilters tasks = dvmodel.FilterIsolatedTasks(tasks, logger) } + { // remove duplicates + // FIXME: remove duplicates from the query itself + taskMap := map[quad.IRI]dvmodel.Task{} + for _, task := range tasks { + taskMap[task.ID] = task + } + tasks = make(dvmodel.Tasks, len(taskMap)) + i := 0 + for _, task := range taskMap { + tasks[i] = task + i++ + } + } + sort.Slice(tasks[:], func(i, j int) bool { return tasks[i].ID < tasks[j].ID }) diff --git a/internal/dvstore/query_test.go b/internal/dvstore/query_test.go index 47c09d7f5..39bd54b95 100644 --- a/internal/dvstore/query_test.go +++ b/internal/dvstore/query_test.go @@ -66,6 +66,22 @@ func TestLoadTasks(t *testing.T) { assert.NoError(t, err, name) } + { // check for duplicates + duplicateMap := map[string]int{} + hasDuplicates := false + for _, task := range tasks { + if _, found := duplicateMap[string(task.ID)]; !found { + duplicateMap[string(task.ID)] = 0 + } else { + hasDuplicates = true + } + duplicateMap[string(task.ID)]++ + } + if !assert.False(t, hasDuplicates) { + fmt.Println(godev.PrettyJSON(duplicateMap)) + } + } + g, err := ioutil.ReadFile(gp) assert.NoError(t, err, name) assert.Equal(t, len(string(g)), len(actual), gp) diff --git a/internal/dvstore/testdata/golden.all-depviz-test_moul-and-moulbot-depviz-test.json b/internal/dvstore/testdata/golden.all-depviz-test_moul-and-moulbot-depviz-test.json index aae7f5cb3..749595672 100644 --- a/internal/dvstore/testdata/golden.all-depviz-test_moul-and-moulbot-depviz-test.json +++ b/internal/dvstore/testdata/golden.all-depviz-test_moul-and-moulbot-depviz-test.json @@ -1,52 +1,20 @@ {"Targets":[{"Project":{}},{"Project":{}}],"TheWorld":false,"WithClosed":false,"WithoutIsolated":false,"WithoutPRs":false,"WithoutExternalDeps":false} {"id":"https://github.com/moul-bot/depviz-test/issues/1","created_at":"2019-08-08T18:55:07Z","updated_at":"2019-08-08T18:55:07Z","local_id":"moul-bot/depviz-test#1","kind":1,"title":"Issue 1","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test"} -{"id":"https://github.com/moul-bot/depviz-test/issues/1","created_at":"2019-08-08T18:55:07Z","updated_at":"2019-08-08T18:55:07Z","local_id":"moul-bot/depviz-test#1","kind":1,"title":"Issue 1","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test"} -{"id":"https://github.com/moul-bot/depviz-test/issues/2","created_at":"2019-08-08T18:55:13Z","updated_at":"2019-08-08T18:55:13Z","local_id":"moul-bot/depviz-test#2","kind":1,"title":"Issue 2","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test"} {"id":"https://github.com/moul-bot/depviz-test/issues/2","created_at":"2019-08-08T18:55:13Z","updated_at":"2019-08-08T18:55:13Z","local_id":"moul-bot/depviz-test#2","kind":1,"title":"Issue 2","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test"} {"id":"https://github.com/moul-bot/depviz-test/issues/3","created_at":"2019-08-08T18:55:19Z","updated_at":"2019-08-08T18:55:19Z","local_id":"moul-bot/depviz-test#3","kind":1,"title":"Issue 3","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test"} -{"id":"https://github.com/moul-bot/depviz-test/issues/3","created_at":"2019-08-08T18:55:19Z","updated_at":"2019-08-08T18:55:19Z","local_id":"moul-bot/depviz-test#3","kind":1,"title":"Issue 3","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test"} -{"id":"https://github.com/moul-bot/depviz-test/issues/4","created_at":"2019-08-08T18:55:34Z","updated_at":"2019-08-08T18:55:34Z","local_id":"moul-bot/depviz-test#4","kind":1,"title":"Issue #4","description":"Depends on #1 \r\nDepends on #2 \r\nDepends on #3","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/1","https://github.com/moul-bot/depviz-test/issues/2","https://github.com/moul-bot/depviz-test/issues/3"]} -{"id":"https://github.com/moul-bot/depviz-test/issues/4","created_at":"2019-08-08T18:55:34Z","updated_at":"2019-08-08T18:55:34Z","local_id":"moul-bot/depviz-test#4","kind":1,"title":"Issue #4","description":"Depends on #1 \r\nDepends on #2 \r\nDepends on #3","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/1","https://github.com/moul-bot/depviz-test/issues/2","https://github.com/moul-bot/depviz-test/issues/3"]} -{"id":"https://github.com/moul-bot/depviz-test/issues/4","created_at":"2019-08-08T18:55:34Z","updated_at":"2019-08-08T18:55:34Z","local_id":"moul-bot/depviz-test#4","kind":1,"title":"Issue #4","description":"Depends on #1 \r\nDepends on #2 \r\nDepends on #3","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/1","https://github.com/moul-bot/depviz-test/issues/2","https://github.com/moul-bot/depviz-test/issues/3"]} -{"id":"https://github.com/moul-bot/depviz-test/issues/4","created_at":"2019-08-08T18:55:34Z","updated_at":"2019-08-08T18:55:34Z","local_id":"moul-bot/depviz-test#4","kind":1,"title":"Issue #4","description":"Depends on #1 \r\nDepends on #2 \r\nDepends on #3","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/1","https://github.com/moul-bot/depviz-test/issues/2","https://github.com/moul-bot/depviz-test/issues/3"]} -{"id":"https://github.com/moul-bot/depviz-test/issues/4","created_at":"2019-08-08T18:55:34Z","updated_at":"2019-08-08T18:55:34Z","local_id":"moul-bot/depviz-test#4","kind":1,"title":"Issue #4","description":"Depends on #1 \r\nDepends on #2 \r\nDepends on #3","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/1","https://github.com/moul-bot/depviz-test/issues/2","https://github.com/moul-bot/depviz-test/issues/3"]} {"id":"https://github.com/moul-bot/depviz-test/issues/4","created_at":"2019-08-08T18:55:34Z","updated_at":"2019-08-08T18:55:34Z","local_id":"moul-bot/depviz-test#4","kind":1,"title":"Issue #4","description":"Depends on #1 \r\nDepends on #2 \r\nDepends on #3","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/1","https://github.com/moul-bot/depviz-test/issues/2","https://github.com/moul-bot/depviz-test/issues/3"]} -{"id":"https://github.com/moul-bot/depviz-test/issues/4","created_at":"2019-08-08T18:55:34Z","updated_at":"2019-08-08T18:55:34Z","local_id":"moul-bot/depviz-test#4","kind":1,"title":"Issue #4","description":"Depends on #1 \r\nDepends on #2 \r\nDepends on #3","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/1","https://github.com/moul-bot/depviz-test/issues/2","https://github.com/moul-bot/depviz-test/issues/3"]} -{"id":"https://github.com/moul-bot/depviz-test/issues/5","created_at":"2019-08-08T18:55:47Z","updated_at":"2019-08-08T18:55:47Z","local_id":"moul-bot/depviz-test#5","kind":1,"title":"Issue 5","description":"Depends on #4","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/4"]} {"id":"https://github.com/moul-bot/depviz-test/issues/5","created_at":"2019-08-08T18:55:47Z","updated_at":"2019-08-08T18:55:47Z","local_id":"moul-bot/depviz-test#5","kind":1,"title":"Issue 5","description":"Depends on #4","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/4"]} -{"id":"https://github.com/moul-bot/depviz-test/issues/5","created_at":"2019-08-08T18:55:47Z","updated_at":"2019-08-08T18:55:47Z","local_id":"moul-bot/depviz-test#5","kind":1,"title":"Issue 5","description":"Depends on #4","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/4"]} -{"id":"https://github.com/moul-bot/depviz-test/issues/6","created_at":"2019-08-08T18:56:04Z","updated_at":"2019-08-08T18:56:04Z","local_id":"moul-bot/depviz-test#6","kind":1,"title":"Issue 6","description":"Depends on #4","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/4"]} {"id":"https://github.com/moul-bot/depviz-test/issues/6","created_at":"2019-08-08T18:56:04Z","updated_at":"2019-08-08T18:56:04Z","local_id":"moul-bot/depviz-test#6","kind":1,"title":"Issue 6","description":"Depends on #4","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/4"]} {"id":"https://github.com/moul-bot/depviz-test/issues/7","created_at":"2019-08-08T18:56:14Z","updated_at":"2019-09-03T09:07:03Z","local_id":"moul-bot/depviz-test#7","kind":1,"title":"Issue 7","description":"Depends on #4\r\nDepends on https://github.com/moul/depviz-test/milestone/1","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/4","https://github.com/moul/depviz-test/milestone/1"]} -{"id":"https://github.com/moul-bot/depviz-test/issues/7","created_at":"2019-08-08T18:56:14Z","updated_at":"2019-09-03T09:07:03Z","local_id":"moul-bot/depviz-test#7","kind":1,"title":"Issue 7","description":"Depends on #4\r\nDepends on https://github.com/moul/depviz-test/milestone/1","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/4","https://github.com/moul/depviz-test/milestone/1"]} -{"id":"https://github.com/moul-bot/depviz-test/issues/7","created_at":"2019-08-08T18:56:14Z","updated_at":"2019-09-03T09:07:03Z","local_id":"moul-bot/depviz-test#7","kind":1,"title":"Issue 7","description":"Depends on #4\r\nDepends on https://github.com/moul/depviz-test/milestone/1","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/4","https://github.com/moul/depviz-test/milestone/1"]} {"id":"https://github.com/moul/depviz-test/issues/1","created_at":"2019-08-06T15:35:49Z","updated_at":"2019-08-06T15:35:49Z","local_id":"moul/depviz-test#1","kind":1,"title":"I'm a standard issue","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test"} {"id":"https://github.com/moul/depviz-test/issues/10","created_at":"2019-09-03T08:51:47Z","updated_at":"2019-12-03T17:35:06Z","local_id":"moul/depviz-test#10","kind":1,"title":"New test","description":"Depends on #4 \r\nDepends on #6 \r\nBlocks #7 \r\nDepends on https://github.com/moul-bot/depviz-test/issues/5","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/5","https://github.com/moul/depviz-test/issues/4","https://github.com/moul/depviz-test/issues/6"],"is_blocking":["https://github.com/moul/depviz-test/issues/7"]} -{"id":"https://github.com/moul/depviz-test/issues/10","created_at":"2019-09-03T08:51:47Z","updated_at":"2019-12-03T17:35:06Z","local_id":"moul/depviz-test#10","kind":1,"title":"New test","description":"Depends on #4 \r\nDepends on #6 \r\nBlocks #7 \r\nDepends on https://github.com/moul-bot/depviz-test/issues/5","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/5","https://github.com/moul/depviz-test/issues/4","https://github.com/moul/depviz-test/issues/6"],"is_blocking":["https://github.com/moul/depviz-test/issues/7"]} -{"id":"https://github.com/moul/depviz-test/issues/10","created_at":"2019-09-03T08:51:47Z","updated_at":"2019-12-03T17:35:06Z","local_id":"moul/depviz-test#10","kind":1,"title":"New test","description":"Depends on #4 \r\nDepends on #6 \r\nBlocks #7 \r\nDepends on https://github.com/moul-bot/depviz-test/issues/5","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/5","https://github.com/moul/depviz-test/issues/4","https://github.com/moul/depviz-test/issues/6"],"is_blocking":["https://github.com/moul/depviz-test/issues/7"]} -{"id":"https://github.com/moul/depviz-test/issues/10","created_at":"2019-09-03T08:51:47Z","updated_at":"2019-12-03T17:35:06Z","local_id":"moul/depviz-test#10","kind":1,"title":"New test","description":"Depends on #4 \r\nDepends on #6 \r\nBlocks #7 \r\nDepends on https://github.com/moul-bot/depviz-test/issues/5","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/5","https://github.com/moul/depviz-test/issues/4","https://github.com/moul/depviz-test/issues/6"],"is_blocking":["https://github.com/moul/depviz-test/issues/7"]} -{"id":"https://github.com/moul/depviz-test/issues/10","created_at":"2019-09-03T08:51:47Z","updated_at":"2019-12-03T17:35:06Z","local_id":"moul/depviz-test#10","kind":1,"title":"New test","description":"Depends on #4 \r\nDepends on #6 \r\nBlocks #7 \r\nDepends on https://github.com/moul-bot/depviz-test/issues/5","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/5","https://github.com/moul/depviz-test/issues/4","https://github.com/moul/depviz-test/issues/6"],"is_blocking":["https://github.com/moul/depviz-test/issues/7"]} {"id":"https://github.com/moul/depviz-test/issues/11","created_at":"2019-11-04T11:59:52Z","updated_at":"2019-11-04T12:05:12Z","local_id":"moul/depviz-test#11","kind":1,"title":"test short names","description":"https://github.com/moul/depviz-test/issues/2\r\nhttps://github.com/moul/depviz-test/issues/10\r\nhttps://github.com/moul/depviz-test-two-issues/pull/4\r\nhttps://github.com/moul/depviz-test-two-issues/pull/3\r\nhttps://github.com/moul/depviz-test-two-issues/projects/1#card-28544696\r\nhttps://github.com/moul/depviz-test-two-issues/milestone/1\r\nhttps://github.com/moul\r\nhttps://github.com/berty","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test"} {"id":"https://github.com/moul/depviz-test/issues/2","created_at":"2019-08-06T15:36:09Z","updated_at":"2019-10-29T08:59:41Z","local_id":"moul/depviz-test#2","kind":1,"title":"I'm an issue with a milestone, some projects, and some labels","driver":1,"completed_at":"2019-10-29T08:59:41Z","state":2,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","has_milestone":"https://github.com/moul/depviz-test/milestone/1","has_label":["https://github.com/moul/depviz-test/labels/bug","https://github.com/moul/depviz-test/labels/documentation","https://github.com/moul/depviz-test/labels/enhancement"]} -{"id":"https://github.com/moul/depviz-test/issues/2","created_at":"2019-08-06T15:36:09Z","updated_at":"2019-10-29T08:59:41Z","local_id":"moul/depviz-test#2","kind":1,"title":"I'm an issue with a milestone, some projects, and some labels","driver":1,"completed_at":"2019-10-29T08:59:41Z","state":2,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","has_milestone":"https://github.com/moul/depviz-test/milestone/1","has_label":["https://github.com/moul/depviz-test/labels/bug","https://github.com/moul/depviz-test/labels/documentation","https://github.com/moul/depviz-test/labels/enhancement"]} -{"id":"https://github.com/moul/depviz-test/issues/2","created_at":"2019-08-06T15:36:09Z","updated_at":"2019-10-29T08:59:41Z","local_id":"moul/depviz-test#2","kind":1,"title":"I'm an issue with a milestone, some projects, and some labels","driver":1,"completed_at":"2019-10-29T08:59:41Z","state":2,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","has_milestone":"https://github.com/moul/depviz-test/milestone/1","has_label":["https://github.com/moul/depviz-test/labels/bug","https://github.com/moul/depviz-test/labels/documentation","https://github.com/moul/depviz-test/labels/enhancement"]} {"id":"https://github.com/moul/depviz-test/issues/3","created_at":"2019-08-06T15:36:45Z","updated_at":"2019-08-06T15:36:45Z","local_id":"moul/depviz-test#3","kind":1,"title":"I'm an issue that depends on another","description":"Depends on #2 ","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","is_depending_on":["https://github.com/moul/depviz-test/issues/2"]} -{"id":"https://github.com/moul/depviz-test/issues/3","created_at":"2019-08-06T15:36:45Z","updated_at":"2019-08-06T15:36:45Z","local_id":"moul/depviz-test#3","kind":1,"title":"I'm an issue that depends on another","description":"Depends on #2 ","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","is_depending_on":["https://github.com/moul/depviz-test/issues/2"]} -{"id":"https://github.com/moul/depviz-test/issues/4","created_at":"2019-08-06T15:36:58Z","updated_at":"2019-08-06T15:36:58Z","local_id":"moul/depviz-test#4","kind":1,"title":"I'm an issue that also depends on another","description":"Depends on #2","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","is_depending_on":["https://github.com/moul/depviz-test/issues/2"]} {"id":"https://github.com/moul/depviz-test/issues/4","created_at":"2019-08-06T15:36:58Z","updated_at":"2019-08-06T15:36:58Z","local_id":"moul/depviz-test#4","kind":1,"title":"I'm an issue that also depends on another","description":"Depends on #2","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","is_depending_on":["https://github.com/moul/depviz-test/issues/2"]} {"id":"https://github.com/moul/depviz-test/issues/5","created_at":"2019-08-06T15:37:21Z","updated_at":"2019-10-29T08:59:38Z","local_id":"moul/depviz-test#5","kind":1,"title":"I'm an issue that depends on multiple issues","description":"Depends on #4 \r\nDepends on #3 ","driver":1,"completed_at":"2019-10-29T08:59:38Z","state":2,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","is_depending_on":["https://github.com/moul/depviz-test/issues/3","https://github.com/moul/depviz-test/issues/4"]} -{"id":"https://github.com/moul/depviz-test/issues/5","created_at":"2019-08-06T15:37:21Z","updated_at":"2019-10-29T08:59:38Z","local_id":"moul/depviz-test#5","kind":1,"title":"I'm an issue that depends on multiple issues","description":"Depends on #4 \r\nDepends on #3 ","driver":1,"completed_at":"2019-10-29T08:59:38Z","state":2,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","is_depending_on":["https://github.com/moul/depviz-test/issues/3","https://github.com/moul/depviz-test/issues/4"]} -{"id":"https://github.com/moul/depviz-test/issues/5","created_at":"2019-08-06T15:37:21Z","updated_at":"2019-10-29T08:59:38Z","local_id":"moul/depviz-test#5","kind":1,"title":"I'm an issue that depends on multiple issues","description":"Depends on #4 \r\nDepends on #3 ","driver":1,"completed_at":"2019-10-29T08:59:38Z","state":2,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","is_depending_on":["https://github.com/moul/depviz-test/issues/3","https://github.com/moul/depviz-test/issues/4"]} {"id":"https://github.com/moul/depviz-test/issues/6","created_at":"2019-08-06T15:37:44Z","updated_at":"2019-08-06T15:37:44Z","local_id":"moul/depviz-test#6","kind":1,"title":"I'm an issue that depends on the same issue at different levels","description":"Depends on #2 \r\nDepends on #3 \r\nDepends on #5 ","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","is_depending_on":["https://github.com/moul/depviz-test/issues/2","https://github.com/moul/depviz-test/issues/3","https://github.com/moul/depviz-test/issues/5"]} -{"id":"https://github.com/moul/depviz-test/issues/6","created_at":"2019-08-06T15:37:44Z","updated_at":"2019-08-06T15:37:44Z","local_id":"moul/depviz-test#6","kind":1,"title":"I'm an issue that depends on the same issue at different levels","description":"Depends on #2 \r\nDepends on #3 \r\nDepends on #5 ","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","is_depending_on":["https://github.com/moul/depviz-test/issues/2","https://github.com/moul/depviz-test/issues/3","https://github.com/moul/depviz-test/issues/5"]} -{"id":"https://github.com/moul/depviz-test/issues/6","created_at":"2019-08-06T15:37:44Z","updated_at":"2019-08-06T15:37:44Z","local_id":"moul/depviz-test#6","kind":1,"title":"I'm an issue that depends on the same issue at different levels","description":"Depends on #2 \r\nDepends on #3 \r\nDepends on #5 ","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","is_depending_on":["https://github.com/moul/depviz-test/issues/2","https://github.com/moul/depviz-test/issues/3","https://github.com/moul/depviz-test/issues/5"]} -{"id":"https://github.com/moul/depviz-test/issues/6","created_at":"2019-08-06T15:37:44Z","updated_at":"2019-08-06T15:37:44Z","local_id":"moul/depviz-test#6","kind":1,"title":"I'm an issue that depends on the same issue at different levels","description":"Depends on #2 \r\nDepends on #3 \r\nDepends on #5 ","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","is_depending_on":["https://github.com/moul/depviz-test/issues/2","https://github.com/moul/depviz-test/issues/3","https://github.com/moul/depviz-test/issues/5"]} -{"id":"https://github.com/moul/depviz-test/issues/7","created_at":"2019-08-06T15:38:05Z","updated_at":"2019-11-19T17:30:28Z","local_id":"moul/depviz-test#7","kind":1,"title":"I'm an issue that depends on an issue that itself depends on multiple ones","description":"Depends on #6 ","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","has_milestone":"https://github.com/moul/depviz-test/milestone/1","is_depending_on":["https://github.com/moul/depviz-test/issues/6"]} {"id":"https://github.com/moul/depviz-test/issues/7","created_at":"2019-08-06T15:38:05Z","updated_at":"2019-11-19T17:30:28Z","local_id":"moul/depviz-test#7","kind":1,"title":"I'm an issue that depends on an issue that itself depends on multiple ones","description":"Depends on #6 ","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","has_milestone":"https://github.com/moul/depviz-test/milestone/1","is_depending_on":["https://github.com/moul/depviz-test/issues/6"]} -{"id":"https://github.com/moul/depviz-test/issues/7","created_at":"2019-08-06T15:38:05Z","updated_at":"2019-11-19T17:30:28Z","local_id":"moul/depviz-test#7","kind":1,"title":"I'm an issue that depends on an issue that itself depends on multiple ones","description":"Depends on #6 ","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","has_milestone":"https://github.com/moul/depviz-test/milestone/1","is_depending_on":["https://github.com/moul/depviz-test/issues/6"]} -{"id":"https://github.com/moul/depviz-test/issues/8","created_at":"2019-08-06T15:40:58Z","updated_at":"2019-11-19T17:30:28Z","local_id":"moul/depviz-test#8","kind":1,"title":"An issue in an isolated group of 2","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","has_milestone":"https://github.com/moul/depviz-test/milestone/1"} {"id":"https://github.com/moul/depviz-test/issues/8","created_at":"2019-08-06T15:40:58Z","updated_at":"2019-11-19T17:30:28Z","local_id":"moul/depviz-test#8","kind":1,"title":"An issue in an isolated group of 2","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","has_milestone":"https://github.com/moul/depviz-test/milestone/1"} {"id":"https://github.com/moul/depviz-test/issues/9","created_at":"2019-08-06T15:41:14Z","updated_at":"2019-11-19T17:30:28Z","local_id":"moul/depviz-test#9","kind":1,"title":"Another issue in an isolated group of 2","description":"Depends on #8","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","has_milestone":"https://github.com/moul/depviz-test/milestone/1","is_depending_on":["https://github.com/moul/depviz-test/issues/8"]} -{"id":"https://github.com/moul/depviz-test/issues/9","created_at":"2019-08-06T15:41:14Z","updated_at":"2019-11-19T17:30:28Z","local_id":"moul/depviz-test#9","kind":1,"title":"Another issue in an isolated group of 2","description":"Depends on #8","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","has_milestone":"https://github.com/moul/depviz-test/milestone/1","is_depending_on":["https://github.com/moul/depviz-test/issues/8"]} -{"id":"https://github.com/moul/depviz-test/milestone/1","created_at":"2019-08-06T15:36:28Z","updated_at":"2019-11-19T17:30:28Z","local_id":"moul/depviz-test/milestone/1","kind":3,"title":"lorem-ipsum-milestone","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test"} {"id":"https://github.com/moul/depviz-test/milestone/1","created_at":"2019-08-06T15:36:28Z","updated_at":"2019-11-19T17:30:28Z","local_id":"moul/depviz-test/milestone/1","kind":3,"title":"lorem-ipsum-milestone","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test"} diff --git a/internal/dvstore/testdata/golden.all-depviz-test_moul-depviz-test.json b/internal/dvstore/testdata/golden.all-depviz-test_moul-depviz-test.json index 0c4b757f1..54b0d0e54 100644 --- a/internal/dvstore/testdata/golden.all-depviz-test_moul-depviz-test.json +++ b/internal/dvstore/testdata/golden.all-depviz-test_moul-depviz-test.json @@ -3,29 +3,13 @@ {"id":"https://github.com/moul-bot/depviz-test/issues/7","created_at":"2019-08-08T18:56:14Z","updated_at":"2019-09-03T09:07:03Z","local_id":"moul-bot/depviz-test#7","kind":1,"title":"Issue 7","description":"Depends on #4\r\nDepends on https://github.com/moul/depviz-test/milestone/1","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/4","https://github.com/moul/depviz-test/milestone/1"]} {"id":"https://github.com/moul/depviz-test/issues/1","created_at":"2019-08-06T15:35:49Z","updated_at":"2019-08-06T15:35:49Z","local_id":"moul/depviz-test#1","kind":1,"title":"I'm a standard issue","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test"} {"id":"https://github.com/moul/depviz-test/issues/10","created_at":"2019-09-03T08:51:47Z","updated_at":"2019-12-03T17:35:06Z","local_id":"moul/depviz-test#10","kind":1,"title":"New test","description":"Depends on #4 \r\nDepends on #6 \r\nBlocks #7 \r\nDepends on https://github.com/moul-bot/depviz-test/issues/5","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/5","https://github.com/moul/depviz-test/issues/4","https://github.com/moul/depviz-test/issues/6"],"is_blocking":["https://github.com/moul/depviz-test/issues/7"]} -{"id":"https://github.com/moul/depviz-test/issues/10","created_at":"2019-09-03T08:51:47Z","updated_at":"2019-12-03T17:35:06Z","local_id":"moul/depviz-test#10","kind":1,"title":"New test","description":"Depends on #4 \r\nDepends on #6 \r\nBlocks #7 \r\nDepends on https://github.com/moul-bot/depviz-test/issues/5","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/5","https://github.com/moul/depviz-test/issues/4","https://github.com/moul/depviz-test/issues/6"],"is_blocking":["https://github.com/moul/depviz-test/issues/7"]} -{"id":"https://github.com/moul/depviz-test/issues/10","created_at":"2019-09-03T08:51:47Z","updated_at":"2019-12-03T17:35:06Z","local_id":"moul/depviz-test#10","kind":1,"title":"New test","description":"Depends on #4 \r\nDepends on #6 \r\nBlocks #7 \r\nDepends on https://github.com/moul-bot/depviz-test/issues/5","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/5","https://github.com/moul/depviz-test/issues/4","https://github.com/moul/depviz-test/issues/6"],"is_blocking":["https://github.com/moul/depviz-test/issues/7"]} -{"id":"https://github.com/moul/depviz-test/issues/10","created_at":"2019-09-03T08:51:47Z","updated_at":"2019-12-03T17:35:06Z","local_id":"moul/depviz-test#10","kind":1,"title":"New test","description":"Depends on #4 \r\nDepends on #6 \r\nBlocks #7 \r\nDepends on https://github.com/moul-bot/depviz-test/issues/5","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/5","https://github.com/moul/depviz-test/issues/4","https://github.com/moul/depviz-test/issues/6"],"is_blocking":["https://github.com/moul/depviz-test/issues/7"]} {"id":"https://github.com/moul/depviz-test/issues/11","created_at":"2019-11-04T11:59:52Z","updated_at":"2019-11-04T12:05:12Z","local_id":"moul/depviz-test#11","kind":1,"title":"test short names","description":"https://github.com/moul/depviz-test/issues/2\r\nhttps://github.com/moul/depviz-test/issues/10\r\nhttps://github.com/moul/depviz-test-two-issues/pull/4\r\nhttps://github.com/moul/depviz-test-two-issues/pull/3\r\nhttps://github.com/moul/depviz-test-two-issues/projects/1#card-28544696\r\nhttps://github.com/moul/depviz-test-two-issues/milestone/1\r\nhttps://github.com/moul\r\nhttps://github.com/berty","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test"} {"id":"https://github.com/moul/depviz-test/issues/2","created_at":"2019-08-06T15:36:09Z","updated_at":"2019-10-29T08:59:41Z","local_id":"moul/depviz-test#2","kind":1,"title":"I'm an issue with a milestone, some projects, and some labels","driver":1,"completed_at":"2019-10-29T08:59:41Z","state":2,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","has_milestone":"https://github.com/moul/depviz-test/milestone/1","has_label":["https://github.com/moul/depviz-test/labels/bug","https://github.com/moul/depviz-test/labels/documentation","https://github.com/moul/depviz-test/labels/enhancement"]} -{"id":"https://github.com/moul/depviz-test/issues/2","created_at":"2019-08-06T15:36:09Z","updated_at":"2019-10-29T08:59:41Z","local_id":"moul/depviz-test#2","kind":1,"title":"I'm an issue with a milestone, some projects, and some labels","driver":1,"completed_at":"2019-10-29T08:59:41Z","state":2,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","has_milestone":"https://github.com/moul/depviz-test/milestone/1","has_label":["https://github.com/moul/depviz-test/labels/bug","https://github.com/moul/depviz-test/labels/documentation","https://github.com/moul/depviz-test/labels/enhancement"]} -{"id":"https://github.com/moul/depviz-test/issues/2","created_at":"2019-08-06T15:36:09Z","updated_at":"2019-10-29T08:59:41Z","local_id":"moul/depviz-test#2","kind":1,"title":"I'm an issue with a milestone, some projects, and some labels","driver":1,"completed_at":"2019-10-29T08:59:41Z","state":2,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","has_milestone":"https://github.com/moul/depviz-test/milestone/1","has_label":["https://github.com/moul/depviz-test/labels/bug","https://github.com/moul/depviz-test/labels/documentation","https://github.com/moul/depviz-test/labels/enhancement"]} -{"id":"https://github.com/moul/depviz-test/issues/3","created_at":"2019-08-06T15:36:45Z","updated_at":"2019-08-06T15:36:45Z","local_id":"moul/depviz-test#3","kind":1,"title":"I'm an issue that depends on another","description":"Depends on #2 ","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","is_depending_on":["https://github.com/moul/depviz-test/issues/2"]} {"id":"https://github.com/moul/depviz-test/issues/3","created_at":"2019-08-06T15:36:45Z","updated_at":"2019-08-06T15:36:45Z","local_id":"moul/depviz-test#3","kind":1,"title":"I'm an issue that depends on another","description":"Depends on #2 ","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","is_depending_on":["https://github.com/moul/depviz-test/issues/2"]} {"id":"https://github.com/moul/depviz-test/issues/4","created_at":"2019-08-06T15:36:58Z","updated_at":"2019-08-06T15:36:58Z","local_id":"moul/depviz-test#4","kind":1,"title":"I'm an issue that also depends on another","description":"Depends on #2","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","is_depending_on":["https://github.com/moul/depviz-test/issues/2"]} -{"id":"https://github.com/moul/depviz-test/issues/4","created_at":"2019-08-06T15:36:58Z","updated_at":"2019-08-06T15:36:58Z","local_id":"moul/depviz-test#4","kind":1,"title":"I'm an issue that also depends on another","description":"Depends on #2","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","is_depending_on":["https://github.com/moul/depviz-test/issues/2"]} -{"id":"https://github.com/moul/depviz-test/issues/5","created_at":"2019-08-06T15:37:21Z","updated_at":"2019-10-29T08:59:38Z","local_id":"moul/depviz-test#5","kind":1,"title":"I'm an issue that depends on multiple issues","description":"Depends on #4 \r\nDepends on #3 ","driver":1,"completed_at":"2019-10-29T08:59:38Z","state":2,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","is_depending_on":["https://github.com/moul/depviz-test/issues/3","https://github.com/moul/depviz-test/issues/4"]} {"id":"https://github.com/moul/depviz-test/issues/5","created_at":"2019-08-06T15:37:21Z","updated_at":"2019-10-29T08:59:38Z","local_id":"moul/depviz-test#5","kind":1,"title":"I'm an issue that depends on multiple issues","description":"Depends on #4 \r\nDepends on #3 ","driver":1,"completed_at":"2019-10-29T08:59:38Z","state":2,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","is_depending_on":["https://github.com/moul/depviz-test/issues/3","https://github.com/moul/depviz-test/issues/4"]} -{"id":"https://github.com/moul/depviz-test/issues/5","created_at":"2019-08-06T15:37:21Z","updated_at":"2019-10-29T08:59:38Z","local_id":"moul/depviz-test#5","kind":1,"title":"I'm an issue that depends on multiple issues","description":"Depends on #4 \r\nDepends on #3 ","driver":1,"completed_at":"2019-10-29T08:59:38Z","state":2,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","is_depending_on":["https://github.com/moul/depviz-test/issues/3","https://github.com/moul/depviz-test/issues/4"]} -{"id":"https://github.com/moul/depviz-test/issues/6","created_at":"2019-08-06T15:37:44Z","updated_at":"2019-08-06T15:37:44Z","local_id":"moul/depviz-test#6","kind":1,"title":"I'm an issue that depends on the same issue at different levels","description":"Depends on #2 \r\nDepends on #3 \r\nDepends on #5 ","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","is_depending_on":["https://github.com/moul/depviz-test/issues/2","https://github.com/moul/depviz-test/issues/3","https://github.com/moul/depviz-test/issues/5"]} -{"id":"https://github.com/moul/depviz-test/issues/6","created_at":"2019-08-06T15:37:44Z","updated_at":"2019-08-06T15:37:44Z","local_id":"moul/depviz-test#6","kind":1,"title":"I'm an issue that depends on the same issue at different levels","description":"Depends on #2 \r\nDepends on #3 \r\nDepends on #5 ","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","is_depending_on":["https://github.com/moul/depviz-test/issues/2","https://github.com/moul/depviz-test/issues/3","https://github.com/moul/depviz-test/issues/5"]} -{"id":"https://github.com/moul/depviz-test/issues/6","created_at":"2019-08-06T15:37:44Z","updated_at":"2019-08-06T15:37:44Z","local_id":"moul/depviz-test#6","kind":1,"title":"I'm an issue that depends on the same issue at different levels","description":"Depends on #2 \r\nDepends on #3 \r\nDepends on #5 ","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","is_depending_on":["https://github.com/moul/depviz-test/issues/2","https://github.com/moul/depviz-test/issues/3","https://github.com/moul/depviz-test/issues/5"]} {"id":"https://github.com/moul/depviz-test/issues/6","created_at":"2019-08-06T15:37:44Z","updated_at":"2019-08-06T15:37:44Z","local_id":"moul/depviz-test#6","kind":1,"title":"I'm an issue that depends on the same issue at different levels","description":"Depends on #2 \r\nDepends on #3 \r\nDepends on #5 ","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","is_depending_on":["https://github.com/moul/depviz-test/issues/2","https://github.com/moul/depviz-test/issues/3","https://github.com/moul/depviz-test/issues/5"]} {"id":"https://github.com/moul/depviz-test/issues/7","created_at":"2019-08-06T15:38:05Z","updated_at":"2019-11-19T17:30:28Z","local_id":"moul/depviz-test#7","kind":1,"title":"I'm an issue that depends on an issue that itself depends on multiple ones","description":"Depends on #6 ","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","has_milestone":"https://github.com/moul/depviz-test/milestone/1","is_depending_on":["https://github.com/moul/depviz-test/issues/6"]} -{"id":"https://github.com/moul/depviz-test/issues/7","created_at":"2019-08-06T15:38:05Z","updated_at":"2019-11-19T17:30:28Z","local_id":"moul/depviz-test#7","kind":1,"title":"I'm an issue that depends on an issue that itself depends on multiple ones","description":"Depends on #6 ","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","has_milestone":"https://github.com/moul/depviz-test/milestone/1","is_depending_on":["https://github.com/moul/depviz-test/issues/6"]} -{"id":"https://github.com/moul/depviz-test/issues/7","created_at":"2019-08-06T15:38:05Z","updated_at":"2019-11-19T17:30:28Z","local_id":"moul/depviz-test#7","kind":1,"title":"I'm an issue that depends on an issue that itself depends on multiple ones","description":"Depends on #6 ","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","has_milestone":"https://github.com/moul/depviz-test/milestone/1","is_depending_on":["https://github.com/moul/depviz-test/issues/6"]} {"id":"https://github.com/moul/depviz-test/issues/8","created_at":"2019-08-06T15:40:58Z","updated_at":"2019-11-19T17:30:28Z","local_id":"moul/depviz-test#8","kind":1,"title":"An issue in an isolated group of 2","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","has_milestone":"https://github.com/moul/depviz-test/milestone/1"} -{"id":"https://github.com/moul/depviz-test/issues/8","created_at":"2019-08-06T15:40:58Z","updated_at":"2019-11-19T17:30:28Z","local_id":"moul/depviz-test#8","kind":1,"title":"An issue in an isolated group of 2","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","has_milestone":"https://github.com/moul/depviz-test/milestone/1"} -{"id":"https://github.com/moul/depviz-test/issues/9","created_at":"2019-08-06T15:41:14Z","updated_at":"2019-11-19T17:30:28Z","local_id":"moul/depviz-test#9","kind":1,"title":"Another issue in an isolated group of 2","description":"Depends on #8","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","has_milestone":"https://github.com/moul/depviz-test/milestone/1","is_depending_on":["https://github.com/moul/depviz-test/issues/8"]} {"id":"https://github.com/moul/depviz-test/issues/9","created_at":"2019-08-06T15:41:14Z","updated_at":"2019-11-19T17:30:28Z","local_id":"moul/depviz-test#9","kind":1,"title":"Another issue in an isolated group of 2","description":"Depends on #8","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","has_milestone":"https://github.com/moul/depviz-test/milestone/1","is_depending_on":["https://github.com/moul/depviz-test/issues/8"]} {"id":"https://github.com/moul/depviz-test/milestone/1","created_at":"2019-08-06T15:36:28Z","updated_at":"2019-11-19T17:30:28Z","local_id":"moul/depviz-test/milestone/1","kind":3,"title":"lorem-ipsum-milestone","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test"} diff --git a/internal/dvstore/testdata/golden.all-depviz-test_moulbot-depviz-test.json b/internal/dvstore/testdata/golden.all-depviz-test_moulbot-depviz-test.json index 320d4ed8c..00ab2d4ed 100644 --- a/internal/dvstore/testdata/golden.all-depviz-test_moulbot-depviz-test.json +++ b/internal/dvstore/testdata/golden.all-depviz-test_moulbot-depviz-test.json @@ -1,22 +1,10 @@ {"Targets":[{"Project":{}}],"TheWorld":false,"WithClosed":false,"WithoutIsolated":false,"WithoutPRs":false,"WithoutExternalDeps":false} {"id":"https://github.com/moul-bot/depviz-test/issues/1","created_at":"2019-08-08T18:55:07Z","updated_at":"2019-08-08T18:55:07Z","local_id":"moul-bot/depviz-test#1","kind":1,"title":"Issue 1","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test"} -{"id":"https://github.com/moul-bot/depviz-test/issues/1","created_at":"2019-08-08T18:55:07Z","updated_at":"2019-08-08T18:55:07Z","local_id":"moul-bot/depviz-test#1","kind":1,"title":"Issue 1","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test"} -{"id":"https://github.com/moul-bot/depviz-test/issues/2","created_at":"2019-08-08T18:55:13Z","updated_at":"2019-08-08T18:55:13Z","local_id":"moul-bot/depviz-test#2","kind":1,"title":"Issue 2","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test"} {"id":"https://github.com/moul-bot/depviz-test/issues/2","created_at":"2019-08-08T18:55:13Z","updated_at":"2019-08-08T18:55:13Z","local_id":"moul-bot/depviz-test#2","kind":1,"title":"Issue 2","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test"} {"id":"https://github.com/moul-bot/depviz-test/issues/3","created_at":"2019-08-08T18:55:19Z","updated_at":"2019-08-08T18:55:19Z","local_id":"moul-bot/depviz-test#3","kind":1,"title":"Issue 3","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test"} -{"id":"https://github.com/moul-bot/depviz-test/issues/3","created_at":"2019-08-08T18:55:19Z","updated_at":"2019-08-08T18:55:19Z","local_id":"moul-bot/depviz-test#3","kind":1,"title":"Issue 3","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test"} -{"id":"https://github.com/moul-bot/depviz-test/issues/4","created_at":"2019-08-08T18:55:34Z","updated_at":"2019-08-08T18:55:34Z","local_id":"moul-bot/depviz-test#4","kind":1,"title":"Issue #4","description":"Depends on #1 \r\nDepends on #2 \r\nDepends on #3","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/1","https://github.com/moul-bot/depviz-test/issues/2","https://github.com/moul-bot/depviz-test/issues/3"]} -{"id":"https://github.com/moul-bot/depviz-test/issues/4","created_at":"2019-08-08T18:55:34Z","updated_at":"2019-08-08T18:55:34Z","local_id":"moul-bot/depviz-test#4","kind":1,"title":"Issue #4","description":"Depends on #1 \r\nDepends on #2 \r\nDepends on #3","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/1","https://github.com/moul-bot/depviz-test/issues/2","https://github.com/moul-bot/depviz-test/issues/3"]} -{"id":"https://github.com/moul-bot/depviz-test/issues/4","created_at":"2019-08-08T18:55:34Z","updated_at":"2019-08-08T18:55:34Z","local_id":"moul-bot/depviz-test#4","kind":1,"title":"Issue #4","description":"Depends on #1 \r\nDepends on #2 \r\nDepends on #3","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/1","https://github.com/moul-bot/depviz-test/issues/2","https://github.com/moul-bot/depviz-test/issues/3"]} -{"id":"https://github.com/moul-bot/depviz-test/issues/4","created_at":"2019-08-08T18:55:34Z","updated_at":"2019-08-08T18:55:34Z","local_id":"moul-bot/depviz-test#4","kind":1,"title":"Issue #4","description":"Depends on #1 \r\nDepends on #2 \r\nDepends on #3","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/1","https://github.com/moul-bot/depviz-test/issues/2","https://github.com/moul-bot/depviz-test/issues/3"]} -{"id":"https://github.com/moul-bot/depviz-test/issues/4","created_at":"2019-08-08T18:55:34Z","updated_at":"2019-08-08T18:55:34Z","local_id":"moul-bot/depviz-test#4","kind":1,"title":"Issue #4","description":"Depends on #1 \r\nDepends on #2 \r\nDepends on #3","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/1","https://github.com/moul-bot/depviz-test/issues/2","https://github.com/moul-bot/depviz-test/issues/3"]} -{"id":"https://github.com/moul-bot/depviz-test/issues/4","created_at":"2019-08-08T18:55:34Z","updated_at":"2019-08-08T18:55:34Z","local_id":"moul-bot/depviz-test#4","kind":1,"title":"Issue #4","description":"Depends on #1 \r\nDepends on #2 \r\nDepends on #3","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/1","https://github.com/moul-bot/depviz-test/issues/2","https://github.com/moul-bot/depviz-test/issues/3"]} {"id":"https://github.com/moul-bot/depviz-test/issues/4","created_at":"2019-08-08T18:55:34Z","updated_at":"2019-08-08T18:55:34Z","local_id":"moul-bot/depviz-test#4","kind":1,"title":"Issue #4","description":"Depends on #1 \r\nDepends on #2 \r\nDepends on #3","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/1","https://github.com/moul-bot/depviz-test/issues/2","https://github.com/moul-bot/depviz-test/issues/3"]} {"id":"https://github.com/moul-bot/depviz-test/issues/5","created_at":"2019-08-08T18:55:47Z","updated_at":"2019-08-08T18:55:47Z","local_id":"moul-bot/depviz-test#5","kind":1,"title":"Issue 5","description":"Depends on #4","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/4"]} -{"id":"https://github.com/moul-bot/depviz-test/issues/5","created_at":"2019-08-08T18:55:47Z","updated_at":"2019-08-08T18:55:47Z","local_id":"moul-bot/depviz-test#5","kind":1,"title":"Issue 5","description":"Depends on #4","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/4"]} -{"id":"https://github.com/moul-bot/depviz-test/issues/6","created_at":"2019-08-08T18:56:04Z","updated_at":"2019-08-08T18:56:04Z","local_id":"moul-bot/depviz-test#6","kind":1,"title":"Issue 6","description":"Depends on #4","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/4"]} {"id":"https://github.com/moul-bot/depviz-test/issues/6","created_at":"2019-08-08T18:56:04Z","updated_at":"2019-08-08T18:56:04Z","local_id":"moul-bot/depviz-test#6","kind":1,"title":"Issue 6","description":"Depends on #4","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/4"]} {"id":"https://github.com/moul-bot/depviz-test/issues/7","created_at":"2019-08-08T18:56:14Z","updated_at":"2019-09-03T09:07:03Z","local_id":"moul-bot/depviz-test#7","kind":1,"title":"Issue 7","description":"Depends on #4\r\nDepends on https://github.com/moul/depviz-test/milestone/1","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/4","https://github.com/moul/depviz-test/milestone/1"]} -{"id":"https://github.com/moul-bot/depviz-test/issues/7","created_at":"2019-08-08T18:56:14Z","updated_at":"2019-09-03T09:07:03Z","local_id":"moul-bot/depviz-test#7","kind":1,"title":"Issue 7","description":"Depends on #4\r\nDepends on https://github.com/moul/depviz-test/milestone/1","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/4","https://github.com/moul/depviz-test/milestone/1"]} {"id":"https://github.com/moul/depviz-test/issues/10","created_at":"2019-09-03T08:51:47Z","updated_at":"2019-12-03T17:35:06Z","local_id":"moul/depviz-test#10","kind":1,"title":"New test","description":"Depends on #4 \r\nDepends on #6 \r\nBlocks #7 \r\nDepends on https://github.com/moul-bot/depviz-test/issues/5","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/5","https://github.com/moul/depviz-test/issues/4","https://github.com/moul/depviz-test/issues/6"],"is_blocking":["https://github.com/moul/depviz-test/issues/7"]} {"id":"https://github.com/moul/depviz-test/milestone/1","created_at":"2019-08-06T15:36:28Z","updated_at":"2019-11-19T17:30:28Z","local_id":"moul/depviz-test/milestone/1","kind":3,"title":"lorem-ipsum-milestone","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test"} diff --git a/internal/dvstore/testdata/golden.all-depviz-test_theworld-with-closed.json b/internal/dvstore/testdata/golden.all-depviz-test_theworld-with-closed.json index d179c91a2..ec5c72422 100644 --- a/internal/dvstore/testdata/golden.all-depviz-test_theworld-with-closed.json +++ b/internal/dvstore/testdata/golden.all-depviz-test_theworld-with-closed.json @@ -1,60 +1,20 @@ {"Targets":null,"TheWorld":true,"WithClosed":true,"WithoutIsolated":false,"WithoutPRs":false,"WithoutExternalDeps":false} {"id":"https://github.com/moul-bot/depviz-test/issues/1","created_at":"2019-08-08T18:55:07Z","updated_at":"2019-08-08T18:55:07Z","local_id":"moul-bot/depviz-test#1","kind":1,"title":"Issue 1","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test"} -{"id":"https://github.com/moul-bot/depviz-test/issues/1","created_at":"2019-08-08T18:55:07Z","updated_at":"2019-08-08T18:55:07Z","local_id":"moul-bot/depviz-test#1","kind":1,"title":"Issue 1","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test"} -{"id":"https://github.com/moul-bot/depviz-test/issues/2","created_at":"2019-08-08T18:55:13Z","updated_at":"2019-08-08T18:55:13Z","local_id":"moul-bot/depviz-test#2","kind":1,"title":"Issue 2","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test"} {"id":"https://github.com/moul-bot/depviz-test/issues/2","created_at":"2019-08-08T18:55:13Z","updated_at":"2019-08-08T18:55:13Z","local_id":"moul-bot/depviz-test#2","kind":1,"title":"Issue 2","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test"} {"id":"https://github.com/moul-bot/depviz-test/issues/3","created_at":"2019-08-08T18:55:19Z","updated_at":"2019-08-08T18:55:19Z","local_id":"moul-bot/depviz-test#3","kind":1,"title":"Issue 3","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test"} -{"id":"https://github.com/moul-bot/depviz-test/issues/3","created_at":"2019-08-08T18:55:19Z","updated_at":"2019-08-08T18:55:19Z","local_id":"moul-bot/depviz-test#3","kind":1,"title":"Issue 3","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test"} -{"id":"https://github.com/moul-bot/depviz-test/issues/4","created_at":"2019-08-08T18:55:34Z","updated_at":"2019-08-08T18:55:34Z","local_id":"moul-bot/depviz-test#4","kind":1,"title":"Issue #4","description":"Depends on #1 \r\nDepends on #2 \r\nDepends on #3","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/1","https://github.com/moul-bot/depviz-test/issues/2","https://github.com/moul-bot/depviz-test/issues/3"]} -{"id":"https://github.com/moul-bot/depviz-test/issues/4","created_at":"2019-08-08T18:55:34Z","updated_at":"2019-08-08T18:55:34Z","local_id":"moul-bot/depviz-test#4","kind":1,"title":"Issue #4","description":"Depends on #1 \r\nDepends on #2 \r\nDepends on #3","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/1","https://github.com/moul-bot/depviz-test/issues/2","https://github.com/moul-bot/depviz-test/issues/3"]} {"id":"https://github.com/moul-bot/depviz-test/issues/4","created_at":"2019-08-08T18:55:34Z","updated_at":"2019-08-08T18:55:34Z","local_id":"moul-bot/depviz-test#4","kind":1,"title":"Issue #4","description":"Depends on #1 \r\nDepends on #2 \r\nDepends on #3","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/1","https://github.com/moul-bot/depviz-test/issues/2","https://github.com/moul-bot/depviz-test/issues/3"]} -{"id":"https://github.com/moul-bot/depviz-test/issues/4","created_at":"2019-08-08T18:55:34Z","updated_at":"2019-08-08T18:55:34Z","local_id":"moul-bot/depviz-test#4","kind":1,"title":"Issue #4","description":"Depends on #1 \r\nDepends on #2 \r\nDepends on #3","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/1","https://github.com/moul-bot/depviz-test/issues/2","https://github.com/moul-bot/depviz-test/issues/3"]} -{"id":"https://github.com/moul-bot/depviz-test/issues/4","created_at":"2019-08-08T18:55:34Z","updated_at":"2019-08-08T18:55:34Z","local_id":"moul-bot/depviz-test#4","kind":1,"title":"Issue #4","description":"Depends on #1 \r\nDepends on #2 \r\nDepends on #3","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/1","https://github.com/moul-bot/depviz-test/issues/2","https://github.com/moul-bot/depviz-test/issues/3"]} -{"id":"https://github.com/moul-bot/depviz-test/issues/4","created_at":"2019-08-08T18:55:34Z","updated_at":"2019-08-08T18:55:34Z","local_id":"moul-bot/depviz-test#4","kind":1,"title":"Issue #4","description":"Depends on #1 \r\nDepends on #2 \r\nDepends on #3","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/1","https://github.com/moul-bot/depviz-test/issues/2","https://github.com/moul-bot/depviz-test/issues/3"]} -{"id":"https://github.com/moul-bot/depviz-test/issues/4","created_at":"2019-08-08T18:55:34Z","updated_at":"2019-08-08T18:55:34Z","local_id":"moul-bot/depviz-test#4","kind":1,"title":"Issue #4","description":"Depends on #1 \r\nDepends on #2 \r\nDepends on #3","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/1","https://github.com/moul-bot/depviz-test/issues/2","https://github.com/moul-bot/depviz-test/issues/3"]} -{"id":"https://github.com/moul-bot/depviz-test/issues/5","created_at":"2019-08-08T18:55:47Z","updated_at":"2019-08-08T18:55:47Z","local_id":"moul-bot/depviz-test#5","kind":1,"title":"Issue 5","description":"Depends on #4","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/4"]} {"id":"https://github.com/moul-bot/depviz-test/issues/5","created_at":"2019-08-08T18:55:47Z","updated_at":"2019-08-08T18:55:47Z","local_id":"moul-bot/depviz-test#5","kind":1,"title":"Issue 5","description":"Depends on #4","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/4"]} -{"id":"https://github.com/moul-bot/depviz-test/issues/5","created_at":"2019-08-08T18:55:47Z","updated_at":"2019-08-08T18:55:47Z","local_id":"moul-bot/depviz-test#5","kind":1,"title":"Issue 5","description":"Depends on #4","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/4"]} -{"id":"https://github.com/moul-bot/depviz-test/issues/6","created_at":"2019-08-08T18:56:04Z","updated_at":"2019-08-08T18:56:04Z","local_id":"moul-bot/depviz-test#6","kind":1,"title":"Issue 6","description":"Depends on #4","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/4"]} {"id":"https://github.com/moul-bot/depviz-test/issues/6","created_at":"2019-08-08T18:56:04Z","updated_at":"2019-08-08T18:56:04Z","local_id":"moul-bot/depviz-test#6","kind":1,"title":"Issue 6","description":"Depends on #4","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/4"]} {"id":"https://github.com/moul-bot/depviz-test/issues/7","created_at":"2019-08-08T18:56:14Z","updated_at":"2019-09-03T09:07:03Z","local_id":"moul-bot/depviz-test#7","kind":1,"title":"Issue 7","description":"Depends on #4\r\nDepends on https://github.com/moul/depviz-test/milestone/1","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/4","https://github.com/moul/depviz-test/milestone/1"]} -{"id":"https://github.com/moul-bot/depviz-test/issues/7","created_at":"2019-08-08T18:56:14Z","updated_at":"2019-09-03T09:07:03Z","local_id":"moul-bot/depviz-test#7","kind":1,"title":"Issue 7","description":"Depends on #4\r\nDepends on https://github.com/moul/depviz-test/milestone/1","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/4","https://github.com/moul/depviz-test/milestone/1"]} -{"id":"https://github.com/moul-bot/depviz-test/issues/7","created_at":"2019-08-08T18:56:14Z","updated_at":"2019-09-03T09:07:03Z","local_id":"moul-bot/depviz-test#7","kind":1,"title":"Issue 7","description":"Depends on #4\r\nDepends on https://github.com/moul/depviz-test/milestone/1","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/4","https://github.com/moul/depviz-test/milestone/1"]} {"id":"https://github.com/moul/depviz-test/issues/1","created_at":"2019-08-06T15:35:49Z","updated_at":"2019-08-06T15:35:49Z","local_id":"moul/depviz-test#1","kind":1,"title":"I'm a standard issue","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test"} {"id":"https://github.com/moul/depviz-test/issues/10","created_at":"2019-09-03T08:51:47Z","updated_at":"2019-12-03T17:35:06Z","local_id":"moul/depviz-test#10","kind":1,"title":"New test","description":"Depends on #4 \r\nDepends on #6 \r\nBlocks #7 \r\nDepends on https://github.com/moul-bot/depviz-test/issues/5","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/5","https://github.com/moul/depviz-test/issues/4","https://github.com/moul/depviz-test/issues/6"],"is_blocking":["https://github.com/moul/depviz-test/issues/7"]} -{"id":"https://github.com/moul/depviz-test/issues/10","created_at":"2019-09-03T08:51:47Z","updated_at":"2019-12-03T17:35:06Z","local_id":"moul/depviz-test#10","kind":1,"title":"New test","description":"Depends on #4 \r\nDepends on #6 \r\nBlocks #7 \r\nDepends on https://github.com/moul-bot/depviz-test/issues/5","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/5","https://github.com/moul/depviz-test/issues/4","https://github.com/moul/depviz-test/issues/6"],"is_blocking":["https://github.com/moul/depviz-test/issues/7"]} -{"id":"https://github.com/moul/depviz-test/issues/10","created_at":"2019-09-03T08:51:47Z","updated_at":"2019-12-03T17:35:06Z","local_id":"moul/depviz-test#10","kind":1,"title":"New test","description":"Depends on #4 \r\nDepends on #6 \r\nBlocks #7 \r\nDepends on https://github.com/moul-bot/depviz-test/issues/5","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/5","https://github.com/moul/depviz-test/issues/4","https://github.com/moul/depviz-test/issues/6"],"is_blocking":["https://github.com/moul/depviz-test/issues/7"]} -{"id":"https://github.com/moul/depviz-test/issues/10","created_at":"2019-09-03T08:51:47Z","updated_at":"2019-12-03T17:35:06Z","local_id":"moul/depviz-test#10","kind":1,"title":"New test","description":"Depends on #4 \r\nDepends on #6 \r\nBlocks #7 \r\nDepends on https://github.com/moul-bot/depviz-test/issues/5","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/5","https://github.com/moul/depviz-test/issues/4","https://github.com/moul/depviz-test/issues/6"],"is_blocking":["https://github.com/moul/depviz-test/issues/7"]} -{"id":"https://github.com/moul/depviz-test/issues/10","created_at":"2019-09-03T08:51:47Z","updated_at":"2019-12-03T17:35:06Z","local_id":"moul/depviz-test#10","kind":1,"title":"New test","description":"Depends on #4 \r\nDepends on #6 \r\nBlocks #7 \r\nDepends on https://github.com/moul-bot/depviz-test/issues/5","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/5","https://github.com/moul/depviz-test/issues/4","https://github.com/moul/depviz-test/issues/6"],"is_blocking":["https://github.com/moul/depviz-test/issues/7"]} {"id":"https://github.com/moul/depviz-test/issues/11","created_at":"2019-11-04T11:59:52Z","updated_at":"2019-11-04T12:05:12Z","local_id":"moul/depviz-test#11","kind":1,"title":"test short names","description":"https://github.com/moul/depviz-test/issues/2\r\nhttps://github.com/moul/depviz-test/issues/10\r\nhttps://github.com/moul/depviz-test-two-issues/pull/4\r\nhttps://github.com/moul/depviz-test-two-issues/pull/3\r\nhttps://github.com/moul/depviz-test-two-issues/projects/1#card-28544696\r\nhttps://github.com/moul/depviz-test-two-issues/milestone/1\r\nhttps://github.com/moul\r\nhttps://github.com/berty","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test"} {"id":"https://github.com/moul/depviz-test/issues/2","created_at":"2019-08-06T15:36:09Z","updated_at":"2019-10-29T08:59:41Z","local_id":"moul/depviz-test#2","kind":1,"title":"I'm an issue with a milestone, some projects, and some labels","driver":1,"completed_at":"2019-10-29T08:59:41Z","state":2,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","has_milestone":"https://github.com/moul/depviz-test/milestone/1","has_label":["https://github.com/moul/depviz-test/labels/bug","https://github.com/moul/depviz-test/labels/documentation","https://github.com/moul/depviz-test/labels/enhancement"]} -{"id":"https://github.com/moul/depviz-test/issues/2","created_at":"2019-08-06T15:36:09Z","updated_at":"2019-10-29T08:59:41Z","local_id":"moul/depviz-test#2","kind":1,"title":"I'm an issue with a milestone, some projects, and some labels","driver":1,"completed_at":"2019-10-29T08:59:41Z","state":2,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","has_milestone":"https://github.com/moul/depviz-test/milestone/1","has_label":["https://github.com/moul/depviz-test/labels/bug","https://github.com/moul/depviz-test/labels/documentation","https://github.com/moul/depviz-test/labels/enhancement"]} -{"id":"https://github.com/moul/depviz-test/issues/2","created_at":"2019-08-06T15:36:09Z","updated_at":"2019-10-29T08:59:41Z","local_id":"moul/depviz-test#2","kind":1,"title":"I'm an issue with a milestone, some projects, and some labels","driver":1,"completed_at":"2019-10-29T08:59:41Z","state":2,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","has_milestone":"https://github.com/moul/depviz-test/milestone/1","has_label":["https://github.com/moul/depviz-test/labels/bug","https://github.com/moul/depviz-test/labels/documentation","https://github.com/moul/depviz-test/labels/enhancement"]} -{"id":"https://github.com/moul/depviz-test/issues/2","created_at":"2019-08-06T15:36:09Z","updated_at":"2019-10-29T08:59:41Z","local_id":"moul/depviz-test#2","kind":1,"title":"I'm an issue with a milestone, some projects, and some labels","driver":1,"completed_at":"2019-10-29T08:59:41Z","state":2,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","has_milestone":"https://github.com/moul/depviz-test/milestone/1","has_label":["https://github.com/moul/depviz-test/labels/bug","https://github.com/moul/depviz-test/labels/documentation","https://github.com/moul/depviz-test/labels/enhancement"]} -{"id":"https://github.com/moul/depviz-test/issues/3","created_at":"2019-08-06T15:36:45Z","updated_at":"2019-08-06T15:36:45Z","local_id":"moul/depviz-test#3","kind":1,"title":"I'm an issue that depends on another","description":"Depends on #2 ","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","is_depending_on":["https://github.com/moul/depviz-test/issues/2"]} -{"id":"https://github.com/moul/depviz-test/issues/3","created_at":"2019-08-06T15:36:45Z","updated_at":"2019-08-06T15:36:45Z","local_id":"moul/depviz-test#3","kind":1,"title":"I'm an issue that depends on another","description":"Depends on #2 ","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","is_depending_on":["https://github.com/moul/depviz-test/issues/2"]} {"id":"https://github.com/moul/depviz-test/issues/3","created_at":"2019-08-06T15:36:45Z","updated_at":"2019-08-06T15:36:45Z","local_id":"moul/depviz-test#3","kind":1,"title":"I'm an issue that depends on another","description":"Depends on #2 ","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","is_depending_on":["https://github.com/moul/depviz-test/issues/2"]} -{"id":"https://github.com/moul/depviz-test/issues/3","created_at":"2019-08-06T15:36:45Z","updated_at":"2019-08-06T15:36:45Z","local_id":"moul/depviz-test#3","kind":1,"title":"I'm an issue that depends on another","description":"Depends on #2 ","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","is_depending_on":["https://github.com/moul/depviz-test/issues/2"]} -{"id":"https://github.com/moul/depviz-test/issues/4","created_at":"2019-08-06T15:36:58Z","updated_at":"2019-08-06T15:36:58Z","local_id":"moul/depviz-test#4","kind":1,"title":"I'm an issue that also depends on another","description":"Depends on #2","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","is_depending_on":["https://github.com/moul/depviz-test/issues/2"]} {"id":"https://github.com/moul/depviz-test/issues/4","created_at":"2019-08-06T15:36:58Z","updated_at":"2019-08-06T15:36:58Z","local_id":"moul/depviz-test#4","kind":1,"title":"I'm an issue that also depends on another","description":"Depends on #2","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","is_depending_on":["https://github.com/moul/depviz-test/issues/2"]} -{"id":"https://github.com/moul/depviz-test/issues/4","created_at":"2019-08-06T15:36:58Z","updated_at":"2019-08-06T15:36:58Z","local_id":"moul/depviz-test#4","kind":1,"title":"I'm an issue that also depends on another","description":"Depends on #2","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","is_depending_on":["https://github.com/moul/depviz-test/issues/2"]} -{"id":"https://github.com/moul/depviz-test/issues/4","created_at":"2019-08-06T15:36:58Z","updated_at":"2019-08-06T15:36:58Z","local_id":"moul/depviz-test#4","kind":1,"title":"I'm an issue that also depends on another","description":"Depends on #2","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","is_depending_on":["https://github.com/moul/depviz-test/issues/2"]} -{"id":"https://github.com/moul/depviz-test/issues/5","created_at":"2019-08-06T15:37:21Z","updated_at":"2019-10-29T08:59:38Z","local_id":"moul/depviz-test#5","kind":1,"title":"I'm an issue that depends on multiple issues","description":"Depends on #4 \r\nDepends on #3 ","driver":1,"completed_at":"2019-10-29T08:59:38Z","state":2,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","is_depending_on":["https://github.com/moul/depviz-test/issues/3","https://github.com/moul/depviz-test/issues/4"]} -{"id":"https://github.com/moul/depviz-test/issues/5","created_at":"2019-08-06T15:37:21Z","updated_at":"2019-10-29T08:59:38Z","local_id":"moul/depviz-test#5","kind":1,"title":"I'm an issue that depends on multiple issues","description":"Depends on #4 \r\nDepends on #3 ","driver":1,"completed_at":"2019-10-29T08:59:38Z","state":2,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","is_depending_on":["https://github.com/moul/depviz-test/issues/3","https://github.com/moul/depviz-test/issues/4"]} -{"id":"https://github.com/moul/depviz-test/issues/5","created_at":"2019-08-06T15:37:21Z","updated_at":"2019-10-29T08:59:38Z","local_id":"moul/depviz-test#5","kind":1,"title":"I'm an issue that depends on multiple issues","description":"Depends on #4 \r\nDepends on #3 ","driver":1,"completed_at":"2019-10-29T08:59:38Z","state":2,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","is_depending_on":["https://github.com/moul/depviz-test/issues/3","https://github.com/moul/depviz-test/issues/4"]} {"id":"https://github.com/moul/depviz-test/issues/5","created_at":"2019-08-06T15:37:21Z","updated_at":"2019-10-29T08:59:38Z","local_id":"moul/depviz-test#5","kind":1,"title":"I'm an issue that depends on multiple issues","description":"Depends on #4 \r\nDepends on #3 ","driver":1,"completed_at":"2019-10-29T08:59:38Z","state":2,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","is_depending_on":["https://github.com/moul/depviz-test/issues/3","https://github.com/moul/depviz-test/issues/4"]} {"id":"https://github.com/moul/depviz-test/issues/6","created_at":"2019-08-06T15:37:44Z","updated_at":"2019-08-06T15:37:44Z","local_id":"moul/depviz-test#6","kind":1,"title":"I'm an issue that depends on the same issue at different levels","description":"Depends on #2 \r\nDepends on #3 \r\nDepends on #5 ","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","is_depending_on":["https://github.com/moul/depviz-test/issues/2","https://github.com/moul/depviz-test/issues/3","https://github.com/moul/depviz-test/issues/5"]} -{"id":"https://github.com/moul/depviz-test/issues/6","created_at":"2019-08-06T15:37:44Z","updated_at":"2019-08-06T15:37:44Z","local_id":"moul/depviz-test#6","kind":1,"title":"I'm an issue that depends on the same issue at different levels","description":"Depends on #2 \r\nDepends on #3 \r\nDepends on #5 ","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","is_depending_on":["https://github.com/moul/depviz-test/issues/2","https://github.com/moul/depviz-test/issues/3","https://github.com/moul/depviz-test/issues/5"]} -{"id":"https://github.com/moul/depviz-test/issues/6","created_at":"2019-08-06T15:37:44Z","updated_at":"2019-08-06T15:37:44Z","local_id":"moul/depviz-test#6","kind":1,"title":"I'm an issue that depends on the same issue at different levels","description":"Depends on #2 \r\nDepends on #3 \r\nDepends on #5 ","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","is_depending_on":["https://github.com/moul/depviz-test/issues/2","https://github.com/moul/depviz-test/issues/3","https://github.com/moul/depviz-test/issues/5"]} -{"id":"https://github.com/moul/depviz-test/issues/6","created_at":"2019-08-06T15:37:44Z","updated_at":"2019-08-06T15:37:44Z","local_id":"moul/depviz-test#6","kind":1,"title":"I'm an issue that depends on the same issue at different levels","description":"Depends on #2 \r\nDepends on #3 \r\nDepends on #5 ","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","is_depending_on":["https://github.com/moul/depviz-test/issues/2","https://github.com/moul/depviz-test/issues/3","https://github.com/moul/depviz-test/issues/5"]} -{"id":"https://github.com/moul/depviz-test/issues/6","created_at":"2019-08-06T15:37:44Z","updated_at":"2019-08-06T15:37:44Z","local_id":"moul/depviz-test#6","kind":1,"title":"I'm an issue that depends on the same issue at different levels","description":"Depends on #2 \r\nDepends on #3 \r\nDepends on #5 ","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","is_depending_on":["https://github.com/moul/depviz-test/issues/2","https://github.com/moul/depviz-test/issues/3","https://github.com/moul/depviz-test/issues/5"]} -{"id":"https://github.com/moul/depviz-test/issues/6","created_at":"2019-08-06T15:37:44Z","updated_at":"2019-08-06T15:37:44Z","local_id":"moul/depviz-test#6","kind":1,"title":"I'm an issue that depends on the same issue at different levels","description":"Depends on #2 \r\nDepends on #3 \r\nDepends on #5 ","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","is_depending_on":["https://github.com/moul/depviz-test/issues/2","https://github.com/moul/depviz-test/issues/3","https://github.com/moul/depviz-test/issues/5"]} {"id":"https://github.com/moul/depviz-test/issues/7","created_at":"2019-08-06T15:38:05Z","updated_at":"2019-11-19T17:30:28Z","local_id":"moul/depviz-test#7","kind":1,"title":"I'm an issue that depends on an issue that itself depends on multiple ones","description":"Depends on #6 ","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","has_milestone":"https://github.com/moul/depviz-test/milestone/1","is_depending_on":["https://github.com/moul/depviz-test/issues/6"]} -{"id":"https://github.com/moul/depviz-test/issues/7","created_at":"2019-08-06T15:38:05Z","updated_at":"2019-11-19T17:30:28Z","local_id":"moul/depviz-test#7","kind":1,"title":"I'm an issue that depends on an issue that itself depends on multiple ones","description":"Depends on #6 ","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","has_milestone":"https://github.com/moul/depviz-test/milestone/1","is_depending_on":["https://github.com/moul/depviz-test/issues/6"]} -{"id":"https://github.com/moul/depviz-test/issues/7","created_at":"2019-08-06T15:38:05Z","updated_at":"2019-11-19T17:30:28Z","local_id":"moul/depviz-test#7","kind":1,"title":"I'm an issue that depends on an issue that itself depends on multiple ones","description":"Depends on #6 ","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","has_milestone":"https://github.com/moul/depviz-test/milestone/1","is_depending_on":["https://github.com/moul/depviz-test/issues/6"]} -{"id":"https://github.com/moul/depviz-test/issues/8","created_at":"2019-08-06T15:40:58Z","updated_at":"2019-11-19T17:30:28Z","local_id":"moul/depviz-test#8","kind":1,"title":"An issue in an isolated group of 2","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","has_milestone":"https://github.com/moul/depviz-test/milestone/1"} {"id":"https://github.com/moul/depviz-test/issues/8","created_at":"2019-08-06T15:40:58Z","updated_at":"2019-11-19T17:30:28Z","local_id":"moul/depviz-test#8","kind":1,"title":"An issue in an isolated group of 2","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","has_milestone":"https://github.com/moul/depviz-test/milestone/1"} {"id":"https://github.com/moul/depviz-test/issues/9","created_at":"2019-08-06T15:41:14Z","updated_at":"2019-11-19T17:30:28Z","local_id":"moul/depviz-test#9","kind":1,"title":"Another issue in an isolated group of 2","description":"Depends on #8","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","has_milestone":"https://github.com/moul/depviz-test/milestone/1","is_depending_on":["https://github.com/moul/depviz-test/issues/8"]} -{"id":"https://github.com/moul/depviz-test/issues/9","created_at":"2019-08-06T15:41:14Z","updated_at":"2019-11-19T17:30:28Z","local_id":"moul/depviz-test#9","kind":1,"title":"Another issue in an isolated group of 2","description":"Depends on #8","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","has_milestone":"https://github.com/moul/depviz-test/milestone/1","is_depending_on":["https://github.com/moul/depviz-test/issues/8"]} -{"id":"https://github.com/moul/depviz-test/milestone/1","created_at":"2019-08-06T15:36:28Z","updated_at":"2019-11-19T17:30:28Z","local_id":"moul/depviz-test/milestone/1","kind":3,"title":"lorem-ipsum-milestone","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test"} {"id":"https://github.com/moul/depviz-test/milestone/1","created_at":"2019-08-06T15:36:28Z","updated_at":"2019-11-19T17:30:28Z","local_id":"moul/depviz-test/milestone/1","kind":3,"title":"lorem-ipsum-milestone","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test"} diff --git a/internal/dvstore/testdata/golden.all-depviz-test_theworld-without-prs.json b/internal/dvstore/testdata/golden.all-depviz-test_theworld-without-prs.json index 86506126a..d48357c7d 100644 --- a/internal/dvstore/testdata/golden.all-depviz-test_theworld-without-prs.json +++ b/internal/dvstore/testdata/golden.all-depviz-test_theworld-without-prs.json @@ -1,52 +1,20 @@ {"Targets":null,"TheWorld":true,"WithClosed":false,"WithoutIsolated":false,"WithoutPRs":true,"WithoutExternalDeps":false} {"id":"https://github.com/moul-bot/depviz-test/issues/1","created_at":"2019-08-08T18:55:07Z","updated_at":"2019-08-08T18:55:07Z","local_id":"moul-bot/depviz-test#1","kind":1,"title":"Issue 1","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test"} -{"id":"https://github.com/moul-bot/depviz-test/issues/1","created_at":"2019-08-08T18:55:07Z","updated_at":"2019-08-08T18:55:07Z","local_id":"moul-bot/depviz-test#1","kind":1,"title":"Issue 1","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test"} -{"id":"https://github.com/moul-bot/depviz-test/issues/2","created_at":"2019-08-08T18:55:13Z","updated_at":"2019-08-08T18:55:13Z","local_id":"moul-bot/depviz-test#2","kind":1,"title":"Issue 2","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test"} {"id":"https://github.com/moul-bot/depviz-test/issues/2","created_at":"2019-08-08T18:55:13Z","updated_at":"2019-08-08T18:55:13Z","local_id":"moul-bot/depviz-test#2","kind":1,"title":"Issue 2","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test"} {"id":"https://github.com/moul-bot/depviz-test/issues/3","created_at":"2019-08-08T18:55:19Z","updated_at":"2019-08-08T18:55:19Z","local_id":"moul-bot/depviz-test#3","kind":1,"title":"Issue 3","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test"} -{"id":"https://github.com/moul-bot/depviz-test/issues/3","created_at":"2019-08-08T18:55:19Z","updated_at":"2019-08-08T18:55:19Z","local_id":"moul-bot/depviz-test#3","kind":1,"title":"Issue 3","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test"} -{"id":"https://github.com/moul-bot/depviz-test/issues/4","created_at":"2019-08-08T18:55:34Z","updated_at":"2019-08-08T18:55:34Z","local_id":"moul-bot/depviz-test#4","kind":1,"title":"Issue #4","description":"Depends on #1 \r\nDepends on #2 \r\nDepends on #3","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/1","https://github.com/moul-bot/depviz-test/issues/2","https://github.com/moul-bot/depviz-test/issues/3"]} -{"id":"https://github.com/moul-bot/depviz-test/issues/4","created_at":"2019-08-08T18:55:34Z","updated_at":"2019-08-08T18:55:34Z","local_id":"moul-bot/depviz-test#4","kind":1,"title":"Issue #4","description":"Depends on #1 \r\nDepends on #2 \r\nDepends on #3","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/1","https://github.com/moul-bot/depviz-test/issues/2","https://github.com/moul-bot/depviz-test/issues/3"]} -{"id":"https://github.com/moul-bot/depviz-test/issues/4","created_at":"2019-08-08T18:55:34Z","updated_at":"2019-08-08T18:55:34Z","local_id":"moul-bot/depviz-test#4","kind":1,"title":"Issue #4","description":"Depends on #1 \r\nDepends on #2 \r\nDepends on #3","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/1","https://github.com/moul-bot/depviz-test/issues/2","https://github.com/moul-bot/depviz-test/issues/3"]} -{"id":"https://github.com/moul-bot/depviz-test/issues/4","created_at":"2019-08-08T18:55:34Z","updated_at":"2019-08-08T18:55:34Z","local_id":"moul-bot/depviz-test#4","kind":1,"title":"Issue #4","description":"Depends on #1 \r\nDepends on #2 \r\nDepends on #3","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/1","https://github.com/moul-bot/depviz-test/issues/2","https://github.com/moul-bot/depviz-test/issues/3"]} -{"id":"https://github.com/moul-bot/depviz-test/issues/4","created_at":"2019-08-08T18:55:34Z","updated_at":"2019-08-08T18:55:34Z","local_id":"moul-bot/depviz-test#4","kind":1,"title":"Issue #4","description":"Depends on #1 \r\nDepends on #2 \r\nDepends on #3","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/1","https://github.com/moul-bot/depviz-test/issues/2","https://github.com/moul-bot/depviz-test/issues/3"]} {"id":"https://github.com/moul-bot/depviz-test/issues/4","created_at":"2019-08-08T18:55:34Z","updated_at":"2019-08-08T18:55:34Z","local_id":"moul-bot/depviz-test#4","kind":1,"title":"Issue #4","description":"Depends on #1 \r\nDepends on #2 \r\nDepends on #3","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/1","https://github.com/moul-bot/depviz-test/issues/2","https://github.com/moul-bot/depviz-test/issues/3"]} -{"id":"https://github.com/moul-bot/depviz-test/issues/4","created_at":"2019-08-08T18:55:34Z","updated_at":"2019-08-08T18:55:34Z","local_id":"moul-bot/depviz-test#4","kind":1,"title":"Issue #4","description":"Depends on #1 \r\nDepends on #2 \r\nDepends on #3","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/1","https://github.com/moul-bot/depviz-test/issues/2","https://github.com/moul-bot/depviz-test/issues/3"]} -{"id":"https://github.com/moul-bot/depviz-test/issues/5","created_at":"2019-08-08T18:55:47Z","updated_at":"2019-08-08T18:55:47Z","local_id":"moul-bot/depviz-test#5","kind":1,"title":"Issue 5","description":"Depends on #4","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/4"]} {"id":"https://github.com/moul-bot/depviz-test/issues/5","created_at":"2019-08-08T18:55:47Z","updated_at":"2019-08-08T18:55:47Z","local_id":"moul-bot/depviz-test#5","kind":1,"title":"Issue 5","description":"Depends on #4","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/4"]} -{"id":"https://github.com/moul-bot/depviz-test/issues/5","created_at":"2019-08-08T18:55:47Z","updated_at":"2019-08-08T18:55:47Z","local_id":"moul-bot/depviz-test#5","kind":1,"title":"Issue 5","description":"Depends on #4","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/4"]} -{"id":"https://github.com/moul-bot/depviz-test/issues/6","created_at":"2019-08-08T18:56:04Z","updated_at":"2019-08-08T18:56:04Z","local_id":"moul-bot/depviz-test#6","kind":1,"title":"Issue 6","description":"Depends on #4","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/4"]} {"id":"https://github.com/moul-bot/depviz-test/issues/6","created_at":"2019-08-08T18:56:04Z","updated_at":"2019-08-08T18:56:04Z","local_id":"moul-bot/depviz-test#6","kind":1,"title":"Issue 6","description":"Depends on #4","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/4"]} {"id":"https://github.com/moul-bot/depviz-test/issues/7","created_at":"2019-08-08T18:56:14Z","updated_at":"2019-09-03T09:07:03Z","local_id":"moul-bot/depviz-test#7","kind":1,"title":"Issue 7","description":"Depends on #4\r\nDepends on https://github.com/moul/depviz-test/milestone/1","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/4","https://github.com/moul/depviz-test/milestone/1"]} -{"id":"https://github.com/moul-bot/depviz-test/issues/7","created_at":"2019-08-08T18:56:14Z","updated_at":"2019-09-03T09:07:03Z","local_id":"moul-bot/depviz-test#7","kind":1,"title":"Issue 7","description":"Depends on #4\r\nDepends on https://github.com/moul/depviz-test/milestone/1","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/4","https://github.com/moul/depviz-test/milestone/1"]} -{"id":"https://github.com/moul-bot/depviz-test/issues/7","created_at":"2019-08-08T18:56:14Z","updated_at":"2019-09-03T09:07:03Z","local_id":"moul-bot/depviz-test#7","kind":1,"title":"Issue 7","description":"Depends on #4\r\nDepends on https://github.com/moul/depviz-test/milestone/1","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/4","https://github.com/moul/depviz-test/milestone/1"]} {"id":"https://github.com/moul/depviz-test/issues/1","created_at":"2019-08-06T15:35:49Z","updated_at":"2019-08-06T15:35:49Z","local_id":"moul/depviz-test#1","kind":1,"title":"I'm a standard issue","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test"} {"id":"https://github.com/moul/depviz-test/issues/10","created_at":"2019-09-03T08:51:47Z","updated_at":"2019-12-03T17:35:06Z","local_id":"moul/depviz-test#10","kind":1,"title":"New test","description":"Depends on #4 \r\nDepends on #6 \r\nBlocks #7 \r\nDepends on https://github.com/moul-bot/depviz-test/issues/5","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/5","https://github.com/moul/depviz-test/issues/4","https://github.com/moul/depviz-test/issues/6"],"is_blocking":["https://github.com/moul/depviz-test/issues/7"]} -{"id":"https://github.com/moul/depviz-test/issues/10","created_at":"2019-09-03T08:51:47Z","updated_at":"2019-12-03T17:35:06Z","local_id":"moul/depviz-test#10","kind":1,"title":"New test","description":"Depends on #4 \r\nDepends on #6 \r\nBlocks #7 \r\nDepends on https://github.com/moul-bot/depviz-test/issues/5","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/5","https://github.com/moul/depviz-test/issues/4","https://github.com/moul/depviz-test/issues/6"],"is_blocking":["https://github.com/moul/depviz-test/issues/7"]} -{"id":"https://github.com/moul/depviz-test/issues/10","created_at":"2019-09-03T08:51:47Z","updated_at":"2019-12-03T17:35:06Z","local_id":"moul/depviz-test#10","kind":1,"title":"New test","description":"Depends on #4 \r\nDepends on #6 \r\nBlocks #7 \r\nDepends on https://github.com/moul-bot/depviz-test/issues/5","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/5","https://github.com/moul/depviz-test/issues/4","https://github.com/moul/depviz-test/issues/6"],"is_blocking":["https://github.com/moul/depviz-test/issues/7"]} -{"id":"https://github.com/moul/depviz-test/issues/10","created_at":"2019-09-03T08:51:47Z","updated_at":"2019-12-03T17:35:06Z","local_id":"moul/depviz-test#10","kind":1,"title":"New test","description":"Depends on #4 \r\nDepends on #6 \r\nBlocks #7 \r\nDepends on https://github.com/moul-bot/depviz-test/issues/5","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/5","https://github.com/moul/depviz-test/issues/4","https://github.com/moul/depviz-test/issues/6"],"is_blocking":["https://github.com/moul/depviz-test/issues/7"]} -{"id":"https://github.com/moul/depviz-test/issues/10","created_at":"2019-09-03T08:51:47Z","updated_at":"2019-12-03T17:35:06Z","local_id":"moul/depviz-test#10","kind":1,"title":"New test","description":"Depends on #4 \r\nDepends on #6 \r\nBlocks #7 \r\nDepends on https://github.com/moul-bot/depviz-test/issues/5","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/5","https://github.com/moul/depviz-test/issues/4","https://github.com/moul/depviz-test/issues/6"],"is_blocking":["https://github.com/moul/depviz-test/issues/7"]} {"id":"https://github.com/moul/depviz-test/issues/11","created_at":"2019-11-04T11:59:52Z","updated_at":"2019-11-04T12:05:12Z","local_id":"moul/depviz-test#11","kind":1,"title":"test short names","description":"https://github.com/moul/depviz-test/issues/2\r\nhttps://github.com/moul/depviz-test/issues/10\r\nhttps://github.com/moul/depviz-test-two-issues/pull/4\r\nhttps://github.com/moul/depviz-test-two-issues/pull/3\r\nhttps://github.com/moul/depviz-test-two-issues/projects/1#card-28544696\r\nhttps://github.com/moul/depviz-test-two-issues/milestone/1\r\nhttps://github.com/moul\r\nhttps://github.com/berty","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test"} {"id":"https://github.com/moul/depviz-test/issues/2","created_at":"2019-08-06T15:36:09Z","updated_at":"2019-10-29T08:59:41Z","local_id":"moul/depviz-test#2","kind":1,"title":"I'm an issue with a milestone, some projects, and some labels","driver":1,"completed_at":"2019-10-29T08:59:41Z","state":2,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","has_milestone":"https://github.com/moul/depviz-test/milestone/1","has_label":["https://github.com/moul/depviz-test/labels/bug","https://github.com/moul/depviz-test/labels/documentation","https://github.com/moul/depviz-test/labels/enhancement"]} -{"id":"https://github.com/moul/depviz-test/issues/2","created_at":"2019-08-06T15:36:09Z","updated_at":"2019-10-29T08:59:41Z","local_id":"moul/depviz-test#2","kind":1,"title":"I'm an issue with a milestone, some projects, and some labels","driver":1,"completed_at":"2019-10-29T08:59:41Z","state":2,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","has_milestone":"https://github.com/moul/depviz-test/milestone/1","has_label":["https://github.com/moul/depviz-test/labels/bug","https://github.com/moul/depviz-test/labels/documentation","https://github.com/moul/depviz-test/labels/enhancement"]} -{"id":"https://github.com/moul/depviz-test/issues/2","created_at":"2019-08-06T15:36:09Z","updated_at":"2019-10-29T08:59:41Z","local_id":"moul/depviz-test#2","kind":1,"title":"I'm an issue with a milestone, some projects, and some labels","driver":1,"completed_at":"2019-10-29T08:59:41Z","state":2,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","has_milestone":"https://github.com/moul/depviz-test/milestone/1","has_label":["https://github.com/moul/depviz-test/labels/bug","https://github.com/moul/depviz-test/labels/documentation","https://github.com/moul/depviz-test/labels/enhancement"]} {"id":"https://github.com/moul/depviz-test/issues/3","created_at":"2019-08-06T15:36:45Z","updated_at":"2019-08-06T15:36:45Z","local_id":"moul/depviz-test#3","kind":1,"title":"I'm an issue that depends on another","description":"Depends on #2 ","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","is_depending_on":["https://github.com/moul/depviz-test/issues/2"]} -{"id":"https://github.com/moul/depviz-test/issues/3","created_at":"2019-08-06T15:36:45Z","updated_at":"2019-08-06T15:36:45Z","local_id":"moul/depviz-test#3","kind":1,"title":"I'm an issue that depends on another","description":"Depends on #2 ","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","is_depending_on":["https://github.com/moul/depviz-test/issues/2"]} -{"id":"https://github.com/moul/depviz-test/issues/4","created_at":"2019-08-06T15:36:58Z","updated_at":"2019-08-06T15:36:58Z","local_id":"moul/depviz-test#4","kind":1,"title":"I'm an issue that also depends on another","description":"Depends on #2","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","is_depending_on":["https://github.com/moul/depviz-test/issues/2"]} {"id":"https://github.com/moul/depviz-test/issues/4","created_at":"2019-08-06T15:36:58Z","updated_at":"2019-08-06T15:36:58Z","local_id":"moul/depviz-test#4","kind":1,"title":"I'm an issue that also depends on another","description":"Depends on #2","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","is_depending_on":["https://github.com/moul/depviz-test/issues/2"]} {"id":"https://github.com/moul/depviz-test/issues/5","created_at":"2019-08-06T15:37:21Z","updated_at":"2019-10-29T08:59:38Z","local_id":"moul/depviz-test#5","kind":1,"title":"I'm an issue that depends on multiple issues","description":"Depends on #4 \r\nDepends on #3 ","driver":1,"completed_at":"2019-10-29T08:59:38Z","state":2,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","is_depending_on":["https://github.com/moul/depviz-test/issues/3","https://github.com/moul/depviz-test/issues/4"]} -{"id":"https://github.com/moul/depviz-test/issues/5","created_at":"2019-08-06T15:37:21Z","updated_at":"2019-10-29T08:59:38Z","local_id":"moul/depviz-test#5","kind":1,"title":"I'm an issue that depends on multiple issues","description":"Depends on #4 \r\nDepends on #3 ","driver":1,"completed_at":"2019-10-29T08:59:38Z","state":2,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","is_depending_on":["https://github.com/moul/depviz-test/issues/3","https://github.com/moul/depviz-test/issues/4"]} -{"id":"https://github.com/moul/depviz-test/issues/5","created_at":"2019-08-06T15:37:21Z","updated_at":"2019-10-29T08:59:38Z","local_id":"moul/depviz-test#5","kind":1,"title":"I'm an issue that depends on multiple issues","description":"Depends on #4 \r\nDepends on #3 ","driver":1,"completed_at":"2019-10-29T08:59:38Z","state":2,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","is_depending_on":["https://github.com/moul/depviz-test/issues/3","https://github.com/moul/depviz-test/issues/4"]} {"id":"https://github.com/moul/depviz-test/issues/6","created_at":"2019-08-06T15:37:44Z","updated_at":"2019-08-06T15:37:44Z","local_id":"moul/depviz-test#6","kind":1,"title":"I'm an issue that depends on the same issue at different levels","description":"Depends on #2 \r\nDepends on #3 \r\nDepends on #5 ","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","is_depending_on":["https://github.com/moul/depviz-test/issues/2","https://github.com/moul/depviz-test/issues/3","https://github.com/moul/depviz-test/issues/5"]} -{"id":"https://github.com/moul/depviz-test/issues/6","created_at":"2019-08-06T15:37:44Z","updated_at":"2019-08-06T15:37:44Z","local_id":"moul/depviz-test#6","kind":1,"title":"I'm an issue that depends on the same issue at different levels","description":"Depends on #2 \r\nDepends on #3 \r\nDepends on #5 ","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","is_depending_on":["https://github.com/moul/depviz-test/issues/2","https://github.com/moul/depviz-test/issues/3","https://github.com/moul/depviz-test/issues/5"]} -{"id":"https://github.com/moul/depviz-test/issues/6","created_at":"2019-08-06T15:37:44Z","updated_at":"2019-08-06T15:37:44Z","local_id":"moul/depviz-test#6","kind":1,"title":"I'm an issue that depends on the same issue at different levels","description":"Depends on #2 \r\nDepends on #3 \r\nDepends on #5 ","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","is_depending_on":["https://github.com/moul/depviz-test/issues/2","https://github.com/moul/depviz-test/issues/3","https://github.com/moul/depviz-test/issues/5"]} -{"id":"https://github.com/moul/depviz-test/issues/6","created_at":"2019-08-06T15:37:44Z","updated_at":"2019-08-06T15:37:44Z","local_id":"moul/depviz-test#6","kind":1,"title":"I'm an issue that depends on the same issue at different levels","description":"Depends on #2 \r\nDepends on #3 \r\nDepends on #5 ","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","is_depending_on":["https://github.com/moul/depviz-test/issues/2","https://github.com/moul/depviz-test/issues/3","https://github.com/moul/depviz-test/issues/5"]} -{"id":"https://github.com/moul/depviz-test/issues/7","created_at":"2019-08-06T15:38:05Z","updated_at":"2019-11-19T17:30:28Z","local_id":"moul/depviz-test#7","kind":1,"title":"I'm an issue that depends on an issue that itself depends on multiple ones","description":"Depends on #6 ","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","has_milestone":"https://github.com/moul/depviz-test/milestone/1","is_depending_on":["https://github.com/moul/depviz-test/issues/6"]} {"id":"https://github.com/moul/depviz-test/issues/7","created_at":"2019-08-06T15:38:05Z","updated_at":"2019-11-19T17:30:28Z","local_id":"moul/depviz-test#7","kind":1,"title":"I'm an issue that depends on an issue that itself depends on multiple ones","description":"Depends on #6 ","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","has_milestone":"https://github.com/moul/depviz-test/milestone/1","is_depending_on":["https://github.com/moul/depviz-test/issues/6"]} -{"id":"https://github.com/moul/depviz-test/issues/7","created_at":"2019-08-06T15:38:05Z","updated_at":"2019-11-19T17:30:28Z","local_id":"moul/depviz-test#7","kind":1,"title":"I'm an issue that depends on an issue that itself depends on multiple ones","description":"Depends on #6 ","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","has_milestone":"https://github.com/moul/depviz-test/milestone/1","is_depending_on":["https://github.com/moul/depviz-test/issues/6"]} -{"id":"https://github.com/moul/depviz-test/issues/8","created_at":"2019-08-06T15:40:58Z","updated_at":"2019-11-19T17:30:28Z","local_id":"moul/depviz-test#8","kind":1,"title":"An issue in an isolated group of 2","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","has_milestone":"https://github.com/moul/depviz-test/milestone/1"} {"id":"https://github.com/moul/depviz-test/issues/8","created_at":"2019-08-06T15:40:58Z","updated_at":"2019-11-19T17:30:28Z","local_id":"moul/depviz-test#8","kind":1,"title":"An issue in an isolated group of 2","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","has_milestone":"https://github.com/moul/depviz-test/milestone/1"} {"id":"https://github.com/moul/depviz-test/issues/9","created_at":"2019-08-06T15:41:14Z","updated_at":"2019-11-19T17:30:28Z","local_id":"moul/depviz-test#9","kind":1,"title":"Another issue in an isolated group of 2","description":"Depends on #8","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","has_milestone":"https://github.com/moul/depviz-test/milestone/1","is_depending_on":["https://github.com/moul/depviz-test/issues/8"]} -{"id":"https://github.com/moul/depviz-test/issues/9","created_at":"2019-08-06T15:41:14Z","updated_at":"2019-11-19T17:30:28Z","local_id":"moul/depviz-test#9","kind":1,"title":"Another issue in an isolated group of 2","description":"Depends on #8","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","has_milestone":"https://github.com/moul/depviz-test/milestone/1","is_depending_on":["https://github.com/moul/depviz-test/issues/8"]} -{"id":"https://github.com/moul/depviz-test/milestone/1","created_at":"2019-08-06T15:36:28Z","updated_at":"2019-11-19T17:30:28Z","local_id":"moul/depviz-test/milestone/1","kind":3,"title":"lorem-ipsum-milestone","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test"} {"id":"https://github.com/moul/depviz-test/milestone/1","created_at":"2019-08-06T15:36:28Z","updated_at":"2019-11-19T17:30:28Z","local_id":"moul/depviz-test/milestone/1","kind":3,"title":"lorem-ipsum-milestone","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test"} diff --git a/internal/dvstore/testdata/golden.all-depviz-test_theworld.json b/internal/dvstore/testdata/golden.all-depviz-test_theworld.json index 8c867337d..bf7a1b281 100644 --- a/internal/dvstore/testdata/golden.all-depviz-test_theworld.json +++ b/internal/dvstore/testdata/golden.all-depviz-test_theworld.json @@ -1,52 +1,20 @@ {"Targets":null,"TheWorld":true,"WithClosed":false,"WithoutIsolated":false,"WithoutPRs":false,"WithoutExternalDeps":false} {"id":"https://github.com/moul-bot/depviz-test/issues/1","created_at":"2019-08-08T18:55:07Z","updated_at":"2019-08-08T18:55:07Z","local_id":"moul-bot/depviz-test#1","kind":1,"title":"Issue 1","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test"} -{"id":"https://github.com/moul-bot/depviz-test/issues/1","created_at":"2019-08-08T18:55:07Z","updated_at":"2019-08-08T18:55:07Z","local_id":"moul-bot/depviz-test#1","kind":1,"title":"Issue 1","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test"} -{"id":"https://github.com/moul-bot/depviz-test/issues/2","created_at":"2019-08-08T18:55:13Z","updated_at":"2019-08-08T18:55:13Z","local_id":"moul-bot/depviz-test#2","kind":1,"title":"Issue 2","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test"} {"id":"https://github.com/moul-bot/depviz-test/issues/2","created_at":"2019-08-08T18:55:13Z","updated_at":"2019-08-08T18:55:13Z","local_id":"moul-bot/depviz-test#2","kind":1,"title":"Issue 2","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test"} {"id":"https://github.com/moul-bot/depviz-test/issues/3","created_at":"2019-08-08T18:55:19Z","updated_at":"2019-08-08T18:55:19Z","local_id":"moul-bot/depviz-test#3","kind":1,"title":"Issue 3","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test"} -{"id":"https://github.com/moul-bot/depviz-test/issues/3","created_at":"2019-08-08T18:55:19Z","updated_at":"2019-08-08T18:55:19Z","local_id":"moul-bot/depviz-test#3","kind":1,"title":"Issue 3","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test"} -{"id":"https://github.com/moul-bot/depviz-test/issues/4","created_at":"2019-08-08T18:55:34Z","updated_at":"2019-08-08T18:55:34Z","local_id":"moul-bot/depviz-test#4","kind":1,"title":"Issue #4","description":"Depends on #1 \r\nDepends on #2 \r\nDepends on #3","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/1","https://github.com/moul-bot/depviz-test/issues/2","https://github.com/moul-bot/depviz-test/issues/3"]} -{"id":"https://github.com/moul-bot/depviz-test/issues/4","created_at":"2019-08-08T18:55:34Z","updated_at":"2019-08-08T18:55:34Z","local_id":"moul-bot/depviz-test#4","kind":1,"title":"Issue #4","description":"Depends on #1 \r\nDepends on #2 \r\nDepends on #3","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/1","https://github.com/moul-bot/depviz-test/issues/2","https://github.com/moul-bot/depviz-test/issues/3"]} -{"id":"https://github.com/moul-bot/depviz-test/issues/4","created_at":"2019-08-08T18:55:34Z","updated_at":"2019-08-08T18:55:34Z","local_id":"moul-bot/depviz-test#4","kind":1,"title":"Issue #4","description":"Depends on #1 \r\nDepends on #2 \r\nDepends on #3","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/1","https://github.com/moul-bot/depviz-test/issues/2","https://github.com/moul-bot/depviz-test/issues/3"]} -{"id":"https://github.com/moul-bot/depviz-test/issues/4","created_at":"2019-08-08T18:55:34Z","updated_at":"2019-08-08T18:55:34Z","local_id":"moul-bot/depviz-test#4","kind":1,"title":"Issue #4","description":"Depends on #1 \r\nDepends on #2 \r\nDepends on #3","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/1","https://github.com/moul-bot/depviz-test/issues/2","https://github.com/moul-bot/depviz-test/issues/3"]} -{"id":"https://github.com/moul-bot/depviz-test/issues/4","created_at":"2019-08-08T18:55:34Z","updated_at":"2019-08-08T18:55:34Z","local_id":"moul-bot/depviz-test#4","kind":1,"title":"Issue #4","description":"Depends on #1 \r\nDepends on #2 \r\nDepends on #3","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/1","https://github.com/moul-bot/depviz-test/issues/2","https://github.com/moul-bot/depviz-test/issues/3"]} {"id":"https://github.com/moul-bot/depviz-test/issues/4","created_at":"2019-08-08T18:55:34Z","updated_at":"2019-08-08T18:55:34Z","local_id":"moul-bot/depviz-test#4","kind":1,"title":"Issue #4","description":"Depends on #1 \r\nDepends on #2 \r\nDepends on #3","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/1","https://github.com/moul-bot/depviz-test/issues/2","https://github.com/moul-bot/depviz-test/issues/3"]} -{"id":"https://github.com/moul-bot/depviz-test/issues/4","created_at":"2019-08-08T18:55:34Z","updated_at":"2019-08-08T18:55:34Z","local_id":"moul-bot/depviz-test#4","kind":1,"title":"Issue #4","description":"Depends on #1 \r\nDepends on #2 \r\nDepends on #3","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/1","https://github.com/moul-bot/depviz-test/issues/2","https://github.com/moul-bot/depviz-test/issues/3"]} -{"id":"https://github.com/moul-bot/depviz-test/issues/5","created_at":"2019-08-08T18:55:47Z","updated_at":"2019-08-08T18:55:47Z","local_id":"moul-bot/depviz-test#5","kind":1,"title":"Issue 5","description":"Depends on #4","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/4"]} {"id":"https://github.com/moul-bot/depviz-test/issues/5","created_at":"2019-08-08T18:55:47Z","updated_at":"2019-08-08T18:55:47Z","local_id":"moul-bot/depviz-test#5","kind":1,"title":"Issue 5","description":"Depends on #4","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/4"]} -{"id":"https://github.com/moul-bot/depviz-test/issues/5","created_at":"2019-08-08T18:55:47Z","updated_at":"2019-08-08T18:55:47Z","local_id":"moul-bot/depviz-test#5","kind":1,"title":"Issue 5","description":"Depends on #4","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/4"]} -{"id":"https://github.com/moul-bot/depviz-test/issues/6","created_at":"2019-08-08T18:56:04Z","updated_at":"2019-08-08T18:56:04Z","local_id":"moul-bot/depviz-test#6","kind":1,"title":"Issue 6","description":"Depends on #4","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/4"]} {"id":"https://github.com/moul-bot/depviz-test/issues/6","created_at":"2019-08-08T18:56:04Z","updated_at":"2019-08-08T18:56:04Z","local_id":"moul-bot/depviz-test#6","kind":1,"title":"Issue 6","description":"Depends on #4","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/4"]} {"id":"https://github.com/moul-bot/depviz-test/issues/7","created_at":"2019-08-08T18:56:14Z","updated_at":"2019-09-03T09:07:03Z","local_id":"moul-bot/depviz-test#7","kind":1,"title":"Issue 7","description":"Depends on #4\r\nDepends on https://github.com/moul/depviz-test/milestone/1","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/4","https://github.com/moul/depviz-test/milestone/1"]} -{"id":"https://github.com/moul-bot/depviz-test/issues/7","created_at":"2019-08-08T18:56:14Z","updated_at":"2019-09-03T09:07:03Z","local_id":"moul-bot/depviz-test#7","kind":1,"title":"Issue 7","description":"Depends on #4\r\nDepends on https://github.com/moul/depviz-test/milestone/1","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/4","https://github.com/moul/depviz-test/milestone/1"]} -{"id":"https://github.com/moul-bot/depviz-test/issues/7","created_at":"2019-08-08T18:56:14Z","updated_at":"2019-09-03T09:07:03Z","local_id":"moul-bot/depviz-test#7","kind":1,"title":"Issue 7","description":"Depends on #4\r\nDepends on https://github.com/moul/depviz-test/milestone/1","driver":1,"state":1,"has_author":"https://github.com/moul-bot","has_owner":"https://github.com/moul-bot/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/4","https://github.com/moul/depviz-test/milestone/1"]} {"id":"https://github.com/moul/depviz-test/issues/1","created_at":"2019-08-06T15:35:49Z","updated_at":"2019-08-06T15:35:49Z","local_id":"moul/depviz-test#1","kind":1,"title":"I'm a standard issue","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test"} {"id":"https://github.com/moul/depviz-test/issues/10","created_at":"2019-09-03T08:51:47Z","updated_at":"2019-12-03T17:35:06Z","local_id":"moul/depviz-test#10","kind":1,"title":"New test","description":"Depends on #4 \r\nDepends on #6 \r\nBlocks #7 \r\nDepends on https://github.com/moul-bot/depviz-test/issues/5","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/5","https://github.com/moul/depviz-test/issues/4","https://github.com/moul/depviz-test/issues/6"],"is_blocking":["https://github.com/moul/depviz-test/issues/7"]} -{"id":"https://github.com/moul/depviz-test/issues/10","created_at":"2019-09-03T08:51:47Z","updated_at":"2019-12-03T17:35:06Z","local_id":"moul/depviz-test#10","kind":1,"title":"New test","description":"Depends on #4 \r\nDepends on #6 \r\nBlocks #7 \r\nDepends on https://github.com/moul-bot/depviz-test/issues/5","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/5","https://github.com/moul/depviz-test/issues/4","https://github.com/moul/depviz-test/issues/6"],"is_blocking":["https://github.com/moul/depviz-test/issues/7"]} -{"id":"https://github.com/moul/depviz-test/issues/10","created_at":"2019-09-03T08:51:47Z","updated_at":"2019-12-03T17:35:06Z","local_id":"moul/depviz-test#10","kind":1,"title":"New test","description":"Depends on #4 \r\nDepends on #6 \r\nBlocks #7 \r\nDepends on https://github.com/moul-bot/depviz-test/issues/5","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/5","https://github.com/moul/depviz-test/issues/4","https://github.com/moul/depviz-test/issues/6"],"is_blocking":["https://github.com/moul/depviz-test/issues/7"]} -{"id":"https://github.com/moul/depviz-test/issues/10","created_at":"2019-09-03T08:51:47Z","updated_at":"2019-12-03T17:35:06Z","local_id":"moul/depviz-test#10","kind":1,"title":"New test","description":"Depends on #4 \r\nDepends on #6 \r\nBlocks #7 \r\nDepends on https://github.com/moul-bot/depviz-test/issues/5","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/5","https://github.com/moul/depviz-test/issues/4","https://github.com/moul/depviz-test/issues/6"],"is_blocking":["https://github.com/moul/depviz-test/issues/7"]} -{"id":"https://github.com/moul/depviz-test/issues/10","created_at":"2019-09-03T08:51:47Z","updated_at":"2019-12-03T17:35:06Z","local_id":"moul/depviz-test#10","kind":1,"title":"New test","description":"Depends on #4 \r\nDepends on #6 \r\nBlocks #7 \r\nDepends on https://github.com/moul-bot/depviz-test/issues/5","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","is_depending_on":["https://github.com/moul-bot/depviz-test/issues/5","https://github.com/moul/depviz-test/issues/4","https://github.com/moul/depviz-test/issues/6"],"is_blocking":["https://github.com/moul/depviz-test/issues/7"]} {"id":"https://github.com/moul/depviz-test/issues/11","created_at":"2019-11-04T11:59:52Z","updated_at":"2019-11-04T12:05:12Z","local_id":"moul/depviz-test#11","kind":1,"title":"test short names","description":"https://github.com/moul/depviz-test/issues/2\r\nhttps://github.com/moul/depviz-test/issues/10\r\nhttps://github.com/moul/depviz-test-two-issues/pull/4\r\nhttps://github.com/moul/depviz-test-two-issues/pull/3\r\nhttps://github.com/moul/depviz-test-two-issues/projects/1#card-28544696\r\nhttps://github.com/moul/depviz-test-two-issues/milestone/1\r\nhttps://github.com/moul\r\nhttps://github.com/berty","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test"} {"id":"https://github.com/moul/depviz-test/issues/2","created_at":"2019-08-06T15:36:09Z","updated_at":"2019-10-29T08:59:41Z","local_id":"moul/depviz-test#2","kind":1,"title":"I'm an issue with a milestone, some projects, and some labels","driver":1,"completed_at":"2019-10-29T08:59:41Z","state":2,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","has_milestone":"https://github.com/moul/depviz-test/milestone/1","has_label":["https://github.com/moul/depviz-test/labels/bug","https://github.com/moul/depviz-test/labels/documentation","https://github.com/moul/depviz-test/labels/enhancement"]} -{"id":"https://github.com/moul/depviz-test/issues/2","created_at":"2019-08-06T15:36:09Z","updated_at":"2019-10-29T08:59:41Z","local_id":"moul/depviz-test#2","kind":1,"title":"I'm an issue with a milestone, some projects, and some labels","driver":1,"completed_at":"2019-10-29T08:59:41Z","state":2,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","has_milestone":"https://github.com/moul/depviz-test/milestone/1","has_label":["https://github.com/moul/depviz-test/labels/bug","https://github.com/moul/depviz-test/labels/documentation","https://github.com/moul/depviz-test/labels/enhancement"]} -{"id":"https://github.com/moul/depviz-test/issues/2","created_at":"2019-08-06T15:36:09Z","updated_at":"2019-10-29T08:59:41Z","local_id":"moul/depviz-test#2","kind":1,"title":"I'm an issue with a milestone, some projects, and some labels","driver":1,"completed_at":"2019-10-29T08:59:41Z","state":2,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","has_milestone":"https://github.com/moul/depviz-test/milestone/1","has_label":["https://github.com/moul/depviz-test/labels/bug","https://github.com/moul/depviz-test/labels/documentation","https://github.com/moul/depviz-test/labels/enhancement"]} {"id":"https://github.com/moul/depviz-test/issues/3","created_at":"2019-08-06T15:36:45Z","updated_at":"2019-08-06T15:36:45Z","local_id":"moul/depviz-test#3","kind":1,"title":"I'm an issue that depends on another","description":"Depends on #2 ","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","is_depending_on":["https://github.com/moul/depviz-test/issues/2"]} -{"id":"https://github.com/moul/depviz-test/issues/3","created_at":"2019-08-06T15:36:45Z","updated_at":"2019-08-06T15:36:45Z","local_id":"moul/depviz-test#3","kind":1,"title":"I'm an issue that depends on another","description":"Depends on #2 ","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","is_depending_on":["https://github.com/moul/depviz-test/issues/2"]} -{"id":"https://github.com/moul/depviz-test/issues/4","created_at":"2019-08-06T15:36:58Z","updated_at":"2019-08-06T15:36:58Z","local_id":"moul/depviz-test#4","kind":1,"title":"I'm an issue that also depends on another","description":"Depends on #2","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","is_depending_on":["https://github.com/moul/depviz-test/issues/2"]} {"id":"https://github.com/moul/depviz-test/issues/4","created_at":"2019-08-06T15:36:58Z","updated_at":"2019-08-06T15:36:58Z","local_id":"moul/depviz-test#4","kind":1,"title":"I'm an issue that also depends on another","description":"Depends on #2","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","is_depending_on":["https://github.com/moul/depviz-test/issues/2"]} {"id":"https://github.com/moul/depviz-test/issues/5","created_at":"2019-08-06T15:37:21Z","updated_at":"2019-10-29T08:59:38Z","local_id":"moul/depviz-test#5","kind":1,"title":"I'm an issue that depends on multiple issues","description":"Depends on #4 \r\nDepends on #3 ","driver":1,"completed_at":"2019-10-29T08:59:38Z","state":2,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","is_depending_on":["https://github.com/moul/depviz-test/issues/3","https://github.com/moul/depviz-test/issues/4"]} -{"id":"https://github.com/moul/depviz-test/issues/5","created_at":"2019-08-06T15:37:21Z","updated_at":"2019-10-29T08:59:38Z","local_id":"moul/depviz-test#5","kind":1,"title":"I'm an issue that depends on multiple issues","description":"Depends on #4 \r\nDepends on #3 ","driver":1,"completed_at":"2019-10-29T08:59:38Z","state":2,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","is_depending_on":["https://github.com/moul/depviz-test/issues/3","https://github.com/moul/depviz-test/issues/4"]} -{"id":"https://github.com/moul/depviz-test/issues/5","created_at":"2019-08-06T15:37:21Z","updated_at":"2019-10-29T08:59:38Z","local_id":"moul/depviz-test#5","kind":1,"title":"I'm an issue that depends on multiple issues","description":"Depends on #4 \r\nDepends on #3 ","driver":1,"completed_at":"2019-10-29T08:59:38Z","state":2,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","is_depending_on":["https://github.com/moul/depviz-test/issues/3","https://github.com/moul/depviz-test/issues/4"]} {"id":"https://github.com/moul/depviz-test/issues/6","created_at":"2019-08-06T15:37:44Z","updated_at":"2019-08-06T15:37:44Z","local_id":"moul/depviz-test#6","kind":1,"title":"I'm an issue that depends on the same issue at different levels","description":"Depends on #2 \r\nDepends on #3 \r\nDepends on #5 ","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","is_depending_on":["https://github.com/moul/depviz-test/issues/2","https://github.com/moul/depviz-test/issues/3","https://github.com/moul/depviz-test/issues/5"]} -{"id":"https://github.com/moul/depviz-test/issues/6","created_at":"2019-08-06T15:37:44Z","updated_at":"2019-08-06T15:37:44Z","local_id":"moul/depviz-test#6","kind":1,"title":"I'm an issue that depends on the same issue at different levels","description":"Depends on #2 \r\nDepends on #3 \r\nDepends on #5 ","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","is_depending_on":["https://github.com/moul/depviz-test/issues/2","https://github.com/moul/depviz-test/issues/3","https://github.com/moul/depviz-test/issues/5"]} -{"id":"https://github.com/moul/depviz-test/issues/6","created_at":"2019-08-06T15:37:44Z","updated_at":"2019-08-06T15:37:44Z","local_id":"moul/depviz-test#6","kind":1,"title":"I'm an issue that depends on the same issue at different levels","description":"Depends on #2 \r\nDepends on #3 \r\nDepends on #5 ","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","is_depending_on":["https://github.com/moul/depviz-test/issues/2","https://github.com/moul/depviz-test/issues/3","https://github.com/moul/depviz-test/issues/5"]} -{"id":"https://github.com/moul/depviz-test/issues/6","created_at":"2019-08-06T15:37:44Z","updated_at":"2019-08-06T15:37:44Z","local_id":"moul/depviz-test#6","kind":1,"title":"I'm an issue that depends on the same issue at different levels","description":"Depends on #2 \r\nDepends on #3 \r\nDepends on #5 ","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","is_depending_on":["https://github.com/moul/depviz-test/issues/2","https://github.com/moul/depviz-test/issues/3","https://github.com/moul/depviz-test/issues/5"]} -{"id":"https://github.com/moul/depviz-test/issues/7","created_at":"2019-08-06T15:38:05Z","updated_at":"2019-11-19T17:30:28Z","local_id":"moul/depviz-test#7","kind":1,"title":"I'm an issue that depends on an issue that itself depends on multiple ones","description":"Depends on #6 ","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","has_milestone":"https://github.com/moul/depviz-test/milestone/1","is_depending_on":["https://github.com/moul/depviz-test/issues/6"]} {"id":"https://github.com/moul/depviz-test/issues/7","created_at":"2019-08-06T15:38:05Z","updated_at":"2019-11-19T17:30:28Z","local_id":"moul/depviz-test#7","kind":1,"title":"I'm an issue that depends on an issue that itself depends on multiple ones","description":"Depends on #6 ","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","has_milestone":"https://github.com/moul/depviz-test/milestone/1","is_depending_on":["https://github.com/moul/depviz-test/issues/6"]} -{"id":"https://github.com/moul/depviz-test/issues/7","created_at":"2019-08-06T15:38:05Z","updated_at":"2019-11-19T17:30:28Z","local_id":"moul/depviz-test#7","kind":1,"title":"I'm an issue that depends on an issue that itself depends on multiple ones","description":"Depends on #6 ","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","has_milestone":"https://github.com/moul/depviz-test/milestone/1","is_depending_on":["https://github.com/moul/depviz-test/issues/6"]} -{"id":"https://github.com/moul/depviz-test/issues/8","created_at":"2019-08-06T15:40:58Z","updated_at":"2019-11-19T17:30:28Z","local_id":"moul/depviz-test#8","kind":1,"title":"An issue in an isolated group of 2","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","has_milestone":"https://github.com/moul/depviz-test/milestone/1"} {"id":"https://github.com/moul/depviz-test/issues/8","created_at":"2019-08-06T15:40:58Z","updated_at":"2019-11-19T17:30:28Z","local_id":"moul/depviz-test#8","kind":1,"title":"An issue in an isolated group of 2","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","has_milestone":"https://github.com/moul/depviz-test/milestone/1"} {"id":"https://github.com/moul/depviz-test/issues/9","created_at":"2019-08-06T15:41:14Z","updated_at":"2019-11-19T17:30:28Z","local_id":"moul/depviz-test#9","kind":1,"title":"Another issue in an isolated group of 2","description":"Depends on #8","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","has_milestone":"https://github.com/moul/depviz-test/milestone/1","is_depending_on":["https://github.com/moul/depviz-test/issues/8"]} -{"id":"https://github.com/moul/depviz-test/issues/9","created_at":"2019-08-06T15:41:14Z","updated_at":"2019-11-19T17:30:28Z","local_id":"moul/depviz-test#9","kind":1,"title":"Another issue in an isolated group of 2","description":"Depends on #8","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test","has_milestone":"https://github.com/moul/depviz-test/milestone/1","is_depending_on":["https://github.com/moul/depviz-test/issues/8"]} -{"id":"https://github.com/moul/depviz-test/milestone/1","created_at":"2019-08-06T15:36:28Z","updated_at":"2019-11-19T17:30:28Z","local_id":"moul/depviz-test/milestone/1","kind":3,"title":"lorem-ipsum-milestone","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test"} {"id":"https://github.com/moul/depviz-test/milestone/1","created_at":"2019-08-06T15:36:28Z","updated_at":"2019-11-19T17:30:28Z","local_id":"moul/depviz-test/milestone/1","kind":3,"title":"lorem-ipsum-milestone","driver":1,"state":1,"has_author":"https://github.com/moul","has_owner":"https://github.com/moul/depviz-test"}