From f6c7cb0c154839611b1e68289648fde7b750870f Mon Sep 17 00:00:00 2001 From: imabdulbasit Date: Wed, 2 Aug 2023 22:53:21 +0500 Subject: [PATCH] Fix collection mint query --- core/src/collection_mints.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/core/src/collection_mints.rs b/core/src/collection_mints.rs index 7b5e059..a7deac3 100644 --- a/core/src/collection_mints.rs +++ b/core/src/collection_mints.rs @@ -53,7 +53,6 @@ impl CollectionMint { let conn = db.get(); Entity::find() - .join(JoinType::InnerJoin, Relation::Collections.def()) .find_also_related(collections::Entity) .filter(Column::Id.eq(id)) .one(conn)