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
I tried to execute some queries in JSONPaths as I've noticed it has been implemented (#190).
However, I found out that SET queries in JSONPaths don't seem to work as expected.
When doing the following:
MATCH (d:deploy) WHEREd.metadata.annotations.meta\.cyphernet\.es/foo = "bar"RETURNd.metadata.annotations.meta\.cyphernet\.es/foo;
Everything works as expected, I'm able to get the deployment with the right annotation.
But, when I try to do a SET request, like so:
MATCH (d:deploy) WHEREd.metadata.annotations.meta\.cyphernet\.es/foo = "bar"SETd.metadata.annotations.meta\.cyphernet\.es/foo = "test";
The annotation ends up getting cut short like so: es/foo: test
The text was updated successfully, but these errors were encountered:
Hi 👋 ,
I tried to execute some queries in JSONPaths as I've noticed it has been implemented (#190).
However, I found out that SET queries in JSONPaths don't seem to work as expected.
When doing the following:
Everything works as expected, I'm able to get the deployment with the right annotation.
But, when I try to do a SET request, like so:
The annotation ends up getting cut short like so:
es/foo: test
The text was updated successfully, but these errors were encountered: