Ahmed Mohamed

Results 5 comments of Ahmed Mohamed

Yes, you can by using WSL. Follow this [blog](https://dev.to/omarsaad/step-by-step-guide-to-install-postgresql-apache-age-on-windows-28gf) will help you

Summary of the first 3 chapters in 'Internals of PostgreSQL' book chapter 1: https://dev.to/ahmedmohamed/a-quick-recap-for-chapter-1-in-the-internals-of-postgresql-book-fl5 chapter 2: https://dev.to/ahmedmohamed/a-quick-recap-for-chapter-2-in-the-internals-of-postgresql-book-img chapter 3: https://dev.to/ahmedmohamed/a-quick-recap-for-chapter-3-in-the-internals-of-postgresql-book-1ap0

if you checked [models.py](https://github.com/rhizome-ai/apache-age-python/blob/main/age/models.py) file you will not find Model class So, check import statement is written correctly

In Age deleting an edge doesn't require deleting its vertices to know more about DELETE clause refer to the [documentation](https://age.apache.org/age-manual/v0.6.0/clauses/delete.html)

Using MATCH clause without a specific id for the nodes and after that using SET clause you can modify the properties. e.g. ```sql MATCH (n:label4) WHERE n.property = 'value' SET...