ParameterNotFoundException when not setting specific params
问题 I am trying to use Neo4jClient to run the Cypher syntax: UNWIND {apples} AS newApple CREATE (a:Apple {newApple}) with a C# list of object List<Apple> a where the object could be: class Apple : Fruit { [JsonProperty(PropertyName = "Variety")] public String Variety { get; set; } } I do not want to spread out object variable specs in different places around the code. But running graphClient.Cypher .Unwind(a, "newApple") .Create("(a: Apple {newApple})") .ExecuteWithoutResults() throws: