Skip to content

Commit

Permalink
Update array.mdx
Browse files Browse the repository at this point in the history
  • Loading branch information
RaphaelDarley authored Sep 17, 2024
1 parent aaba71b commit ee8f043
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/content/doc-surrealql/functions/database/array.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,7 @@ The following example shows this function, and its output, when used in a [`RETU
```surql
RETURN array::boolean_and(["true", "false", 1, 1], ["true", "true", 0, "true"]);
[true, false, false, true]
[true, true, false, true]
```
For those that take two arrays, missing elements (if one array is shorter than the other) are considered `null` and thus false.

Expand Down

0 comments on commit ee8f043

Please sign in to comment.