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:
{code} (story:StoryGame) -[:chaoticBranches]-> (`_story1`:EMBEDDED) {code}
but it should be
{code} (story:StoryGame) -[:chaoticBranches]-> (`_story1`:EMBEDDED:StoryBranch) {code} |
|