FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
contentstack-ios/Contentstack/QueryResult.h at development · contentstack/contentstack-ios · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
contentstack
/
contentstack-ios
Public
Notifications
You must be signed in to change notification settings
Fork
2
Star
3
Code
Issues
0
Pull requests
1
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
contentstack-ios
/
Contentstack
/
QueryResult.h
Copy path
More file actions
More file actions
Latest commit
History
History
History
executable file
·
105 lines (81 loc) · 2.97 KB
Breadcrumbs
contentstack-ios
/
Contentstack
/
QueryResult.h
Copy path
File metadata and controls
executable file
·
105 lines (81 loc) · 2.97 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
//
//
QueryResult.h
//
Contentstack
//
//
Created by Reefaq on 11/07/15.
//
Copyright (c) 2015 Contentstack. All rights reserved.
//
#
import
<
Foundation/Foundation.h
>
#
import
<
Contentstack/ContentstackDefinitions.h
>
BUILT_ASSUME_NONNULL_BEGIN
@class
ContentType;
@class
Taxonomy;
@class
Entry;
@interface
QueryResult
:
NSObject
- (
instancetype
)
init
UNAVAILABLE_ATTRIBUTE;
//
- (BUILT_NULLABLE NSArray<Entry *> *)getResult;
- (
instancetype
)
initWithTaxonomy
:
(Taxonomy*)
taxonomy
objectDictionary
:
(
NSDictionary
*)
dictionary
;
//
MARK: Result -
/*
*---------------------------------------------------------------------------------------
* @name Result
* ---------------------------------------------------------------------------------------
*/
/*
*
@abstract Get array of entries returned by Query.
//Obj-C
[blogQuery execInBackground:^(ResponseType type, QueryResult *result, NSError *error) {
NSArray *result = [result getResult];// get all result in array
}];
//Swift
blogQuery.execInBackground { (responseType, result!, error!) -> Void in
var results:Array = result.getResult()
}
@return Returns an array of entries returned by Query.
*/
- (
BUILT_NULLABLE
NSArray
<Entry *> *)
getResult
;
/*
*
@abstract Gets the schema of objects returned by Query alongwith objects themselves.
//Obj-C
[projectQuery execInBackground:^(ResponseType type, QueryResult *result, NSError *error) {
NSArray *result = [result schema];
}];
//Swift
projectQuery.execInBackground { (ResponseType, QueryResult!, NSError!) -> Void in
var schema:Array = QueryResult.schema()
}
@return Returns schemas.
*/
- (
BUILT_NULLABLE
NSArray
*)
schema
;
/*
*
@abstract Gets the content type of objects returned by Query alongwith objects themselves.
//Obj-C
[projectQuery execInBackground:^(ResponseType type, QueryResult *result, NSError *error) {
NSDictionary *result = [result content_type];
}];
//Swift
projectQuery.execInBackground { (ResponseType, QueryResult!, NSError!) -> Void in
var schema:NSDictionary = QueryResult.content_type()
}
@return Returns content type.
*/
- (
BUILT_NULLABLE
NSDictionary
*)
content_type
;
//
MARK: Count -
/*
*---------------------------------------------------------------------------------------
* @name Count
* ---------------------------------------------------------------------------------------
*/
/*
*
@abstract Count of number of entries returned by Query alongwith entries themselves.
//Obj-C
[blogQuery execInBackground:^(ResponseType type, QueryResult *result, NSError *error) {
NSInteger totalCount = [result totalCount];// totalcount
}];
//Swift
blogQuery.execInBackground { (responseType, result!, error!) -> Void in
var total:Int = result.totalCount()
}
@return Returns the count of number of object returned by Query.
*/
- (
NSInteger
)
totalCount
;
@end
BUILT_ASSUME_NONNULL_END
Back
|
FazBrowse Home
|
New Git URL