From c242e5b9f86442bacd5622bd31af4f2e58c607b9 Mon Sep 17 00:00:00 2001 From: Yury Selivanov Date: Wed, 1 Nov 2023 14:41:35 -0700 Subject: [PATCH] Update the README --- README.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 7430667d7..34d952011 100644 --- a/README.md +++ b/README.md @@ -73,12 +73,12 @@ as **object types** containing **properties** connected by **links**. ```elm type Person { - required property name -> str; + required name: str; } type Movie { - required property title -> str; - multi link actors -> Person; + required title: str; + multi actors: Person; } ``` @@ -176,6 +176,8 @@ To start learning about EdgeDB, check out the following resources: - **[The quickstart](https://www.edgedb.com/docs/guides/quickstart)**. If you're just starting out, the 10-minute quickstart guide is the fastest way to get up and running. +- **[EdgeDB Cloud šŸŒ¤ļø](https://www.edgedb.com/cloud)**. The best + most effortless way to host your EdgeDB database in the cloud. - **[The interactive tutorial](https://www.edgedb.com/tutorial)**. For a structured deep-dive into the EdgeQL query language, try the web-based tutorialā€”Ā no need to install anything.