Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
01-31-2020 08:16 AM
02-04-2020 07:28 AM
Well.............issue is due to encoding.
Due to a recent update, our server is using "UTF-8-BOM" instead of previously "ANSI".
Quite a strange issue, as it affected only this column.
If needed, i can provide the file, to further investigate.
02-02-2020 12:43 AM
Hard to say without seeing the full query. If the query below is indicative, then you are returning distinct “node”, and I think you mean to return distinct n?
02-02-2020 10:25 PM
That's the query which appears when clicking on the label name displayed on the left. Nothing special. Works for other labels, works for other labels containing "".
I'm importing data from CSV using apoc.load.csv.
I've renamed the column to CTRSUMKEY, issue persists.
Removed all "_" from values, issue still present :
02-03-2020 10:16 AM
Might be whitespace before or after it. Try doing this, then checking the values in the Text result view to make sure there's no extra whitespace:
MATCH (n)
WITH n LIMIT 1
RETURN keys(n) as keys
And if it's there and looks correct, maybe copy/paste that to a text file and see if there are any unusual and unexpected characters in there.
02-03-2020 12:12 PM
02-03-2020 12:41 PM
Agreed, something very strange is happening here.
You could try a consistency check of your offline db to see if there's anything off here.
I'm still suspicious about any text anomalies here. You could try these to see if there's anything weird:
See if the key begins with a prefix. If you get a hit, keep extending the prefix and see if it breaks somewhere. (You can also try with ENDS WITH if this breaks right from the start)
MATCH (n)
WITH n LIMIT 1
RETURN [key in keys[n] WHERE key STARTS WITH 'CTR'] as ctrSumKeyProp;
For the row with CTRSUMKEY, check if it think the key name and provided string are equal.
MATCH (n)
WITH n LIMIT 1
UNWIND keys(n) as key
WITH key, 'CTRSUMKEY' as ctrSumKeyProp
RETURN key, ctrSumKeyProp, key = ctrSumKeyProp as isEqual
02-04-2020 12:17 AM
Good morning (if applicable )
I'll check again for inconsistent values.
02-04-2020 07:28 AM
Well.............issue is due to encoding.
Due to a recent update, our server is using "UTF-8-BOM" instead of previously "ANSI".
Quite a strange issue, as it affected only this column.
If needed, i can provide the file, to further investigate.
All the sessions of the conference are now available online