I have 2 properties:
s.url which is a string containing a url
r.date which is a string containing a year
I want to concatenate these into one string, but with + as well as with apoc.text.join([s.url, ', ', r.date], ' ') the whole string, including the comma and the date, is turned into a URL:
How can I add the ', 2021' to the string with it being added to the url, like this:
(used screenpics because I can't reproduce the 2 formats here )