If you need a record ID that goes beyond basic non-accented characters (ASCII), you can put it inside backticks.
In this case, the non-ASCII part of the record ID will be enclosed in ⟨⟩
brackets. You can use the ⟨
and ⟩
keys instead of backticks if you want and have them on your keyboard.
-- French CREATE ONLY place:`ma_bibliothèque`; -- Japanese and ⟨⟩ instead of backticks CREATE ONLY place:⟨良い図書館⟩; -- The ancient Sumerian language CREATE ONLY place:`𒂍𒁾𒁀𒀀`; -- Even emojis! CREATE ONLY `📚📚`:`🧑🎓💪💪💪`;
Response-------- Query 1 -------- { id: place:⟨ma_bibliothèque⟩ } -------- Query 2 -------- { id: place:⟨良い図書館⟩ } -------- Query 3 -------- { id: place:⟨𒂍𒁾𒁀𒀀⟩ } -------- Query 4 -------- { id: ⟨📚📚⟩:⟨🧑🎓💪💪💪⟩ }