Good series. As a SQL convert, you are making the conversion easy...nice job!
@salocinhawk5 жыл бұрын
Patiently waiting for the next episode
@Saschaborg6 жыл бұрын
The logic operation capabilities are just amazing! I like :-)
@chrisogonas5 жыл бұрын
Thanks lots for this useful helpful series. Superb!
@saisuryateja49523 жыл бұрын
Thank you for the wonderful series its just amazing....!
@erfelipe6 ай бұрын
Great.
@Melodicminority6 жыл бұрын
Good stuff, thank you for the nice video series. I'd love to see more, keep up the good work!
@ryguyrg6 жыл бұрын
Thanks Kai!
@evraya14 жыл бұрын
Ryan Boyd from this point even short explanations in Notion will be sufficient - it's fast and easy to put info in Notion and easy to digest later. Like step by step knowledge building series of pieces. May be even with RemNote cards for better learning. I guess I want too much at this point :-)
@tendekaichitiyo60414 жыл бұрын
From a totally new person who was has only basic SQL and found it quite intimidating - very simply and patiently explained. Thanks Ryan. Please can you confirm if they're more videos in this series?
@VishnuASankaran6 жыл бұрын
Pretty neat series!! Great way to start of with graph DB
@petizoyiyo46652 жыл бұрын
Thanks, 10:24 what is it 'a.name'? 'a' is a person? Sorry, i don not speak English very well
@iloveYahuah5 жыл бұрын
Thank you for you videos and training support!
@gwawrz16 жыл бұрын
Very good series! Thank you!
@FredoCorleone5 жыл бұрын
This Neo4j is awesome!
@saisuryateja49523 жыл бұрын
@Ryan Boynd sir 7th episode is released in you tube?
@neo4j3 жыл бұрын
This is the last of this series! Maybe our AuraDB Live Stream series is interesting for you to watch next: kzbin.info/www/bejne/eoDInWqlf8inrc0
@anilgupta48012 жыл бұрын
Good Series , however I am not able to find next videos of this series
@neo4j2 жыл бұрын
this was the last of the series. In the meantime we have a few newer series you can watch: Discover Aura: kzbin.info/www/bejne/p5Wlkn2vfN16n8k Neo4j Live: kzbin.info/www/bejne/gqOWp2VonLycrsU
@Galaxy0836 жыл бұрын
Thanks for the video. FYI, looks like there is a slight mistake in the regex expression. It should have been '^K.+' for 'Starts with..'
@robyp5 жыл бұрын
also on the regular expression, the .+ does not mean zero or one character, it means at least one character
@_Arv_5 жыл бұрын
K followed by zero or one character would look like "K.?"
@saisuryateja49523 жыл бұрын
where is the 7th episode video i am not getting it ?
@neo4j2 жыл бұрын
Hi, this was the last episode of this series. We have new series on AuraDB ( kzbin.info/www/bejne/gIapZWCwhdienqc ) or Graph Data Science ( kzbin.info/www/bejne/hJrcpGmda7N5nNk ) for you to watch!
@benogidan6 жыл бұрын
Keep it up :) how regularly do you guys do these?
@neo4j6 жыл бұрын
We have lots of video content. 710 videos over a few years. These videos are a variety of types of content though: online meetups (a few times a month), webinars (a few times a month), screencasts, conference talks, interviews, etc. As for this particular series, we are hoping to continue with another few episodes over the next month or so. Our team also just launched an APOC video series too just yesterday!
@jd_addy4 жыл бұрын
Please try putting important links in the description next time. It would be much appreciated.
@russeldegener7015 жыл бұрын
anyone else pleased by the matrix references? APOC vs Cypher?
@thundaGawd6 жыл бұрын
Please upload more :)
@maverickstclare37565 жыл бұрын
I've watched all these and I'm still in the dark as to why I should invest time in Neo4j
@neo4j5 жыл бұрын
1) When you want a more natural query language to use for querying relationships. Cypher is often cited as being much preferred to SQL for these types of queries. 2) When you want faster performance querying relationships. SQL databases will use index lookups for each JOIN operation. They're very expensive when you're performing many JOINs in the same query. Alternatively, Neo4j stores the relationships at write time, and allows traversing over these relationships via simple pointer arithmetic (sometimes referred to as 'index-free adjacency), which is much more performant and allows you to execute queries with 'many hops' in real-time. This isn't typically possible with SQL JOINs unless you denormalize all your data, but then you lose a lot of other benefits of the database. 3) When you want a schema-optional environment for working with highly connected data. Many developers feel constrained by needing to specify a strict schema up front in SQL databases. We have hundreds of enterprise customers and tens of thousands of other developers who have found these to be good reasons to invest time in learning Neo4j. Of course, if you're happy with your current tech stack and don't have any problems you're trying to solve, then there's no need to learn anything new.
@maverickstclare37565 жыл бұрын
I really wish you had introduced some detail into this introduction such as importing a 10k CSV file and showing me something concrete. We can all index at write time to trade for query time look-ups. I still don't see why you think that's special.