From e73a6657ee4fe8523e4a6d806c1ff702e6b8b7ca Mon Sep 17 00:00:00 2001 From: jbiz805 <49049733+jbiz805@users.noreply.github.com> Date: Wed, 12 Oct 2022 08:37:01 +0900 Subject: [PATCH 1/2] Update README.md - Deleted outdated sentence in 'Graph Visualization tool for AGE' to avoid misunderstanding - Renamed Community to Community-driven Driver - Deleted Apache AGE Python driver in Community-driven Driver since it has already merged into Python driver available in 'Built-in' category. --- README.md | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 01b323b4e..ec286ce9a 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ Also, while the technology can be integrated against many data layers, a graph d - [Use a docker image - official ver.](https://hub.docker.com/r/apache/age) - [Installing from source](https://age.apache.org/#) -## Graph visualization tool for AGE +## Graph Visualization Tool for AGE Apache AGE Viewer is a user interface for Apache AGE that provides visualization and exploration of data. Through this simple web visualization tool, users can enter complex graph queries and explore the results in graph and table forms. @@ -49,8 +49,6 @@ Apache AGE Viewer will become a graph data administration and development platfo - This is a visualization tool. After installing AGE Extension, you may use this tool to get access to the visualization features. -- Follow the instructions on the link to run it. -Under "Connect to Database", select database type as "Apache AGE" ## Documentation @@ -66,9 +64,7 @@ Learn how to install Apache AGE, its features and built-in functions, and how to - [NodeJs driver](./drivers/nodejs) - [Python driver](./drivers/python) -### Community - -- [Apache AGE Python Driver](https://github.com/rhizome-ai/apache-age-python) +### Community-driven Driver - [Apache AGE Rust Driver](https://github.com/Dzordzu/rust-apache-age.git) ## Contribution From 275eba8c3293c135316c08a63d0dbcfd6449fa93 Mon Sep 17 00:00:00 2001 From: jbiz805 <49049733+jbiz805@users.noreply.github.com> Date: Wed, 12 Oct 2022 10:04:17 +0900 Subject: [PATCH 2/2] Update README.md Rearranged some header images and badges alignment --- README.md | 45 ++++++++++++++++++++++++++++++++++----------- 1 file changed, 34 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index ec286ce9a..a23f1154a 100644 --- a/README.md +++ b/README.md @@ -1,14 +1,37 @@ -# [Apache AGE](https://age.apache.org/#) - -[![license badge](https://img.shields.io/github/license/apache/age)](https://github.com/apache/age/blob/master/LICENSE) -[![release badge](https://img.shields.io/badge/Release-v1.1.0-FFA500?labelColor=gray&style=flat&link=https://github.com/apache/age/releases)](https://github.com/apache/age/releases) -[![issue badge](https://img.shields.io/github/issues/apache/age)](https://github.com/apache/age/issues) -[![forks badge](https://img.shields.io/github/forks/apache/age)](https://github.com/apache/age/network/members) -[![stars badge](https://img.shields.io/github/stars/apache/age)](https://github.com/apache/age/stargazers) - - - -Apache AGE is a PostgreSQL Extension that provides graph database functionality. AGE is an acronym for A Graph Extension, and is inspired by Bitnine's AgensGraph, a multimodel database fork of PostgreSQL. The goal of the project is to enable users of Postgres to use graph query modeling in unison with Postgres' existing relational model. +
+ +

+ +

+ +
+ +

+ + + +   + + + +   + + + +   + + + +   + + + +   +

+ +
+ +[Apache AGE](https://age.apache.org/#) is a PostgreSQL Extension that provides graph database functionality. AGE is an acronym for A Graph Extension, and is inspired by Bitnine's AgensGraph, a multimodel database fork of PostgreSQL. The goal of the project is to enable users of Postgres to use graph query modeling in unison with Postgres' existing relational model. A graph consists of a set of vertices (also called nodes) and edges, where each individual vertex and edge possesses a map of properties. A vertex is the basic object of a graph, that can exist independently of everything else in the graph. An edge creates a directed connection between two vertices. A graph database is simply composed of vertices and edges. This type of database is useful when the meaning is in the relationships between the data. Relational databases can easily handle direct relationships, but indirect relationships are more difficult to deal with in relational databases. A graph database stores relationship information as a first-class entity. Apache AGE gives you the best of both worlds, simultaneously.