Skip to main content

Posts

Showing posts from March 30, 2024

GraphQL with Graph Database

Graph theory is a branch of mathematics that studies graphs, which are mathematical structures that model relationships between objects. A graph is made up of vertices that are connected by edges. You can find out more about graph theory here https://en.wikipedia.org/wiki/Graph_theory A connected graph is a graph where every pair of vertices is connected, meaning there is a path between them. A graph is also called disconnected if it is not connected. A connected graph may have a minimum number of edges or vertices that need to be removed to separate the vertices. A graph that has vertices removed is called a vertex-connected graph, while a graph that has edges removed is called an edge-connected graph.  GraphQL: The Flexible API Query Language - What it is: GraphQL is a query language specifically designed for APIs that expose data structured as a graph (like knowledge graphs). - Key Features:     - Client-Driven: Clients specify the exact data they need, unlike tra...