It also looks like some annotations are referring to topic tags?
MATCH (t:tag)<-[:REFERS_TO]-(a:annotation) RETURN t, a LIMIT 10
Yields
{
"t": [
{
"id": 1,
"label": "hugi-yes",
"timestamp": "2019-12-25 15:04:08 UTC",
"url": "https://bbu.world/tag/hugi-yes"
},
{
"id": 3,
"label": "filip-fav",
"timestamp": "2019-12-25 14:30:54 UTC",
"url": "https://bbu.world/tag/filip-fav"
},
{
"id": 4,
"label": "jakob-fav",
"timestamp": "2019-12-25 14:30:54 UTC",
"url": "https://bbu.world/tag/jakob-fav"
},
{
"id": 5,
"label": "jen-fav",
"timestamp": "2019-12-25 14:30:54 UTC",
"url": "https://bbu.world/tag/jen-fav"
},
{
"id": 6,
"label": "ola-fav",
"timestamp": "2019-12-25 14:30:54 UTC",
"url": "https://bbu.world/tag/ola-fav"
},
{
"id": 35
},
{
"id": 11,
"label": "ola-yes",
"timestamp": "2019-12-31 02:49:24 UTC",
"url": "https://bbu.world/tag/ola-yes"
},
{
"id": 9,
"label": "alja-yes",
"timestamp": "2019-12-31 02:49:24 UTC",
"url": "https://bbu.world/tag/alja-yes"
},
{
"id": 10,
"label": "alja-no",
"timestamp": "2019-12-31 02:49:24 UTC",
"url": "https://bbu.world/tag/alja-no"
},
{
"id": 262
}
],
"a": [
{
"id": 1,
"label": "1",
"quote": "Department",
"timestamp": "2020-01-14 12:57:20 UTC"
},
{
"id": 3,
"label": "3",
"quote": "collapsing chest",
"timestamp": "2020-01-24 17:29:30 UTC"
},
{
"id": 4,
"label": "4",
"quote": "my mind wanders into terror",
"timestamp": "2020-01-24 17:29:57 UTC"
},
{
"id": 5,
"label": "5",
"quote": "more grey hairs than last time",
"timestamp": "2020-01-24 17:30:45 UTC"
},
{
"id": 6,
"label": "6",
"quote": "more doctor’s appointments",
"timestamp": "2020-01-24 17:31:14 UTC"
},
{
"id": 7,
"label": "7",
"quote": "Less time",
"timestamp": "2020-05-21 02:20:37 UTC"
},
{
"id": 8,
"label": "8",
"quote": "each wall of her house",
"timestamp": "2020-01-24 17:35:12 UTC"
},
{
"id": 9,
"label": "9",
"quote": "orange",
"timestamp": "2020-01-24 17:33:47 UTC"
},
{
"id": 10,
"label": "10",
"quote": "Its warm",
"timestamp": "2020-01-24 17:34:29 UTC"
},
{
"id": 11,
"label": "11",
"quote": "pinned up in the hallway",
"timestamp": "2020-04-07 09:09:47 UTC"
}
]
}
This is a strange result. First of all, the first 9 tags are not ethnography tags but topic tags. Second, it seems to indicate that the return is not giving us what we asked for, since these annotations are not using these tags.
It looks like the return format is also a bit different than what we’re used to from Neo4j, but should be pretty easy to adapt to.