Tweaked README.md

This commit is contained in:
2022-05-07 00:25:30 +10:00
committed by GitHub
parent 42c1e3a0bb
commit fc36138417

View File

@@ -134,6 +134,7 @@ The schema language is a layout of how queries should be made, as well as what c
* type * type
* scalar * scalar
* unique * 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. `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 * update
* delete * delete
* match * match
* typeName (this is a reserved keyword - it is not used in either language, but rather is used internally)
### Create ### Create