Skip to content

Commit

Permalink
NL App - Changes in conversation-history api
Browse files Browse the repository at this point in the history
  • Loading branch information
pankajjangid05 committed Mar 10, 2023
1 parent 6a33ad6 commit 40f9cb0
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/main/java/com/uci/dao/repository/XMessageRepository.java
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,9 @@ public interface XMessageRepository extends ReactiveCassandraRepository<XMessage
@AllowFiltering
Mono<Slice<XMessageDAO>> findAllByAppAndTimestampAfterAndTimestampBeforeAndProvider(Pageable paging, String name, Timestamp startDate, Timestamp endDate, String provider);

@AllowFiltering
Mono<Slice<XMessageDAO>> findAllByUserIdInAndFromIdInAndAppAndTimestampAfterAndTimestampBeforeAndProvider(Pageable paging, List<String> listUserId, List<String> listFromId, String name, Timestamp startDate, Timestamp endDate, String provider);

@AllowFiltering
Mono<Slice<XMessageDAO>> findAllByUserIdInAndFromIdInAndTimestampAfterAndTimestampBeforeAndProvider(Pageable paging, List<String> listUserId, List<String> listFromId, Timestamp startDate, Timestamp endDate, String provider);

Expand Down

0 comments on commit 40f9cb0

Please sign in to comment.