Bloom has "Chunk" and "__Entitiy__ - but does not show them?

Hi,

Bloom shows me "Chunk" and "Entities" exist on my Aura-DB - but:
A) does not show them (they are only off-scene) and
B) where do they come from? I did not do any embedding. I did fill the DB not by import but by “individual” cypher code

Michael

Have you used the Knowledge Graph Builder in this instance? Those look like labels it uses

Hi John,

no I did not. In the cypher code itself no Chunks or Entity appear!

How can I delete them? Since they do not appear as nodes, I cannot even right-click and delete.

MATCH (n)

WHERE n = "Chunk"

RETURN n

…and similar does not work either

try running “show indexes” and “show constraints” in Query - and drop any that you find which refer to those labels.

And FYI - your Cypher isn’t correct. This will find Chunk nodes:

match (n:Chunk) return n