We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a02736 commit 30986e6Copy full SHA for 30986e6
src/main/java/com/chat/yourway/repository/jpa/TagRepository.java
@@ -2,10 +2,12 @@
2
3
import com.chat.yourway.model.Tag;
4
import java.util.Set;
5
+import java.util.UUID;
6
+
7
import org.springframework.data.jpa.repository.JpaRepository;
8
import org.springframework.stereotype.Repository;
9
10
@Repository
-public interface TagRepository extends JpaRepository<Tag, Integer> {
11
+public interface TagRepository extends JpaRepository<Tag, UUID> {
12
Set<Tag> findAllByNameIn(Set<String> name);
13
}
0 commit comments