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.
2 parents 5612ec3 + 451cb64 commit 05a4efeCopy full SHA for 05a4efe
README.md
@@ -147,6 +147,27 @@ client
147
.then((res) => console.log(res))
148
.catch((err) => console.error(err));
149
```
150
+
151
+#### Get all contents
152
153
+This function can be used to retrieve all content data.
154
155
+```javascript
156
+client
157
+ .getAllContents({
158
+ endpoint: 'endpoint',
159
+ })
160
+ .then((res) => console.log(res))
161
+ .catch((err) => console.error(err));
162
163
+// with queries
164
165
166
167
+ queries: { filters: 'createdAt[greater_than]2021', orders: '-createdAt' },
168
169
170
171
172
173
#### CREATE API
0 commit comments