Skip to content

Commit

Permalink
fix: add missing case in From<&str> for QueryTag
Browse files Browse the repository at this point in the history
  • Loading branch information
jacek-prisma committed Dec 20, 2024
1 parent 5466add commit c5d6145
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions query-engine/schema/src/query_schema.rs
Original file line number Diff line number Diff line change
Expand Up @@ -304,6 +304,7 @@ impl From<&str> for QueryTag {
"createManyAndReturn" => Self::CreateManyAndReturn,
"updateOne" => Self::UpdateOne,
"updateMany" => Self::UpdateMany,
"updateManyAndReturn" => Self::UpdateManyAndReturn,
"deleteOne" => Self::DeleteOne,
"deleteMany" => Self::DeleteMany,
"upsertOne" => Self::UpsertOne,
Expand Down

0 comments on commit c5d6145

Please sign in to comment.