freeCodeCamp/guide/english/computer-science/databases/graph-databases/index.md

12 lines
658 B
Markdown
Raw Normal View History

2018-10-12 19:37:13 +00:00
---
title: Graph Databases
---
## Graph Databases
A graph database is a database that uses graph structures for semantic queries with nodes, edges and properties to represent and store data. A key concept of the system is the graph (or edge or relationship), which directly relates data items in the store. The relationships allow data in the store to be linked together directly, and in many cases retrieved with one operation.
#### More Information:
<!-- Please add any articles you think might be helpful to read before writing the article -->
* <a href='https://en.wikipedia.org/wiki/Graph_database' target='_blank' rel='nofollow'>Graph Databases</a>