DotNet4Neo4j / Neo4jClient

.NET client binding for Neo4j
https://www.nuget.org/packages/Neo4jClient
Microsoft Public License
431 stars 146 forks source link

Adds `.Show` to the interface and fixes Cypher Capabilities #463

Closed cskardon closed 1 year ago

cskardon commented 1 year ago

Fixes #462

.Show() is now in the ICypherFluentInterface

To use it would be something like:

var names = await client. Cypher
    .Show("DATABASES")
    .Yield("name")
    .Return(name => name.As<string>()).ResultsAsync;