Skip to content

Commit

Permalink
remove dbg
Browse files Browse the repository at this point in the history
  • Loading branch information
aqrln committed Jan 8, 2025
1 parent db8fa34 commit 5e33079
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 14 deletions.
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
generator client {
provider = "prisma-client-js"
}

datasource db {
provider = "mongodb"
url = env("DATABASE_URL")
}

type Kattbjorn {
name String
friend Animal
}
generator client {
provider = "prisma-client-js"
}

datasource db {
provider = "mongodb"
url = env("DATABASE_URL")
}

type Kattbjorn {
name String
friend Animal
}
1 change: 0 additions & 1 deletion query-engine/core/src/compiler/translate/query/read.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ pub(crate) fn translate_read_query(query: ReadQuery, ctx: &Context<'_>) -> Trans
ReadQuery::ManyRecordsQuery(mrq) => {
let selected_fields = mrq.selected_fields.without_relations().into_virtuals_last();
let needs_reversed_order = mrq.args.needs_reversed_order();
dbg!(mrq.nested);

// TODO: we ignore chunking for now
let query = query_builder::read::get_records(
Expand Down

0 comments on commit 5e33079

Please sign in to comment.