vault backup: 2025-03-24 20:39:56
All checks were successful
Update pages on webserver / Update (push) Successful in 5s

This commit is contained in:
themodernhakr 2025-03-24 20:39:56 -05:00
parent 503c2481f3
commit bf821b0649

View File

@ -4,6 +4,22 @@ draft: "false"
--- ---
While working on my Database datapack (still WIP), I knew I'd want to find While working on my Database datapack (still WIP), I knew I'd want to find
# Scenario
## Dataset
```json
[
{
id: 1,
string: "entry1"
},
...
{
id: 500,
string: "entry500"
}
]
```
## Constraints
# One Macro # One Macro
Macros allow us to reach into our array and pick out an entry that matching value in the `string` property. Macros allow us to reach into our array and pick out an entry that matching value in the `string` property.
```ts ```ts