reifydb-client 0.4.13

Official Rust client library for ReifyDB
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
# Copyright (c) reifydb.com 2025
# This file is licensed under the MIT

# Test query with named parameters in MAP
query_named 'MAP { a: $first, b: $second }' 'first=true' 'second=false'
---
> +--------+---------+
> |   a    |    b    |
> +--------+---------+
> |  true  |  false  |
> +--------+---------+
>