MATCH (story:StoryGame) [:chaoticBranches]> (`_story1`:EMBEDDED) WHERE `_story1`.evilText = "[ARTIFACT] Search for the evil artifact" RETURN story For example org.hibernate.ogm.backendtck.queries.StoryGame` and `StoryBranch` becomes:
(story:StoryGame) -[:chaoticBranches]-> (`_story1`:EMBEDDED)
but it should be
(story:StoryGame) -[:chaoticBranches]-> (`_story1`:EMBEDDED:StoryBranch)
|