How to save data like this in neo4j dumb question

Hello ... how to save data like this in neo4j
CREATE(o:Order)
SET o.value="{"landingPage":"langingPage"}"
return o
it gives me always error

It looks like you're attempting to set this as a JSON string, note that you're using quotes wrong here. You need to either escape your inner quotes, or use different kinds of quotes to make this work (single quotes on the outside of the string, double-quotes within the string, or vice versa).

You can try this:

CREATE(o:Order)
SET o.value='{"landingPage":"langingPage"}'
return o
1 Like

Many thx bro!!! Works very good. Thank you.