Skip to content

Commit c7499da

Browse files
author
Olha Danylova
authored
Merge pull request #226 from olgadanylova/master
BKNDLSS-18028
2 parents c5ee12c + 4d81ac9 commit c7499da

File tree

14 files changed

+123
-2
lines changed

14 files changed

+123
-2
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# RELEASE HISTORY
22

3+
## -
4+
* added support of sortBy and properties for LoadRelationsQueryBuilder
5+
36
## 5.2.12 March, 26 2019
47
* podspec updated to support Socket.IO v14.0.0
58

SDK/backendlessAPI/Classes/Persistence/LoadRelationsQueryBuilder.h

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,14 @@
3535
-(instancetype) preparePreviousPage;
3636
-(NSMutableArray<NSString*> *)getRelationType;
3737

38+
-(NSMutableArray<NSString*> *)getProperties;
39+
-(instancetype)setProperties:(NSArray<NSString*> *)properties;
40+
-(instancetype)addProperty:(NSString *)property;
41+
-(instancetype)addProperties:(NSArray<NSString *> *)properties;
42+
43+
-(NSMutableArray<NSString *> *)getSortBy;
44+
-(instancetype)setSortBy:(NSArray<NSString *> *)sortBy;
45+
-(instancetype)addSortBy:(NSString *)sortBy;
46+
-(instancetype)addListSortBy:(NSArray<NSString *> *)sortBy;
47+
3848
@end

0 commit comments

Comments
 (0)