File tree Expand file tree Collapse file tree 2 files changed +14
-3
lines changed Expand file tree Collapse file tree 2 files changed +14
-3
lines changed Original file line number Diff line number Diff line change @@ -20,11 +20,12 @@ breaking changes.
20
20
21
21
22
22
23
- ## \[ 0.3.18\] - 2022-12-30
23
+ ## \[ 0.3.18\] - 2023-01-05
24
24
25
25
### Added
26
26
27
- - All fields are now indexed by default. This means that all fields can be queried and sorted without defining an explicit index.
27
+ - All fields are now indexed by default. This means that all fields can be queried and sorted without defining an explicit index
28
+ - Added ` boolean ` type to Polylang
28
29
29
30
30
31
## \[ 0.3.16\] - 2022-12-30
Original file line number Diff line number Diff line change @@ -111,7 +111,17 @@ collection CollectionName {
111
111
}
112
112
```
113
113
114
- <Info >Additional types such as arrays, maps and dates will be added soon.</Info >
114
+ #### Field Types
115
+
116
+ The following types are supported:
117
+
118
+ - ` string `
119
+ - ` number `
120
+ - ` boolean `
121
+ - ` string[] ` , ` number[] ` and ` boolean[] `
122
+ - ` map<string | number, T> `
123
+
124
+ <Info >Additional types such as dates will be added soon.</Info >
115
125
116
126
#### Optional Fields
117
127
You can’t perform that action at this time.
0 commit comments