query

applicationContent

Query to get details about application content like blog, faq, faqCategories etc.
Response
announcements
Announcements
List all current announcements in the application.
data_loaders
DataLoaders
List all the data loaders that are enabled for an application.
faq_categories
FAQCategories
List categories for organizing FAQs.
faqs
FAQs
List frequently asked questions and answers.
blogs
Blogs
List all the blogs against an application.
landing_page
LandingPage
Get content of the application's landing page.
legal_information
LeagalInformation
Get legal policies for an application which includes Terms and conditions, return policy, shipping policy and privacy policy.
seo_configuration
SeoSchema
Get search engine optimization configurations of an application. Details include the title, description and an image.
support_information
SupportInformation
Get customer support contact details. Contact Details can be either a phone number or an email-id or both.
Lists HTML tags to power additional functionalities within an application.
navigations
Navigations
Get the navigation link items which can be powered to generate menus on application's website or equivalent mobile apps.
pages
Pages
Lists all Custom Pages.
slideshows
Slideshows
List slideshows along with their details.
custom_fields
CustomFields
List custom fields attached to a particular resource by using the resource.
Query
1query applicationContent {
2 applicationContent {
3 announcements {
4 announcements
5 refresh_pages
6 refresh_rate
7 }
8 landing_page {
9 custom_json
10 id
11 application
12 archived
13 platform
14 slug
15 }
16 legal_information {
17 id
18 application
19 created_at
20 policy
21 returns
22 shipping
23 tnc
24 updated_at
25 }
26 seo_configuration {
27 id
28 app
29 cannonical_enabled
30 created_at
31 robots_txt
32 updated_at
33 }
34 support_information {
35 id
36 application
37 created
38 created_at
39 updated_at
40 }
41 tags {
42 id
43 attributes
44 content
45 name
46 pages
47 position
48 sub_type
49 type
50 url
51 }
52 }
53}
Try it
Response
1{
2 "applicationContent": {
3 "announcements": {
4 "announcements": {},
5 "refresh_pages": [
6 "refresh_pages"
7 ],
8 "refresh_rate": 42
9 },
10 "landing_page": {
11 "custom_json": {},
12 "id": "08a16b83-9094-4e89-8c05-2ccadd5c1c7e",
13 "application": "application",
14 "archived": true,
15 "platform": [
16 "platform"
17 ],
18 "slug": "slug"
19 },
20 "legal_information": {
21 "id": "08a16b83-9094-4e89-8c05-2ccadd5c1c7e",
22 "application": "application",
23 "created_at": "created_at",
24 "policy": "policy",
25 "returns": "returns",
26 "shipping": "shipping",
27 "tnc": "tnc",
28 "updated_at": "updated_at"
29 },
30 "seo_configuration": {
31 "id": "08a16b83-9094-4e89-8c05-2ccadd5c1c7e",
32 "app": "app",
33 "cannonical_enabled": true,
34 "created_at": "created_at",
35 "robots_txt": "robots_txt",
36 "updated_at": "updated_at"
37 },
38 "support_information": {
39 "id": "08a16b83-9094-4e89-8c05-2ccadd5c1c7e",
40 "application": "application",
41 "created": true,
42 "created_at": "created_at",
43 "updated_at": "updated_at"
44 },
45 "tags": [
46 {
47 "id": "08a16b83-9094-4e89-8c05-2ccadd5c1c7e",
48 "attributes": {},
49 "content": "content",
50 "name": "A name",
51 "pages": [
52 {}
53 ],
54 "position": "position",
55 "sub_type": "external",
56 "type": "js",
57 "url": "https://website.com"
58 }
59 ]
60 }
61}