Skip to content

Commit

Permalink
Update README to use esdl highlighting (#7399)
Browse files Browse the repository at this point in the history
Related to #4893 which can be
closed as it is implemented

closes #4893
  • Loading branch information
Gobot1234 authored Dec 5, 2024
1 parent 4cb730b commit 8509fa1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ Forget foreign keys; tabular data modeling is a relic of an older age, and it
with modern languages. Instead, EdgeDB thinks about schema the same way you do:
as **object types** containing **properties** connected by **links**.

```elm
```esdl
type Person {
required name: str;
}
Expand Down Expand Up @@ -101,7 +101,7 @@ EdgeDB's super-powered query language EdgeQL is designed as a ground-up
redesign of SQL. EdgeQL queries produce rich, structured objects, not flat
lists of rows. Deeply fetching related objects is painless...bye, bye, JOINs.

```elm
```esdl
select Movie {
title,
actors: {
Expand All @@ -115,7 +115,7 @@ EdgeQL queries are also _composable_; you can use one EdgeQL query as an
expression inside another. This property makes things like _subqueries_ and
_nested mutations_ a breeze.

```elm
```esdl
insert Movie {
title := "The Matrix Resurrections",
actors := (
Expand Down

0 comments on commit 8509fa1

Please sign in to comment.