select!() { /* proc-macro */ }Expand description
prax::select! — schema-aware shape macro returning a
<Model>Select value. Composes with the read macros via ..spread.
ⓘ
let lite = prax::select!(User, { id: true, email: true });
let _ = prax::find_many!(client.user, {
select: { ..lite },
});