Skip to content

Commit c70a315

Browse files
committed
Clean md
1 parent 0037e6a commit c70a315

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -118,10 +118,10 @@ const (
118118

119119
## isStatic / isField Properties
120120

121-
- isStatic: boolean
121+
- isStatic: (boolean)
122122
isStatic is used to set the value of the clause. If true, the value will not be parsed to parameters. However, if false, the opposite will occur. This is typically used in where statements.
123123

124-
- isField: boolean
124+
- isField: (boolean)
125125
isField is used to set a field so that it does not use single quotes. For example, if you describe a function and do not use isField, it will look like this: COUNT('field'). However, if you use isField, it will look like this: COUNT(field).
126126

127127
## JSON Format
@@ -167,7 +167,7 @@ In general, the structure of the JSON format used is as follows:
167167

168168
There you can see there is a subquery, you can use a subquery with the same format as its parent, you can also describe a field with an alias in the selection field.
169169

170-
> **_NOTE:_** If you are using a subquery, you don't need to describe the data type
170+
> **_NOTE:_** If you are using a subquery, you don't need to describe the datatype property
171171
172172
- **_join_**:
173173
You can use join to combine multiple tables, an example is as follows:
@@ -296,7 +296,7 @@ In general, the structure of the JSON format used is as follows:
296296
]
297297
}
298298
```
299-
**orderBy, limit, offset**:
299+
- **orderBy, limit, offset**:
300300
```json
301301
{
302302
"orderBy": {

0 commit comments

Comments
 (0)