You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
See e.g.: neo4j-graph-examples/blank-sandbox#12
A possible solution would be to provide type hint in the parameter definition present in the sandbox own README.adoc attributes.
It currently is defined as:
.Example Query:
[source,cypher,role=query-example,param-name=limit,param-value=10,result-column=count,expected-result=0]
----
MATCH (n)
RETURN COUNT(n) AS count
LIMIT $limit
----
But could become (see param-value-quoted=false - the default would be true):
.Example Query:
[source,cypher,role=query-example,param-name=limit,param-value=10,param-value-quoted=false,result-column=count,expected-result=0]
----
MATCH (n)
RETURN COUNT(n) AS count
LIMIT $limit
----
The text was updated successfully, but these errors were encountered:
See e.g.: neo4j-graph-examples/blank-sandbox#12
A possible solution would be to provide type hint in the parameter definition present in the sandbox own
README.adoc
attributes.It currently is defined as:
But could become (see
param-value-quoted=false
- the default would betrue
):The text was updated successfully, but these errors were encountered: