Alexander Litvinenko

Results 5 comments of Alexander Litvinenko

Hi, Let me share my solution: I do not rename files but use symbolic links with name understandable by plex. My Plex Media server is pointed to directory with symbolic...

Hi, `neomodel.DateTimeProperty` expects `float` but you provided `str`.

Try my example: ```python class Meet(StructuredNode): notes = StringProperty() meet_datetime = DateTimeProperty() Meet(notes='test1', meet_datetime=datetime.now()).save() Meet(notes='test2', meet_datetime=datetime.now()).save() m = Meet.nodes.all() print(m) ``` Printed: [, ] Then cypher: `match (n:Meet) return n.notes,...

Try this: ```cypher CREATE (n:Meet) SET n.notes = 'test 3' SET n.meet_datetime = datetime().epochSeconds return n ``` This is how to turn obscure float into pretty datetime string: `match (n:Meet)...