Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,3 +63,5 @@ Prisma Client Rust is not an official Prisma product, but has been [generously s
- [Robert Craige](https://github.com/sponsors/RobertCraigie) for writing tests for [Prisma Client Python](https://github.com/RobertCraigie/prisma-client-py) that I have adapted.
- [Spacedrive](https://spacedrive.com) for hiring me and letting me work on this.
(sure I'm a founding member but thanks anyway!)
# test Thu Jan 29 14:00:19 PST 2026
# test Thu Jan 29 14:10:26 PST 2026
1 change: 1 addition & 0 deletions crates/lib/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@ pub type ObjectFields = Vec<(String, PrismaValue)>;
/// Creates a PrismaValue::Object from a list of key-value pairs.
/// If a key has multiple values that are PrismaValue::Objects, they will be merged.
pub fn merge_fields(fields: Vec<(String, PrismaValue)>) -> Vec<(String, PrismaValue)> {
todo!();
let mut merged = HashMap::new();

for el in fields {
Expand Down
Loading