Noah Zhu

Results 24 comments of Noah Zhu

The same issue is on my side, don't know how to solve it. 😭

Run 'nvim --clean -u debug/min-alpha-dashboard.lua' Other two options '--noplugin', '-u' work fine.

Nothing happened. All the configurations were loaded without any errors. I need to execute Alpha to start it.

This is my alpha config https://github.com/virezox/nvim/blob/main/lua/plugins/alpha.lua, Here is my packer config https://github.com/virezox/nvim/blob/main/lua/plugins/packer.lua#L56, https://github.com/virezox/nvim/blob/main/lua/plugins/init.lua#L3 I require it in this place, if I don't require it, there's no "Alpha" command, so I...

I'm a mac user. I upgraded my neovim to 0.8, but it still doesn't work. I'm not sure if some dependencies are missing using homebrew to install. Both M1 and...

The reason is that I use neovim to open a folder, lol. I should start neovim directly. 😄

When I use Neo4j, I can create like this, the edge label can also include single quote ![CleanShot 2024-04-05 at 21 59 12@2x](https://github.com/apache/age/assets/8643866/03d3a264-c5c7-4e36-851c-ea49cac7557b) ``` MERGE (n1:`TEST`{id: 'a\'bb'}) MERGE (n2:`TEST`{id: 'bb...

> Can you put double quotes around the string? > > ```cypher > SELECT * from ag_catalog.cypher('graph_store', $$ > MERGE (n1:`Entity` {id: 'I'}) > MERGE (n2:`Entity` {id: "It's better for...

> @noahxzhu Did you try using the backslash for the cypher query? Your example above doesn't show it. > > ``` > psql-16.1-5432-pgsql=# SELECT * from ag_catalog.cypher('test', $$ > MERGE...

> > > Can you put double quotes around the string? > > > ```cypher > > > SELECT * from ag_catalog.cypher('graph_store', $$ > > > MERGE (n1:`Entity` {id: 'I'})...