neodash icon indicating copy to clipboard operation
neodash copied to clipboard

Concatenating a URL and a regular string turns the whole newly created string into a url

Open gcthys opened this issue 2 years ago • 2 comments

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, where the s.url-component stays a URL and the r.date component stays a string, but with the "+"-operator as well as with apoc.text.join([s.url, ', ', r.date], ' ') the whole output, including the comma and the date, is turned into a URL: Schermafbeelding 2023-05-11 110511 but this should be returned: Schermafbeelding 2023-05-11 110831

I ran the query in Browser and it works fine there, so this must be an issue in NeoDash.

gcthys avatar May 11 '23 11:05 gcthys

??? Anybody ???

gcthys avatar Jul 26 '23 08:07 gcthys

Thank you for the input. It looks like it's possible to use commas into URLs, so we don't see a reason to parse the string and store it in two different entries. What we can suggest is to return the same value splitted in two columns, if for example you're using a Table Chart.

alfredorubin96 avatar Feb 22 '24 07:02 alfredorubin96