Skip to content

Instantly share code, notes, and snippets.

View anuraggautam77's full-sized avatar
😄
happy coding

Anurag G anuraggautam77

😄
happy coding
View GitHub Profile
@anuraggautam77
anuraggautam77 / README.md
Created April 24, 2021 14:51 — forked from joyrexus/README.md
Vanilla JS equivalents of jQuery methods

Sans jQuery

Events

// jQuery
$(document).ready(function() {
  // code
})
@anuraggautam77
anuraggautam77 / neo4j_cypher_cheatsheet.md
Created July 29, 2018 10:39 — forked from DaniSancas/neo4j_cypher_cheatsheet.md
Neo4j's Cypher queries cheatsheet

Neo4j Tutorial

Fundamentals

Store any kind of data using the following graph concepts:

  • Node: Graph data records
  • Relationship: Connect nodes (has direction and a type)
  • Property: Stores data in key-value pair in nodes and relationships
  • Label: Groups nodes and relationships (optional)