From fc36138417dfc68c3545f300604d7721beaad241 Mon Sep 17 00:00:00 2001 From: Kayne Ruse Date: Sat, 7 May 2022 00:25:30 +1000 Subject: [PATCH] Tweaked README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a59e2a5..2b1b66b 100644 --- a/README.md +++ b/README.md @@ -134,6 +134,7 @@ The schema language is a layout of how queries should be made, as well as what c * type * scalar * unique +* typeName (this is a reserved keyword - it is not used in either language, but rather is used internally) `type` is used for defining new compound types. `scalar` is for defining new scalar types, such as `Date`. `unique` is a modifier on a field, indicating that it is unique in the database. @@ -180,7 +181,6 @@ The fields can be altered as well, using the query language's built-in keywords: * update * delete * match -* typeName (this is a reserved keyword - it is not used in either language, but rather is used internally) ### Create