Guest User

Untitled

a guest
Apr 20th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. MATCH (s:Product {id:'4538875'})-[r]-> (o:Attributes)
  2. WHERE any(key in keys(o) WHERE o[key] contains 'type-c')
  3. return o
  4.  
  5. WITH [1,2,3,'abc'] as array,
  6. 'abc' as string
  7. RETURN REDUCE(res='', e in [] + array | res + e) as arrayToString,
  8. REDUCE(res='', e in [] + string | res + e) as testStringToString
Add Comment
Please, Sign In to add comment