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
Hi, I started a solution for this issue, I think that this can be divided in two parts.
The first part is to solve the errors that can be detected by the parser, changes that were implemented in PR posted above.
The second part is to solve the case of invalid queries due to the use of undefined variables:
GRAPH.QUERY g "CREATE INDEX FOR (p:Person) ON (a.b)"
The validation of previous case should be done in Redisgraph. This has not been implemented yet.
RedisGraph 2.8.15
The following invalid query is considered valid:
Since
m.n
andp.q
are invalid property names, the command should be rejected.Currently it creates indexes on properties
n
andq
.The following invalid queries are considered valid as well:
Currently both create an index on property
b
.The text was updated successfully, but these errors were encountered: