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 sitemap_enabled
33 updated_at
34 additonal_sitemap
35 }
36 support_information {
37 id
38 application
39 created
40 created_at
41 updated_at
42 }
43 tags {
44 id
45 attributes
46 content
47 name
48 pages
49 position
50 sub_type
51 type
52 url
53 }
54 }
55}
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 "sitemap_enabled": true,
37 "updated_at": "updated_at",
38 "additonal_sitemap": "additonal_sitemap"
39 },
40 "support_information": {
41 "id": "08a16b83-9094-4e89-8c05-2ccadd5c1c7e",
42 "application": "application",
43 "created": true,
44 "created_at": "created_at",
45 "updated_at": "updated_at"
46 },
47 "tags": [
48 {
49 "id": "08a16b83-9094-4e89-8c05-2ccadd5c1c7e",
50 "attributes": {},
51 "content": "content",
52 "name": "A name",
53 "pages": [
54 {}
55 ],
56 "position": "position",
57 "sub_type": "external",
58 "type": "js",
59 "url": "https://website.com"
60 }
61 ]
62 }
63}