File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed
src/routes/docs/products/databases/queries Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -214,28 +214,28 @@ Returns document if attribute is not equal to any value in the provided array.
214
214
215
215
{% multicode %}
216
216
```client-web
217
- Query.notEqual("title", [ "Iron Man"] )
217
+ Query.notEqual("title", "Iron Man")
218
218
```
219
219
```client-flutter
220
- Query.notEqual("title", [ "Iron Man"] )
220
+ Query.notEqual("title", "Iron Man")
221
221
```
222
222
```python
223
- Query.not_equal("title", [ "Iron Man"] )
223
+ Query.not_equal("title", "Iron Man")
224
224
```
225
225
```ruby
226
- Query.not_equal("title", [ "Iron Man"] )
226
+ Query.not_equal("title", "Iron Man")
227
227
```
228
228
```deno
229
- Query.notEqual("title", [ "Iron Man"] )
229
+ Query.notEqual("title", "Iron Man")
230
230
```
231
231
```php
232
- Query::notEqual("title", [ "Iron Man"] )
232
+ Query::notEqual("title", "Iron Man")
233
233
```
234
234
```swift
235
- Query.notEqual("title", value: [ "Iron Man"] )
235
+ Query.notEqual("title", value: "Iron Man")
236
236
```
237
237
```http
238
- {"method":"notEqual","attribute":"title","values":[ "Iron Man"] }
238
+ {"method":"notEqual","attribute":"title","values":"Iron Man"}
239
239
```
240
240
{% /multicode %}
241
241
You can’t perform that action at this time.
0 commit comments