Posts by Matheus C O Santos • 21 points
3 posts
-
0
votes2
answers65
viewsQ: How to make a filter with != or Isnotiqualto in the Firestore?
Hello! I need to make an appointment with filter on firestore but I read in the documentation that they do not have "!=" or "Isnotiqualto" to create a restriction. I wanted to do something like:…
-
2
votes1
answer471
viewsA: Findby with nested object - Spring Data JPA
Corrected using: @Repository public interface LivroRepository extends JpaRepository<Livro, Long> { List<Livro> findByUsuarioEmail(String email); }
-
0
votes1
answer471
viewsQ: Findby with nested object - Spring Data JPA
I’m having a doubt when creating a findBy using jpa with atríbuto of a nested object, the classes are: public class Livro { @Id @GeneratedValue(strategy = GenerationType.IDENTITY) private Long id;…