diff --git a/components/blocks/Features.tsx b/components/blocks/Features.tsx index eb5786a39..e5a222638 100644 --- a/components/blocks/Features.tsx +++ b/components/blocks/Features.tsx @@ -252,14 +252,14 @@ export const FeatureVideo = ({ src, className = '' }) => { loop muted playsInline - poster={`https://res.cloudinary.com/forestry-demo/video/upload/so_0/${src}.jpg`} + poster={`${src}`} > diff --git a/components/blocks/Hero.tsx b/components/blocks/Hero.tsx index cc1e3940a..5c215e8a7 100644 --- a/components/blocks/Hero.tsx +++ b/components/blocks/Hero.tsx @@ -106,14 +106,14 @@ export const Video = ({ src, className }) => { loop muted playsInline - poster={`https://res.cloudinary.com/forestry-demo/video/upload/so_0/${src}.jpg`} + poster={`${src}`} > diff --git a/components/blocks/HeroForm.tsx b/components/blocks/HeroForm.tsx index bafee416d..c4c8d7c8a 100644 --- a/components/blocks/HeroForm.tsx +++ b/components/blocks/HeroForm.tsx @@ -82,14 +82,14 @@ export const Video = ({ src }) => { loop muted playsInline - poster={`https://res.cloudinary.com/forestry-demo/video/upload/so_0/${src}.jpg`} + poster={`${src}`} > diff --git a/components/blocks/Story.tsx b/components/blocks/Story.tsx index 1eaae8090..7d17ca3df 100644 --- a/components/blocks/Story.tsx +++ b/components/blocks/Story.tsx @@ -184,14 +184,14 @@ const Video = ({ src }) => { loop muted playsInline - poster={`https://res.cloudinary.com/forestry-demo/video/upload/so_0,q_70,h_410/${src}.jpg`} + poster={`${src}`} > diff --git a/components/tinaMarkdownComponents/docAndBlogComponents.tsx b/components/tinaMarkdownComponents/docAndBlogComponents.tsx index b6e609226..4609a893e 100644 --- a/components/tinaMarkdownComponents/docAndBlogComponents.tsx +++ b/components/tinaMarkdownComponents/docAndBlogComponents.tsx @@ -4,287 +4,311 @@ import { useState } from 'react'; import { BiRightArrowAlt } from 'react-icons/bi'; import { FaMinus, FaPlus } from 'react-icons/fa'; import { FiLink } from 'react-icons/fi'; -import { - Components, - TinaMarkdown, -} from 'tinacms/dist/rich-text'; +import { Components, TinaMarkdown } from 'tinacms/dist/rich-text'; import { getDocId } from 'utils/docs/getDocIds'; import { WarningCallout } from 'utils/shortcodes'; import { Prism } from '../styles/Prism'; export const docAndBlogComponents: Components<{ - Iframe: { iframeSrc: string; height: string } - Youtube: { embedSrc: string;} - CreateAppCta: { ctaText: string; cliText: string } - GraphQLCodeBlock: { query: string, response: string, preselectResponse: boolean } - Callout: { - title: string - description: string - url: string - buttonText: string - } - WarningCallout: { body: string } - Codesandbox: { embedSrc: string; title: string } - Diagram: { alt: string; src: string } - WideImage: { alt: string; src: string } - CustomFieldComponentDemo: {} - CloudinaryVideo: { src: string } - Button: { link: string; label: string } - ImageAndText: { docText: string; image: string } - Summary: { heading: string; text: string } - - }> = { - ImageAndText: (props) => { - return ( -
-
- {' '} - {' '} -
-
- image -
-
- ) - }, - - Summary: (props) => { - const [openTab, setOpenTab] = useState(false) - - const handleToggle = () => { - setOpenTab(!openTab) - } - - - - return ( -
-
- - {openTab && ( -
- -
- )} + Iframe: { iframeSrc: string; height: string }; + Youtube: { embedSrc: string }; + CreateAppCta: { ctaText: string; cliText: string }; + GraphQLCodeBlock: { + query: string; + response: string; + preselectResponse: boolean; + }; + Callout: { + title: string; + description: string; + url: string; + buttonText: string; + }; + WebmEmbed: { embedSrc: string; width?: string }; + WarningCallout: { body: string }; + Codesandbox: { embedSrc: string; title: string }; + Diagram: { alt: string; src: string }; + WideImage: { alt: string; src: string }; + CustomFieldComponentDemo: {}; + CloudinaryVideo: { src: string }; + Button: { link: string; label: string }; + ImageAndText: { docText: string; image: string }; + Summary: { heading: string; text: string }; +}> = { + ImageAndText: (props) => { + return ( +
+
+ {' '} + {' '}
- ) - }, - - h1: (props) => , - h2: (props) => , - h3: (props) => , - h4: (props) => , - h5: (props) => , - h6: (props) => , - ul: (props) =>
    , - ol: (props) =>
      , - li: (props) =>
    1. , - - Iframe: ({ iframeSrc, height }) => { - return (
      -
      - ), - CreateAppCta: ({ ctaText, cliText }) => ( - <> - - {ctaText} - - -
      { + const [openTab, setOpenTab] = useState(false); + + const handleToggle = () => { + setOpenTab(!openTab); + }; + + return ( +
      +
      +
      - - ), - WarningCallout: ({ body }) => , - Callout: ({ title, description, url, buttonText }) => ( -
      - Tina laptop -
      -

      {title}

      -

      {description}

      - - {buttonText} - - - - -
      +

      {props.heading}

      + {openTab ? : } + + {openTab && ( +
      + +
      + )}
      - ), - Codesandbox: ({ embedSrc, title }) => ( + ); + }, + + h1: (props) => , + h2: (props) => , + h3: (props) => , + h4: (props) => , + h5: (props) => , + h6: (props) => , + ul: (props) =>
        , + ol: (props) =>
          , + li: (props) =>
        1. , + + Iframe: ({ iframeSrc, height }) => { + return (
          - + +
          + ), + CreateAppCta: ({ ctaText, cliText }) => ( + <> + - ), - WideImage: ({ alt, src }) => ( + > + {ctaText} + + +
          + {cliText} +
          + + ), + WarningCallout: ({ body }) => , + Callout: ({ title, description, url, buttonText }) => ( +
          {alt} +
          +

          {title}

          +

          {description}

          + + {buttonText} + + + + +
          +
          + ), + Codesandbox: ({ embedSrc, title }) => ( +
          + +
          + ), + Diagram: ({ alt, src }) => ( + {alt} + ), + WideImage: ({ alt, src }) => ( + {alt} + ), + // @ts-ignore TODO: fix this in TinaCMS + code_block: ({ value, lang, children }) => { + return ( + - ), - // @ts-ignore TODO: fix this in TinaCMS - code_block: ({ value, lang, children }) => { - return ( - - ) - }, - GraphQLCodeBlock: ({ query, response, preselectResponse }) => { - return { + return ( + - }, - CustomFieldComponentDemo: () => ( - - ), - CloudinaryVideo: ({ src }) => ( - - ), - Button: ({ link, label }) => ( - - ), - } - - function FormatHeaders({ children, level }) { - const HeadingTag = `h${level}` as any - const id = getDocId(children.props.content.map(content => content.text).join('')) - - const currentUrl = typeof window !== 'undefined' ? window.location.pathname : ''; - const linkHref = `${currentUrl}#${id}`; - - return ( - - - {children} - - - ); - } \ No newline at end of file + }, + CustomFieldComponentDemo: () => ( + + ), + CloudinaryVideo: ({ src }) => ( + + ), + Button: ({ link, label }) => ( + + ), +}; + +function FormatHeaders({ children, level }) { + const HeadingTag = `h${level}` as any; + const id = getDocId( + children.props.content.map((content) => content.text).join('') + ); + + const currentUrl = + typeof window !== 'undefined' ? window.location.pathname : ''; + const linkHref = `${currentUrl}#${id}`; + + return ( + + + {children} + + + + ); +} diff --git a/components/ui/Video.tsx b/components/ui/Video.tsx index 91c87a08d..0ada77e54 100644 --- a/components/ui/Video.tsx +++ b/components/ui/Video.tsx @@ -14,14 +14,14 @@ export const Video = styled(({ src, autoPlay, ...styleProps }: VideoProps) => { loop muted playsInline - poster={`https://res.cloudinary.com/forestry-demo/video/upload/so_0/${src}.jpg`} + poster={`${src}`} > diff --git a/content/blocksPages/editorial-workflow.json b/content/blocksPages/editorial-workflow.json index 550ee3dc9..a9ddf3a56 100644 --- a/content/blocksPages/editorial-workflow.json +++ b/content/blocksPages/editorial-workflow.json @@ -9,7 +9,7 @@ "text": "Review, approve, and manage content changes with version control", "media": [ { - "src": "v1689260393/blog-media/editorial-workflow/create-branch", + "src": "/video/create-branch.webm", "_template": "video" } ], diff --git a/content/blocksPages/home.json b/content/blocksPages/home.json index a8d52ac1d..f55f3b722 100644 --- a/content/blocksPages/home.json +++ b/content/blocksPages/home.json @@ -26,7 +26,7 @@ ], "media": [ { - "src": "tina-io/new-homepage/homepage-demo-2", + "src": "/img/docs/introduction/homepage-demo-2.webm", "_template": "video" } ] @@ -138,7 +138,7 @@ "headline": "Visual Editing", "text": "See content changes in real-time as you edit", "icon2": "FaClock", - "videoSrc": "https://res.cloudinary.com/forestry-demo/video/upload/v1729060174/tinaio-webm/2024-09-13-key-features-visual-editing-v3_pwfxyo.webm", + "videoSrc": "/video/key-features/2024-09-13-key-features-visual-editing-v3.webm", "button": { "label": "READ MORE", "icon": true, @@ -151,7 +151,7 @@ "headline": "Open Source", "text": "Tina is licensed under Apache 2.0. It can be self-hosted or hosted on TinaCloud", "icon2": "FaUnlock", - "videoSrc": "https://res.cloudinary.com/forestry-demo/video/upload/v1729060169/tinaio-webm/2024-09-13-key-features-open-source_f57aej.webm", + "videoSrc": "/video/key-features/2024-09-13-key-features-open-source.webm", "button": { "label": "READ MORE", "icon": true, @@ -164,7 +164,7 @@ "headline": "Develop Locally", "text": "Easily set up and run Tina locally to talk to your local filesystem", "icon2": "FaCodeBranch", - "videoSrc": "https://res.cloudinary.com/forestry-demo/video/upload/v1729060183/tinaio-webm/2024-09-19-key-features-local_xxqx30.webm", + "videoSrc": "/video/key-features/2024-09-19-key-features-local.webm", "button": { "label": "READ MORE", "icon": true, @@ -177,7 +177,7 @@ "headline": "3rd Party Media", "text": "Store Media assets is your repo or connect to S3, Cloudinary, DigitalOcean Spaces, etc. Or, use TinaCloud", "icon2": "FaCloudDownloadAlt", - "videoSrc": "https://res.cloudinary.com/forestry-demo/video/upload/v1729060179/tinaio-webm/2024-09-19-key-features-3rd-party-media_wyjzwm.webm", + "videoSrc": "/video/key-features/2024-09-19-key-features-3rd-party-media.webm", "button": { "label": "READ MORE", "icon": true, @@ -190,7 +190,7 @@ "headline": "Control your Components", "text": "Use pre-built templates or create custom components from scratch - you have full control to build your site how you want", "icon2": "FaPuzzlePiece", - "videoSrc": "https://res.cloudinary.com/forestry-demo/video/upload/v1729060150/tinaio-webm/2024-09-13-key-features-control-components_fnakly.webm", + "videoSrc": "/video/key-features/2024-09-13-key-features-control-components.webm", "button": { "label": "READ MORE", "icon": true, @@ -203,7 +203,7 @@ "headline": "Markdown at Scale", "text": "Tina powers super-fast sites with 10,000+ pages using Markdown, the best language for your site content", "icon2": "FaMarkdown", - "videoSrc": "https://res.cloudinary.com/forestry-demo/video/upload/v1729060165/tinaio-webm/2024-09-13-key-features-markdown_dhrwjy.webm", + "videoSrc": "/video/key-features/2024-09-13-key-features-markdown.webm", "button": { "label": "READ MORE", "icon": true, @@ -216,7 +216,7 @@ "headline": "Git Integration", "text": "Users can edit, save changes, and request approval from within the UI - while devs see the branches, commits, and pull requests in GitHub", "icon2": "FaGithub", - "videoSrc": "https://res.cloudinary.com/forestry-demo/video/upload/v1729060160/tinaio-webm/2024-09-13-key-features-github-integration_pcyz2i.webm", + "videoSrc": "/video/key-features/2024-09-13-key-features-github-integration.webm", "button": { "label": "READ MORE", "icon": true, @@ -229,7 +229,7 @@ "headline": "Easy Documentation", "text": "Tina's docs run on TinaCMS - check it out!", "icon2": "FaFileAlt", - "videoSrc": "https://res.cloudinary.com/forestry-demo/video/upload/v1729060155/tinaio-webm/2024-09-13-key-features-docs_v2zbci.webm", + "videoSrc": "/video/key-features/2024-09-13-key-features-docs.webm", "button": { "label": "READ MORE", "icon": true, @@ -488,7 +488,7 @@ { "title2": "\"Tina is transforming the way we do docs at Unity\"", "subtext": "Anton Iancu, Product Engineering Manager for AI and Docs", - "logo": "https://res.cloudinary.com/forestry-demo/image/upload/v1693503685/tina-io/new-homepage/unity-logo.png", + "logo": "/img/logos/unity-logo.png", "_template": "quote" }, { @@ -496,7 +496,7 @@ { "name": "Boko Colse", "username": "struhy_xd", - "avatar": "https://res.cloudinary.com/forestry-demo/image/upload/v1696342922/testimonials/avatars/Boko-C%CC%8Colse_um356c.jpg", + "avatar": "/img/avatars/Boko-Čolse_um356c.jpg", "date": "2023-09-26T03:00:00.000Z", "testimonial": "Oh wow, I thought Sanity was good, but @tinacms is all I need.\n", "link": "https://twitter.com/struhy_xd/status/1706770885254787099" @@ -504,7 +504,7 @@ { "name": " Dave Keen", "username": "ccapndave", - "avatar": "https://res.cloudinary.com/forestry-demo/image/upload/c_scale,w_56/v1689355588/testimonials/avatars/ccapndave_ka7f5u.webp", + "avatar": "/img/avatars/ccapndave_ka7f5u.webp", "date": "2023-06-02T03:00:00.000Z", "testimonial": "It’s absolutely amazing. Its so simple to install, the typed NextJS integration is amazing, the live editor is as good as it gets. And compared to other CMSs, the admin is incredibly easy for editors to understand and use.\n", "link": "https://discord.com/channels/835168149439643678/848932514911354880/1113764832668299274" @@ -512,7 +512,7 @@ { "name": "Billy Best", "username": "billybest5276", - "avatar": "https://res.cloudinary.com/forestry-demo/image/upload/v1691504396/testimonials/avatars/billy-best_wbcpsb.jpg", + "avatar": "/img/avatars/billy-best_wbcpsb.jpg", "date": "2023-08-06T03:00:00.000Z", "testimonial": "Just found this and I think I am already in love.\n", "link": "https://www.youtube.com/watch?v=PcgnJDILv4w&lc=Ugy92XCmtPug2_1Lr554AaABAg" @@ -520,21 +520,21 @@ { "name": "Mravec", "username": "mravec", - "avatar": "https://res.cloudinary.com/forestry-demo/image/upload/c_scale,w_56/v1689354995/testimonials/avatars/mravec_tglyht.webp", + "avatar": "/img/avatars/mravec_tglyht.webp", "date": "2023-06-14T03:00:00.000Z", "testimonial": "Just tried out click-to-edit and it's really awesome. Super easy to use and to setup, love that it's fully typed and works passed down as a prop, kinda feels like magic tbh.\n", "link": "https://discord.com/channels/835168149439643678/848932514911354880/1118255235706663103" }, { "name": "Peter Rusin", - "avatar": "https://res.cloudinary.com/forestry-demo/image/upload/v1693942535/testimonials/avatars/piotr-rusin_ne0l3j.jpg", + "avatar": "/img/avatars/piotr-rusin_ne0l3j.jpg", "date": "2023-09-05T03:00:00.000Z", "testimonial": "I tried a dozen CMSs and I have to say, as an engineer, I like Tina the most.\n", "link": "https://rusin.work" }, { "name": "Sean Pearce", - "avatar": "https://res.cloudinary.com/forestry-demo/image/upload/c_scale,w_56/v1689356500/testimonials/avatars/sean_bnwhd9.png", + "avatar": "/img/avatars/sean_bnwhd9.png", "date": "2023-03-30T03:00:00.000Z", "testimonial": "Tina's in-context editor cannot be beaten, we’re all in on it.\n", "link": "https://www.shaunpearce.ie/" @@ -542,7 +542,7 @@ { "name": "rascode", "username": "rascode11", - "avatar": "https://res.cloudinary.com/forestry-demo/image/upload/c_scale,w_56/v1689354758/testimonials/avatars/rascode11_elrciv.jpg", + "avatar": "/img/avatars/rascode11_elrciv.jpg", "date": "2022-12-06T04:00:00.000Z", "testimonial": "@tinacms is a dream come true.\n", "link": "https://twitter.com/rascode11/status/1600175861621088266" @@ -567,7 +567,7 @@ ], "media": [ { - "src": "v1689260393/blog-media/editorial-workflow/create-branch", + "src": "/video/create-branch.webm", "_template": "video" } ] @@ -577,7 +577,7 @@ "text": "Editing content in Markdown, MDX, and JSON files doesn't need to feel clunky. Tina supports a live preview that takes the UX to the next level", "media": [ { - "src": "tina-io/new-homepage/homepage-demo-2", + "src": "/img/docs/introduction/homepage-demo-2.webm", "_template": "video" } ] diff --git a/content/blog/2021-a-year-in-review.mdx b/content/blog/2021-a-year-in-review.mdx index 75a83b501..db6fad3f4 100644 --- a/content/blog/2021-a-year-in-review.mdx +++ b/content/blog/2021-a-year-in-review.mdx @@ -49,7 +49,7 @@ After talking to the team about the vision of Tina, I was all in, I didn't want June 2nd, 2021 we announced to the community that TinaCloud was in public alpha, and we encouraged anyone who wanted to see the future of content editing and management to give it a shot. -![Tina Alpha Tweet](https://res.cloudinary.com/forestry-demo/image/upload/v1640092818/blog-media/year-in-review/alpha.png) +![Tina Alpha Tweet](/img/blog/2021-a-year-in-review/alpha.png) You all took us up on our offer, users spiked, commits were made, and feedback started to come in. We felt the beginnings of a community that wanted and cared about Tina. Your feedback went directly to the team and into brainstorming product meetings. @@ -77,7 +77,7 @@ In August we made the biggest announcement since I started at Tina. We placed th - Dashboard overhaul - Changes to content modeling -![Beta Tweet](https://res.cloudinary.com/forestry-demo/image/upload/v1640092818/blog-media/year-in-review/beta.png) +![Beta Tweet](/img/blog/2021-a-year-in-review/beta.png) We also hired Kelly to help with our Cloud offering and Logan to help with our open-source product. Logan had already been working as an intern but he was an integral part of the team and we wanted him to work at Tina after he graduated. diff --git a/content/blog/Click-to-Edit-Comes-to-Visual-Editing.mdx b/content/blog/Click-to-Edit-Comes-to-Visual-Editing.mdx index 6640d330f..4727cfff6 100644 --- a/content/blog/Click-to-Edit-Comes-to-Visual-Editing.mdx +++ b/content/blog/Click-to-Edit-Comes-to-Visual-Editing.mdx @@ -8,7 +8,7 @@ I’m excited to share that Tina’s visual editing UX just got a lot better wit This pops open the Tina sidebar at the right location when you click editable elements on the page.  See it in action on [roev.com](https://www.roev.com/) here: - + Our goal is to make visual editing the most intuitive editing experience _without_ compromising the developer's experience and code-quality. Click-to-edit is a big UX win and easy to implement on your site. diff --git a/content/blog/Improving-TinaCloud-Indexing-with-Native-Git-CLI-and-Sparse-Checkout.mdx b/content/blog/Improving-TinaCloud-Indexing-with-Native-Git-CLI-and-Sparse-Checkout.mdx index ef629590c..b1c3c992e 100644 --- a/content/blog/Improving-TinaCloud-Indexing-with-Native-Git-CLI-and-Sparse-Checkout.mdx +++ b/content/blog/Improving-TinaCloud-Indexing-with-Native-Git-CLI-and-Sparse-Checkout.mdx @@ -19,7 +19,7 @@ The key to this solution lies in leveraging Git's sparse-checkout feature in com By implementing these changes, TinaCloud is now able to efficiently pull down only the files needed for indexing, significantly reducing memory usage and improving performance for large repositories in the first part of the indexing process. -![Graph showcasing memory usage decrease from before and after using native Git CLI.](https://res.cloudinary.com/forestry-demo/image/upload/v1719276485/blog-media/native-git-indexing/chart-native-git_dn9gbf.png "When indexing a 1.9GB repository with content and images, the memory usage decreased from 7.9GB with the old implementation to 883MB for the new one.") +![Graph showcasing memory usage decrease from before and after using native Git CLI.](/img/blog/Improving-TinaCloud-Indexing-with-Native-Git-CLI-and-Sparse-Checkout/chart-native-git_dn9gbf.png "When indexing a 1.9GB repository with content and images, the memory usage decreased from 7.9GB with the old implementation to 883MB for the new one.") This enhancement marks a significant step forward in making TinaCloud more robust and efficient, ensuring that users can manage their content seamlessly, regardless of the size of their repositories. diff --git a/content/blog/Introducing-Editorial-Workflow-Features-for-your-Team.mdx b/content/blog/Introducing-Editorial-Workflow-Features-for-your-Team.mdx index 3c8cea396..dd22d9072 100644 --- a/content/blog/Introducing-Editorial-Workflow-Features-for-your-Team.mdx +++ b/content/blog/Introducing-Editorial-Workflow-Features-for-your-Team.mdx @@ -17,23 +17,23 @@ We understand that Git concepts are new to many content editors, so the TinaCMS In TinaCloud, you can assign a "protected branch". -![](https://res.cloudinary.com/forestry-demo/image/upload/v1689016108/blog-media/editorial-workflow/enable-editorial-workflow.png) +![](/img/blog/editorial-workflow/enable-editorial-workflow.png) If an editor tries to make a change on a protected branch, they will be prompted to create a new branch where those changes will be applied. -![](https://res.cloudinary.com/forestry-demo/image/upload/v1689033651/blog-media/editorial-workflow/create-branch_bgpgwn.png) +![](/img/blog/introducing-editorial-workflow-features-for-your-team/create-branch_bgpgwn.png) ## Sharing Previews When on a branch, editors now have an accessible link to a configurable preview link. This allows editors to easily share their site preview with other stakeholders. -![](https://res.cloudinary.com/forestry-demo/image/upload/v1689035096/blog-media/editorial-workflow/share-btn_xvmxii.png) +![](/img/blog/editorial-workflow/share-btn_xvmxii.png) ## Leverage GitHub's Reviews When editors make changes, commits and pull-requests are made to GitHub under the hood. Reviewers are able to use the Git workflow that they're comfortable with to review changes. This also allows teams to ensure that their CI/CD workflow all passes before merging any content updates to their main branch. -![](https://res.cloudinary.com/forestry-demo/image/upload/v1689035294/blog-media/editorial-workflow/github-pr_vbyqbs.png) +![](/img/blog/editorial-workflow/github-pr.png) ## Improved Branch UI diff --git a/content/blog/Introducing-TinaGPT-Chatbot-.mdx b/content/blog/Introducing-TinaGPT-Chatbot-.mdx index c7dff6d17..166f49f27 100644 --- a/content/blog/Introducing-TinaGPT-Chatbot-.mdx +++ b/content/blog/Introducing-TinaGPT-Chatbot-.mdx @@ -16,7 +16,7 @@ Meet TinaGPT, our helpful little friend, ready to assist you. It has access all Check it out now - open the orange chat bubble 🟠 on [tina.io](https://aus01.safelinks.protection.outlook.com) 🦙 -![](https://res.cloudinary.com/forestry-demo/image/upload/v1717733469/tinaGPT-img_afz4sq.jpg)\*\* Figure: Ask TinaGPT your questions for amazing immediate support 🦙\*\* +![](/img/blog/Introducing-TinaGPT-Chatbot/tinaGPT-img_afz4sq.jpg)\*\* Figure: Ask TinaGPT your questions for amazing immediate support 🦙\*\* But don't worry, if you prefer to talk to the team we're still here! diff --git a/content/blog/Introducing-the-Deep-Dive-Video-Series.mdx b/content/blog/Introducing-the-Deep-Dive-Video-Series.mdx index fffe65043..4e67011c6 100644 --- a/content/blog/Introducing-the-Deep-Dive-Video-Series.mdx +++ b/content/blog/Introducing-the-Deep-Dive-Video-Series.mdx @@ -7,7 +7,7 @@ author: Jeff See Today I'm excited to announce the Deep Dive tutorial series, an A to Z introduction of all things Tina. In this series, I'll take you through every step of integrating content into your NextJS website, providing clear explanations and practical demonstrations along the way. -![LLamaLink Website Screenshot](https://res.cloudinary.com/forestry-demo/image/upload/v1689181932/llama-link_gzdv9e.png 'Introducing the Llama Link Deep Dive series') +![LLamaLink Website Screenshot](/img/blog/introducing-the-deep-dive-video-series/llama-link_gzdv9e.png 'Introducing the Llama Link Deep Dive series') The website we'll be building is a fictional (obviously) SaaS company where you can chat live with Llama's online! Check it out [here.](https://llama-link.vercel.app/) diff --git a/content/blog/Supercharge-Your-Markdown-Blog-with-AI.mdx b/content/blog/Supercharge-Your-Markdown-Blog-with-AI.mdx index dbc800e42..4e3c2c0a1 100644 --- a/content/blog/Supercharge-Your-Markdown-Blog-with-AI.mdx +++ b/content/blog/Supercharge-Your-Markdown-Blog-with-AI.mdx @@ -19,7 +19,7 @@ To illustrate the potential of this combination, we're excited to introduce **Ma AI can be a valuable tool for assisting with writing and editing content. We've designed this bot not to replace content editors, but rather to augment their capabilities. The bot offers content suggestions directly in your pull requests. If you find the suggestions helpful, you can commit them with a click. If not, they're just as easily dismissed. -![AI Suggestion in GitHub](https://res.cloudinary.com/forestry-demo/image/upload/v1689957451/blog-media/markdown-bot/Screenshot_2023-07-21_at_12.36.48_PM_ztpdes.png "AI Suggestion in GitHub") +![AI Suggestion in GitHub](/img/blog/Supercharge-Your-Markdown-Blog-with-AI/Screenshot_2023-07-21_at_12.36.48_PM_ztpdes.png "AI Suggestion in GitHub") ## Markdown Bot Works On Your PRs diff --git a/content/blog/Tina-CMS--Leveljs.mdx b/content/blog/Tina-CMS--Leveljs.mdx index 602c556d3..5b225b107 100644 --- a/content/blog/Tina-CMS--Leveljs.mdx +++ b/content/blog/Tina-CMS--Leveljs.mdx @@ -8,13 +8,13 @@ prev: content/blog/Supercharge-Your-Markdown-Blog-with-AI.mdx TinaCMS is an open-source, Git-backed headless content management system (CMS) with a unique approach to content storage and retrieval. In this article, we are going to dive into its architecture and discover how Level.js strikes the perfect balance between simplicity and functionality needed by Tina. -![](https://res.cloudinary.com/forestry-demo/image/upload/v1697555916/tina-io/new-homepage/homepage-demo-2b_lmoaj8.gif) + # The Challenge of Building a CMS on Git One of the key features of TinaCMS is that instead of writing content to a database, it is stored in a Git repository. By using Git, Tina gets built-in version control and enables Git-based collaborative workflows. Similar to other headless CMS products, content is exposed for rendering using a queryable API that is generated using a developer-defined schema. -![](https://res.cloudinary.com/forestry-demo/image/upload/v1675375259/tinacms-data-layer_geyrv8.png) +![](/img/docs/tinacms-data-layer_geyrv8.png) If Tina's API were to directly query the filesystem for content, it would be quite slow to access content, especially as the amount of content grows. Accessing individual documents and listing of files in a particular folder is straightforward. However, if we want to find all of the blog posts for a particular category, we have to load them all into memory, and then filter them before returning a result. Another common use case is ordering posts by the date they were authored. Unless we use a file naming scheme that incorporates a date field, sorting posts by date again would require loading all of the posts into memory and then sorting them before returning the sorted list. These solutions might be fine for a small site, but they are clearly not scalable. @@ -66,7 +66,7 @@ At this point, some readers might wonder how Tina handles schema migrations give The benefits of using Level.js in Tina go beyond just powering the Tina API. We recently added a search feature that allows the editor to perform full text searches to locate content. -![](https://res.cloudinary.com/forestry-demo/video/upload/v1695236140/demos/search-demo.gif) + Originally, we planned on providing some integration with an existing solution like Algolia, but again we wanted to enable the simple local development experience while maintaining consistency between local development and hosted production sites. The solution presented itself in [Fergus McDowall’s](https://github.com/fergiemcdowall) [search-index](https://www.npmjs.com/package/search-index) library. This library provides an embeddable full-text search engine and is built on top of Level.js. Because it uses Level.js, it can be used with any database that has a Level.js store implementation. Using this library, Tina is able to provide full featured search both in local development and in the production hosted site with full feature parity. diff --git a/content/blog/Tina-sponsoring-the-NEW-conference.mdx b/content/blog/Tina-sponsoring-the-NEW-conference.mdx index b2bd9a191..3a71f9244 100644 --- a/content/blog/Tina-sponsoring-the-NEW-conference.mdx +++ b/content/blog/Tina-sponsoring-the-NEW-conference.mdx @@ -7,4 +7,4 @@ author: Camilla Rosa Silva We're excited to sponsor the [/NEW conference](https://slashnew.tech). /NEW is the #1 Tech Conference in Newcastle, NSW, Australia. -![](https://res.cloudinary.com/forestry-demo/image/upload/v1715892866/blog-media/tina-sponsor-new-conference_rqctzv.png) +![](/img/blog/Tina-sponsoring-the-NEW-conference/tina-sponsor-new-conference_rqctzv.png) diff --git a/content/blog/TinaCMS-New-Public-Roadmap.mdx b/content/blog/TinaCMS-New-Public-Roadmap.mdx index 859deceef..440695b3f 100644 --- a/content/blog/TinaCMS-New-Public-Roadmap.mdx +++ b/content/blog/TinaCMS-New-Public-Roadmap.mdx @@ -7,14 +7,14 @@ author: James O'Halloran TinaCMS now has a public roadmap where you can follow along with high-level features on our radar. -![Public Roadmap](https://res.cloudinary.com/forestry-demo/image/upload/v1669232450/blog-media/roadmap/Screen_Shot_2022-11-23_at_2.22.24_PM.png) +![Public Roadmap](/img/blog/tinacms-new-public-roadmap/public-roadmap.png) The roadmap is reserved for items in which we have a high degree of confidence that they'll fall into a given timeframe. Each roadmap item will link to a GitHub discussion, where you can comment on features, or subscribe for updates.\ \ If you'd like to see something make its way into the roadmap, start by creating a feature request in our [GitHub Discussions](https://github.com/tinacms/tinacms/discussions "GitHub Discussions"). -Under the hood, the roadmap is also managed with Tina! So we'll be jumping it and keeping this page up to date regularly as plans change and as progress is made. \ -\ -![Public Roadmap Tina](https://res.cloudinary.com/forestry-demo/image/upload/v1669233613/blog-media/roadmap/tina-roadmap.gif) +Under the hood, the roadmap is also managed with Tina! So we'll be jumping it and keeping this page up to date regularly as plans change and as progress is made. + + You can checkout out the new roadmap [here](/roadmap) diff --git a/content/blog/TinaCMS-Version-1-5-9.mdx b/content/blog/TinaCMS-Version-1-5-9.mdx index 4be4808f3..a6ab24673 100644 --- a/content/blog/TinaCMS-Version-1-5-9.mdx +++ b/content/blog/TinaCMS-Version-1-5-9.mdx @@ -11,7 +11,7 @@ Today we are excited to release `tinacms@1.5.9` and `@tinacms/clil@1.5.18`. The It's now easier than ever to find your documents in TinaCMS. TinaCMS's search was previously limited to filtering on specific fields, search was case-sensitive, and it was difficult for editors to use without knowing the exact value of a field. Now editors can search for documents across any of its fields. -![](https://res.cloudinary.com/forestry-demo/image/upload/v1686669366/tina-io/blog/changelog/search_uxd1di.png) +![](/img/blog/TinaCMS-Version-1-5-9/search_uxd1di.png) Setting up search does require some light configuration to be enabled. Learn more about setting up search [in the docs](/docs/reference/search/overview/ 'in the docs'). @@ -25,7 +25,7 @@ When repo-based media is setup on a project, we need to trigger an initial sync \ We've since added a "Media" tab to the TinaCloud dashboard to improve this experience. -![](https://res.cloudinary.com/forestry-demo/image/upload/v1686670223/tina-io/blog/changelog/media-dashboard_qjwkr2.png) +![](/img/blog/TinaCMS-Version-1-5-9/media-dashboard_qjwkr2.png) When new projects are setup, Tina media can be enabled from this tab.\ We plan on adding configuration to this tab in the future, and we hope it improves the initial media setup in the meantime. @@ -34,7 +34,7 @@ We plan on adding configuration to this tab in the future, and we hope it improv We recently announced some improvements to Visual Editing with our new "Click to Edit" functionality. - + Read more about that announcement [here](/blog/Click-to-Edit-Comes-to-Visual-Editing/ 'here'). diff --git a/content/blog/TinaCMS-Version-1-5.mdx b/content/blog/TinaCMS-Version-1-5.mdx index 229d7f3b4..323c2d6b1 100644 --- a/content/blog/TinaCMS-Version-1-5.mdx +++ b/content/blog/TinaCMS-Version-1-5.mdx @@ -11,13 +11,13 @@ Today we are excited to release `tinacms@1.5.1` and `@tinacms/clil@1.5.8`. The f The Document List view for a collection will now nest documents within directories, instead of listing all documents as a flat list at the root. -![Document lists](https://res.cloudinary.com/forestry-demo/image/upload/v1682598356/blog-media/1.5/directories.png) +![Document lists](/img/blog/TinaCMS-Version-1-5/directories.png) ## Duplicating Documents In the document list, editors now have the ability to duplicate a document. -![Duplicating](https://res.cloudinary.com/forestry-demo/image/upload/v1682598745/blog-media/1.5/duplicate.png) +![Duplicating](/img/blog/TinaCMS-Version-1-5/duplicate.png) ## Support for collections at the root @@ -27,7 +27,7 @@ Tina now allows collections to be configured at the root, by setting path: '/' o When your users save in Tina, the commit message now includes the author's name (or email). -![](https://res.cloudinary.com/forestry-demo/image/upload/v1682616496/blog-media/1.5/commit_message.png) +![](/img/blog/TinaCMS-Version-1-5/commit_message.png) ## Bug fixes & Other Improvements diff --git a/content/blog/TinaCMS-Version-21.mdx b/content/blog/TinaCMS-Version-21.mdx index b755ea252..50703541f 100644 --- a/content/blog/TinaCMS-Version-21.mdx +++ b/content/blog/TinaCMS-Version-21.mdx @@ -19,11 +19,11 @@ We are excited to announce the release of `tinacms@2.1.0` and `@tinacms/cli@1.5. TinaCMS has been upgraded to use React 18.3.1, bringing you the latest features and improvements from React. 5. **Markdown Editor - New `toolbarOverride` Option for Rich Text Fields** A new `toolbarOverride` option has been added to rich text fields, giving you greater control over your editor toolbar configurations. Check out the [docs](/docs/reference/types/rich-text/) for more info. - ![](https://res.cloudinary.com/forestry-demo/image/upload/v1721881770/blog-media/2.1/ray-so-export_3_x7baul.png)\ - ![](https://res.cloudinary.com/forestry-demo/image/upload/v1721881650/blog-media/2.1/SCR-20240725-mvmu_gfqxxv.png) + ![](/img/blog/TinaCMS-Version-21/ray-so-export_3_x7baul.png)\ + ![](/img/blog/TinaCMS-Version-21/SCR-20240725-mvmu_gfqxxv.png) 6. **Media Manager - Adding Support for Videos & Other Field Types** TinaCMS now allows you to upload and use more file types, e.g. PDF, videos, etc. - ![](https://res.cloudinary.com/forestry-demo/image/upload/v1721880641/blog-media/2.1/351543729-f4b352d6-83c9-4f13-af38-8faa0e41f993_q8kuz7.png) + ![](/img/blog/TinaCMS-Version-21/sample-cloudinary.png) 7. **Mobile Resolution Support** TinaCMS now supports various screen sizes and mobile devices, including iOS and Android, providing a seamless editing experience across all your devices. ![](/img/blog/tinacms-2-1-mobile.png) diff --git a/content/blog/TinaCMS-Version-22.mdx b/content/blog/TinaCMS-Version-22.mdx index 8377624d8..1ff66b12e 100644 --- a/content/blog/TinaCMS-Version-22.mdx +++ b/content/blog/TinaCMS-Version-22.mdx @@ -13,13 +13,13 @@ Finding the right image or video is now easier than ever with infinite scroll in ### What's New: 1. **Extensible toolbar & Markdown Editor is better!** - One of the significant updates in this release is the upgrade of Plate from plate-headless to Plate version 36. This upgrade lays the groundwork for integrating popular plugins that will empower content creators even further. We encourage you to explore the latest plugins on [Plate](https://platejs.org/docs#plugins "Plate") and join the discussion about which ones you’d like to see added to TinaCMS.![](https://res.cloudinary.com/forestry-demo/image/upload/v1724047007/blog-media/2.2/SCR-20240819-nzej_ocb7rm.png) + One of the significant updates in this release is the upgrade of Plate from plate-headless to Plate version 36. This upgrade lays the groundwork for integrating popular plugins that will empower content creators even further. We encourage you to explore the latest plugins on [Plate](https://platejs.org/docs#plugins "Plate") and join the discussion about which ones you’d like to see added to TinaCMS.![](/img/blog/TinaCMS-Version-22/SCR-20240819-nzej_ocb7rm.png) 2. **Infinite Scroll for the Media Manager** Managing media files just got easier with the introduction of infinite scroll in the Media Manager. No more clicking through pages or manually loading more files—now, as you scroll through your media library, new items load automatically, allowing you to browse through your entire collection effortlessly. This is just the beginning of our ongoing efforts to enhance the Media Manager, with many more improvements on the way! 3. **File Path Added to Collection Items** - Ever wondered where that post or page is actually stored? We did too! That’s why we’ve added the file path display for collection items.![](https://res.cloudinary.com/forestry-demo/image/upload/v1724051431/blog-media/2.2/SCR-20240819-oqta-v2_yppg9t.png) + Ever wondered where that post or page is actually stored? We did too! That’s why we’ve added the file path display for collection items.![](/img/blog/TinaCMS-Version-22/SCR-20240819-oqta-v2_yppg9t.png) 4. **Check Out the New “What’s New” Page** We’re excited to announce the launch of our new “[What’s New](https://tina.io/whats-new/tinacms/)” page. This page is your go-to resource for the latest changelogs and updates for the TinaCMS package. Stay up-to-date with all the new features, improvements, and fixes by visiting this page regularly. diff --git a/content/blog/a-b-test-with-tina.mdx b/content/blog/a-b-test-with-tina.mdx index 1d3534aa4..0cefd7aa4 100644 --- a/content/blog/a-b-test-with-tina.mdx +++ b/content/blog/a-b-test-with-tina.mdx @@ -43,14 +43,14 @@ With your site running, you should be able to access it at [`http://localhost:30 The home page of the starter should look like this: -![TinaCloud Starter](https://res.cloudinary.com/forestry-demo/image/upload/v1653936476/blog-media/a-b-testing/starter-homepage.png) +![TinaCloud Starter](/img/blog/a-b-testing/starter-homepage.png) This page is already setup nicely for an A/B test, its page layout (`[slug].tsx`) renders dynamic pages by accepting a variable `slug`. Let's start by creating an alternate version of the homepage called `home-b`. You can do so in Tina [at http://localhost:3000/admin#/collections/page/new](http://localhost:3000/admin#/collections/page/new) -![Tina Add document](https://res.cloudinary.com/forestry-demo/image/upload/v1653936344/blog-media/a-b-testing/add-document.png) +![Tina Add document](/img/blog/a-b-testing/add-document.png) Once that's done, go to: `http://localhost:3000/home-b` to confirm that your new `/home-b` page has been created. @@ -286,7 +286,7 @@ We also need to update our `RouteMappingPlugin` in `.tina/schema.ts` to ensure t Now, restart your dev server, and go to: [`http://localhost:3000/admin#/collections/abtest/index`](http://localhost:3000/admin#/collections/abtest/index). Your editors should be able to wire up their own A/B tests! -![Tina Edit Variant](https://res.cloudinary.com/forestry-demo/image/upload/v1653939832/blog-media/a-b-testing/edit-test.png) +![Tina Edit Variant](/img/blog/a-b-testing/edit-test.png) The process for editors to create new A/B tests would be as follows: diff --git a/content/blog/announcement-tina-cloud-is-officially-in-alpha.mdx b/content/blog/announcement-tina-cloud-is-officially-in-alpha.mdx index 296ca8223..154e0eaef 100644 --- a/content/blog/announcement-tina-cloud-is-officially-in-alpha.mdx +++ b/content/blog/announcement-tina-cloud-is-officially-in-alpha.mdx @@ -11,7 +11,7 @@ TinaCloud brings the power of Tina's open-source content editor with [a GraphQL When we [launched TinaCMS](https://www.youtube.com/watch?v=iPDCmbaEF0Y), it was mainly an open-source Javascript UI for editing your site, visually. -![Real-time editing of a Next.js + Tailwind CSS site with Tina’s sidebar.](https://res.cloudinary.com/forestry-demo/image/upload/v1619023278/tina-cms-visual-editing.gif 'Real-time editing of a Next.js + Tailwind CSS site with Tina’s sidebar.') +![Real-time editing of a Next.js + Tailwind CSS site with Tina’s sidebar.](/img/blog/tina-cms-visual-editing.gif 'Real-time editing of a Next.js + Tailwind CSS site with Tina’s sidebar.') At that time, TinaCMS was a 3-month-old, open-source project and we relied on developers to roll their own solution for user management, authentication, roles, content storage, and more. But we quickly learned that developers need more out-of-the-box to get their teams successful. With TinaCloud, we're staying true to our vision of **Git-backed content management**, but with a batteries-included experience. diff --git a/content/blog/announcing-tinacms.mdx b/content/blog/announcing-tinacms.mdx index c7d81844f..9a70ad675 100644 --- a/content/blog/announcing-tinacms.mdx +++ b/content/blog/announcing-tinacms.mdx @@ -13,7 +13,7 @@ Today, we’re excited to announce [TinaCMS](https://github.com/tinacms/tinacms) Tina is not a CMS, in the traditional sense. As in, it’s not a _separate_ system for managing content. Instead, Tina adds editing functionality to your site when running in dev mode locally, or when using [Tina Teams](http://tinacms.org/teams) (cloud)...In fact, I'm writing this post with Tina right now: -![tina-announcement-gif](https://res.cloudinary.com/forestry-demo/image/upload/v1571244588/tina-cms-announcement-post.gif) + When you install Tina, your site gets a floating _edit_ icon in the corner that toggles an editing pane (left) to expose the CMS fields. This gives your content editors a visual editing experience that’s super intuitive. When you click "Save" Tina writes your content to external data sources, such as markdown or json files. Try the [Gatsby starter site](https://tinacms.org/guides/gatsby/adding-tina/project-setup) to see for yourself. diff --git a/content/blog/annual-billing.mdx b/content/blog/annual-billing.mdx index 50d4f59cc..01abea7a1 100644 --- a/content/blog/annual-billing.mdx +++ b/content/blog/annual-billing.mdx @@ -17,4 +17,4 @@ If you’re ready to streamline your content management and save on costs, this 👉 **Check out the details and upgrade your plan today!** [https://tina.io/pricing/](https://tina.io/pricing/) -![](https://res.cloudinary.com/forestry-demo/image/upload/v1729060928/blog-media/annual-pricing/annual-pricing_jfw49j.jpg)Figure: Flick the annual switch to start saving. +![](/img/blog/annual-billing/annual-billing-blog.png)Figure: Flick the annual switch to start saving. diff --git a/content/blog/automating-pull-requests.mdx b/content/blog/automating-pull-requests.mdx index 96082a099..5dceec757 100644 --- a/content/blog/automating-pull-requests.mdx +++ b/content/blog/automating-pull-requests.mdx @@ -25,7 +25,7 @@ Now, the PR Scheduler can now be used to schedule any of your pull requests. To 2. Add a new comment with DD/MM/YYYTHH:MM for example `@prscheduler 05/04/2022T14:00` 3. PR Scheduler will respond back telling you it's ready. -![Example Image of PR Scheduled](https://res.cloudinary.com/forestry-demo/image/upload/v1649865121/blog-media/branch-automate-pr/Screen\_Shot\_2022-04-12\_at\_7.34.54\_AM.png "") +![Example Image of PR Scheduled](/img/blog/automating-pull-requests/pr-scheduler.png "") That's it! Now when that time comes, your PR will be merged. If you make a mistake with the time or date, just run the same command and it will reschedule. diff --git a/content/blog/custom-field-components.mdx b/content/blog/custom-field-components.mdx index e77dadddb..ad25032aa 100644 --- a/content/blog/custom-field-components.mdx +++ b/content/blog/custom-field-components.mdx @@ -26,7 +26,7 @@ Throughout the post, I'll refer to a few core TinaCMS concepts such as [forms](h Tina was intended to be fully customizable and extensible. Creating **custom fields can provide precise control** over the sidebar configuration and styling, along with implementing unique field functionality. -![saturation-custom-field-gif](https://res.cloudinary.com/forestry-demo/image/upload/v1645712782/tina-io/docs/saturate-custom-field.gif) + > Want to jump ahead? Feel free to check out a [**finished version**](https://github.com/kendallstrautman/llama-filters) of the custom range input field seen in the gif above, or take a peak at a more complex [_Authors_ field plugin](https://github.com/tinacms/tina-starter-grande/blob/master/src/fields/authors.js) in the Tina Grande repo. diff --git a/content/blog/data-layer-performant-editing.mdx b/content/blog/data-layer-performant-editing.mdx index ed0c76b36..13b007162 100644 --- a/content/blog/data-layer-performant-editing.mdx +++ b/content/blog/data-layer-performant-editing.mdx @@ -9,7 +9,7 @@ Tina has worked on the premise of direct interaction with Tina's GraphQL API and The Tina team recently introduced a new optional data layer that sits between Tina and GitHub. In the future, this will be our default offering once it is out of the experimental stage. Our data layer buffers the requests between Tina and GitHub, increasing performance while editing your content. This blog post is going to explain how it works, what it does and what we have planned for the future! - + ## How to enable the Data Layer on your project diff --git a/content/blog/from-cms-to-contextual.mdx b/content/blog/from-cms-to-contextual.mdx index 6fbf1e234..12e1e25d6 100644 --- a/content/blog/from-cms-to-contextual.mdx +++ b/content/blog/from-cms-to-contextual.mdx @@ -6,7 +6,7 @@ author: James Perkins Tina allows you as a developer to create an amazing editing experience. By default the editing experience is a more traditional CMS, where you login to a specific URL and you edit your content without being able to see the content till after you finish your changes. But, if you are looking for a more transparent real-time editing experience, Tina has a superpower, called Visual Editing. Just as it sounds, you get instant feedback on the page as well as being able to preview the changes before publishing live to your site. -![Example of Tina Context editing](https://res.cloudinary.com/forestry-demo/video/upload/q_100/v1647436971/blog-media/cms-to-contextual/TinaSuper.gif) + ## Getting our project started @@ -56,7 +56,7 @@ Before we add visual editing, go ahead and launch the application using `yarn ti Now if you navigate to [http://localhost:3000/admin](http://localhost:3000/admin) you will be presented with a screen to login, if you login you will land on the CMS dashboard. Selecting a collection on the left will bring you to a screen with all the current files in that space. Then selecting a file will allow you to edit it as you see fit. -![Tina CMS Example](https://res.cloudinary.com/forestry-demo/video/upload/c_scale,w_1174/v1646412458/blog-media/getting-started-tina-admin/example.gif) + ## Adding Visual Editing. diff --git a/content/blog/introducing-tina-grande.mdx b/content/blog/introducing-tina-grande.mdx index 4e6d208a2..f77f2dc52 100644 --- a/content/blog/introducing-tina-grande.mdx +++ b/content/blog/introducing-tina-grande.mdx @@ -12,7 +12,7 @@ warningMessage: '**Update:** The examples in this post reference an outdated Gat [Check out the preview of Grande on Netlify.](https://tina-starter-grande.netlify.com/ 'Tina Grande Preview - Netlify') -![tina-starter-grande](https://res.cloudinary.com/forestry-demo/image/upload/v1574451940/Tina%20Grande/Blog_image.png) +![tina-starter-grande](/img/blog/announcing-tina-grande/Blog_image.png) ## Breakdown diff --git a/content/blog/introducing-visual-open-authoring.mdx b/content/blog/introducing-visual-open-authoring.mdx index d69351939..339e2a55a 100644 --- a/content/blog/introducing-visual-open-authoring.mdx +++ b/content/blog/introducing-visual-open-authoring.mdx @@ -28,7 +28,7 @@ Currently, this requires a GitHub account and some knowledge of Git workflows, m We're currently prototyping this on our own site. In the coming weeks, the APIs for integrating **Visual Open Authoring** with Tina will become available. In the meantime, click the **edit button** at the top of this blog to try it out. Feel free to reference this site’s [source code](https://github.com/tinacms/tinacms.org) to see how it works. -![edit](https://res.cloudinary.com/forestry-demo/image/upload/w_800,bo_2px_solid_grey/v1583778760/TinaCMS/click-edit-button.png) +![edit](/img/blog/introducing-visual-open-authoring/click-edit-button.png) ## Using Next.js to Enable "Edit-mode" diff --git a/content/blog/mdx-powered-docs.mdx b/content/blog/mdx-powered-docs.mdx index 4ea8ab255..eda93aad1 100644 --- a/content/blog/mdx-powered-docs.mdx +++ b/content/blog/mdx-powered-docs.mdx @@ -7,7 +7,7 @@ last_edited: '2021-11-02T08:00:00-04:00' When we released our [MDX Support](/docs/mdx/), we wanted to create a real-world application that showed the power of Tina and MDX. We know how important documentation is to teams and that the market’s current offerings lack features that bring collaboration. -![Docs_Starter_Example](https://res.cloudinary.com/forestry-demo/video/upload/v1638887594/blog-media/Docs_Starter_Example.gif) + # The technology behind our Documentation Starter @@ -25,23 +25,23 @@ We are big fans of markdown and have just introduced the ability to support MDX. ### [Hero](https://github.com/tinacms/tina-docs-starter/blob/main/blocks/hero-block.js) -![CleanShot 2021-11-02 at 09.17.24.png](https://res.craft.do/user/full/c67cad1b-6dc6-4909-0f8e-19d468ba9fd4/doc/F38A8651-6C07-422F-A3E4-DBB7464B4570/0509A88A-23B1-4B6C-AD87-3A0592EAB965_2/CleanShot%202021-11-02%20at%2009.17.24.png) +![Docs with MDX](/img/blog/mdx-powered-docs/docs-w-mdx.png) ### [Button](https://github.com/tinacms/tina-docs-starter/blob/main/components/Button.js) -![CleanShot 2021-11-02 at 09.18.07.png](https://res.craft.do/user/full/c67cad1b-6dc6-4909-0f8e-19d468ba9fd4/doc/F38A8651-6C07-422F-A3E4-DBB7464B4570/6E8FBA41-E9EF-4E94-8A8B-0B659D9054F4_2/CleanShot%202021-11-02%20at%2009.18.07.png) +![Learn more](/img/blog/mdx-powered-docs/learn-more.png) ### Video player -![CleanShot 2021-11-02 at 09.25.50.png](https://res.craft.do/user/full/c67cad1b-6dc6-4909-0f8e-19d468ba9fd4/doc/F38A8651-6C07-422F-A3E4-DBB7464B4570/5370BD6C-2B6A-4915-9D31-AF1E21A67B93_2/CleanShot%202021-11-02%20at%2009.25.50.png) +![The power of MDX for Teams Video](/img/blog/mdx-powered-docs/the-power-of-mdx-for-teams.png) ### [Features](https://github.com/tinacms/tina-docs-starter/blob/5c2448a63dea0b178eaf6b6c17ec10417c3fda78/blocks/features-block.js#L10) -![CleanShot 2021-11-02 at 09.31.27.png](https://res.craft.do/user/full/c67cad1b-6dc6-4909-0f8e-19d468ba9fd4/doc/F38A8651-6C07-422F-A3E4-DBB7464B4570/A48D9265-24B7-4096-B0CA-E35573D99338_2/CleanShot%202021-11-02%20at%2009.31.27.png) +![Cool TinaCMS Features](/img/blog/mdx-powered-docs/cool-tina-images.png) ### [Callouts](https://github.com/tinacms/tina-docs-starter/blob/5c2448a63dea0b178eaf6b6c17ec10417c3fda78/blocks/callout-block.js) -![CleanShot 2021-11-02 at 09.32.00.png](https://res.craft.do/user/full/c67cad1b-6dc6-4909-0f8e-19d468ba9fd4/doc/F38A8651-6C07-422F-A3E4-DBB7464B4570/06AE2D56-FB1D-49BA-A5E2-74C98022B81E_2/CleanShot%202021-11-02%20at%2009.32.00.png) +![Lorem Ipsum](/img/blog/mdx-powered-docs/lorem-ipsum.png) Each one of these components is easily edited by content teams with no development experience. We also give developers the ability to create their own components for their content teams, such as a newsletter signup. diff --git a/content/blog/new-year-new-cms.mdx b/content/blog/new-year-new-cms.mdx index 02e94e2ab..91cb34e39 100644 --- a/content/blog/new-year-new-cms.mdx +++ b/content/blog/new-year-new-cms.mdx @@ -6,7 +6,7 @@ last_edited: '2022-01-09T19:11:29.283Z' opengraph: image: url: >- - https://res.cloudinary.com/forestry-demo/image/upload/v1641391956/blog-media/new_year_new_cms.png + /img/blog/new-year-new-cms/new_year_new_cms.png width: '1920,' height: '1080,' alt: 'New Year, New CMS?' @@ -46,7 +46,7 @@ Our [Tina Quickstart ](https://app.tina.io/quickstart) flow is a web based way t This approach allows you to see how Tina works in a production deployment almost immediately . This is great for getting to know what Tina can do, how Tina works,and show it to others such as your content team. -![Tina Quickstart example](https://res.cloudinary.com/forestry-demo/video/upload/v1641390729/blog-media/new-year-new-cms/tina-quickstart.gif) + ### `npx create-tina-app` @@ -54,7 +54,7 @@ This approach allows you to see how Tina works in a production deployment almost To use the `create-tina-app` you will need `Node 14+` .This doesn't require you to already have an application and will create a new project and directory and allow you to start developing locally. -![Create Tina App Example](https://res.cloudinary.com/forestry-demo/video/upload/v1641390724/blog-media/new-year-new-cms/create-tina-app.gif) + ### Tina CLI @@ -68,7 +68,7 @@ Tina CLI (`npx @tincms/cli@latest init`) allows you to add Tina to an existing N Using the Tina CLI allows you to add Tina and selectively integrate it into your existing Next.js application. This allows you to keep your established site and slowly bring the power of Tina to your editors and content team. Though once you use it, we are not sure how slowly you will want to move. -![Tina CLI Example](https://res.cloudinary.com/forestry-demo/video/upload/v1641390724/blog-media/new-year-new-cms/tina-cli.gif) + ## Where can you keep up to date with Tina? diff --git a/content/blog/our-friend-frank-taillandier-fr.mdx b/content/blog/our-friend-frank-taillandier-fr.mdx index 01142ff87..6f4954d0b 100644 --- a/content/blog/our-friend-frank-taillandier-fr.mdx +++ b/content/blog/our-friend-frank-taillandier-fr.mdx @@ -5,7 +5,7 @@ author: Scott Gallant last_edited: '2021-09-10T17:42:17.194Z' opengraph: image: - url: https://res.cloudinary.com/forestry-demo/image/upload/v1631295724/tina-io/blog/frank-taillandier-painting.jpg + url: /img/blog/our-friend-frank-taillandier/frank-taillandier-painting.jpg width: 1200, height: 628, alt: Our Friend, Frank Taillandier ❤️, @@ -13,7 +13,7 @@ opengraph: 🇨🇦 See the [english version here](/blog/our-friend-frank-taillandier/) (merci à [Nicolas Goutay](https://twitter.com/messages/17271529-58286073) pour la traduction en français). -![Frank Taillandier and colleagues](https://res.cloudinary.com/forestry-demo/image/upload/v1631295724/tina-io/blog/frank-taillandier-painting.jpg) +![Frank Taillandier and colleagues](/img/blog/our-friend-frank-taillandier/frank-taillandier-painting.jpg) Vendredi dernier, Frank n’a pas participé à notre club de lecture, ce qui n’était pas dans ses habitudes. Il avait toujours envie d’apprendre, et adorait discuter, entre amis, d’idées nouvelles. Dans nos réunions, il faisait toujours preuve de curiosité, d’esprit critique; mais aussi de bonne humeur et d’entrain. Quelques jours plus tard, un appel de sa soeur m’a appris pourquoi il n’était pas là. Frank s’était éteint, paisiblement, dans son sommeil, la veille de cette réunion. @@ -29,7 +29,7 @@ J’étais impressionné. En tant que fondateur et CEO, la relation client me ti Frank avait un don avec les gens. Quand il est venu à l’Île-du-Prince-Édouard pour un séminaire (photo ci-dessous, 3è en partant de la gauche), quelque chose m’a frappé. Tous les matins, en arrivant au bureau, nous nous installions et commençions à bosser. Quand il est arrivé, il a fait quelque chose d’unique. Il est passé voir tout le monde, à son bureau, et, pendant quelques minutes, il apprenait à les connaître un peu mieux. Il était drôle, de bonne humeur, attentionné, et, en sa présence, tout le monde se sentait spécial. Je le voyais poser sa main sur l’épaule du collègue qui lui racontait son travail, ou sa soirée de la veille. Tout les matins, chacun se sentait spécial en discutant avec Frank. C’était dans sa nature, et je suis sûr qu’il était comme ça avec la plupart des gens qui l’entouraient. -![Frank at on-site retreat](https://res.cloudinary.com/forestry-demo/image/upload/v1631283892/tina-io/blog/forestry-retreat-1300.jpg) +![Frank at on-site retreat](/img/blog/our-friend-frank-taillandier/forestry-retreat-1300.jpg) Frank avait à coeur que chacun devienne meilleur chaque jour, et il comprenait l’esprit d’équipe. Il était toujours présent, en coulisse, pour aider ses collègues à réussir en testant des fonctionnalités, en prenant des notes, en partageant les retours utilisateurs, en améliorant la documentation, et bien plus. Il était partout, sur des tâches importantes, bien que parfois peu visibles du plus grand nombre. Il n’a jamais laissé son égo se mettre en travers—il voulait tout simplement aider. @@ -37,6 +37,6 @@ Le côté joueur et blagueur de Frank va me manquer. Un jour, en visite chez sa Voilà ce que c’était que de travailler avec Frank. Il était extrèmement attentionné, léger, marrant, il avait un don pour créer du lien avec les gens, il était passionné, et il aurait déplacé des montagnes pour aider quelqu’un. Nous avons de la chance d’avoir pu travailler avec lui. Il a fait de nous une meilleure équipe. Notre club de lecture ne sera plus pareil qu’avant, mais nous feront de notre mieux pour que l’énergie de Frank y soit présente, pour longtemps. -![Frank Taillandier and the Forestry Team - PEI 2019](https://res.cloudinary.com/forestry-demo/image/upload/v1631283892/tina-io/blog/forestry-team-pei.jpg) +![Frank Taillandier and the Forestry Team - PEI 2019](/img/blog/our-friend-frank-taillandier/forestry-team-pei.jpg) Nos pensées vont à sa famille et à ses amis. diff --git a/content/blog/our-friend-frank-taillandier.mdx b/content/blog/our-friend-frank-taillandier.mdx index 217bb44b1..0ac03336b 100644 --- a/content/blog/our-friend-frank-taillandier.mdx +++ b/content/blog/our-friend-frank-taillandier.mdx @@ -5,7 +5,7 @@ author: Scott Gallant last_edited: '2021-09-10T17:42:42.889Z' opengraph: image: - url: https://res.cloudinary.com/forestry-demo/image/upload/v1631295724/tina-io/blog/frank-taillandier-painting.jpg + url: /img/blog/our-friend-frank-taillandier/frank-taillandier-painting.jpg width: 1200, height: 628, alt: Our Friend, Frank Taillandier ❤️, @@ -13,7 +13,7 @@ opengraph: 🇫🇷 Voir la [version française ici](/blog/our-friend-frank-taillandier-fr/) (translated by [Nicolas Goutay](https://twitter.com/messages/17271529-58286073)). -![Frank Taillandier and colleagues](https://res.cloudinary.com/forestry-demo/image/upload/v1631295724/tina-io/blog/frank-taillandier-painting.jpg) +![Frank Taillandier and colleagues](/img/blog/our-friend-frank-taillandier/frank-taillandier-painting.jpg) Last Friday, Frank didn’t attend our company book club meeting which was very unusual for him. He was hungry to learn and loved to discuss new ideas with friends.  He brought curiosity, critical thinking, and a light and playful attitude to our group.  A few days later I received a call from his sister and learned why he wasn’t there.  The night prior to that gathering, Frank had passed away peacefully in his sleep. @@ -27,7 +27,7 @@ With very little direction, Frank got our customer support problem under control I was amazed. As founder and CEO, I care a lot about our customers but here was this new person putting so much care into his work that he was outperforming me in strides. Frank brought a founder-level of care in everything he did. Over time, Frank’s level of care only grew as he assumed  more responsibilities within our company. -![Frank at on-site retreat](https://res.cloudinary.com/forestry-demo/image/upload/v1631283892/tina-io/blog/forestry-retreat-1300.jpg) +![Frank at on-site retreat](/img/blog/our-friend-frank-taillandier/forestry-retreat-1300.jpg) Frank had a special ability to connect with people. When he came to Prince Edward Island for a retreat (seen above, seated 3rd from the left), I noticed something remarkable about him. Every morning we would all stroll in and start working in our open-concept office.  When  Frank got there, he did something unique.  He walked up to each person at their desk and spent two or three minutes connecting with them.  He was light, funny, caring, and made each person feel special. I would see him put his hand on their shoulder as they chatted about their work or about last night’s festivities. Every morning, everyone felt special while they connected with Frank. It was so natural for him and I’m sure that’s how he was with most people in his life. Frank wanted us all to be better and he understood the power of teamwork. He was always working behind the scenes to support his teammates––testing features, taking notes during  meetings, sharing feedback from our users, fixing documentation, and more. He was everywhere, doing important work that was often invisible. He never let ego get in his way, he just wanted to help. @@ -36,6 +36,6 @@ Frank’s playful and funny side will be missed.  On a trip to see his sister i That’s what it was like to work with Frank. He was extremely caring and playful, he had an incredible ability to connect with people, he was dedicated, and would move mountains to help people. We’re lucky to have had the opportunity to work with him. He helped make us a better team.  Our book club meetings will not be the same without him, but we’ll do our best to bring Frank’s energy and spirit to them in the future. -![Frank Taillandier and the Forestry Team - PEI 2019](https://res.cloudinary.com/forestry-demo/image/upload/v1631283892/tina-io/blog/forestry-team-pei.jpg) +![Frank Taillandier and the Forestry Team - PEI 2019](/img/blog/our-friend-frank-taillandier/forestry-team-pei.jpg) Our thoughts are with his family and friends. ❤️ diff --git a/content/blog/self-hosted-datalayer.mdx b/content/blog/self-hosted-datalayer.mdx index 3baf24d86..0a276ab60 100644 --- a/content/blog/self-hosted-datalayer.mdx +++ b/content/blog/self-hosted-datalayer.mdx @@ -23,7 +23,7 @@ We're excited to get this in the community's hands so that we can learn, iterate The Tina Data Layer provides a GraphQL API that serves Markdown and JSON files backed by a database. You can think of the database as more of an ephemeral cache, since the single source of truth for your content is really your Markdown/JSON files. -![TinaCMS GraphQL Data Layer](https://res.cloudinary.com/forestry-demo/image/upload/v1675375259/tinacms-data-layer_geyrv8.png 'TinaCMS Data Layer') +![TinaCMS GraphQL Data Layer](/img/docs/tinacms-data-layer_geyrv8.png 'TinaCMS Data Layer') ## Why does TinaCMS need a Data Layer when I store my content in Markdown files? diff --git a/content/blog/simple-markdown-blog-nextjs.mdx b/content/blog/simple-markdown-blog-nextjs.mdx index 38a9b0f12..70252b77a 100644 --- a/content/blog/simple-markdown-blog-nextjs.mdx +++ b/content/blog/simple-markdown-blog-nextjs.mdx @@ -19,7 +19,7 @@ Next.js is a framework built on top of React for developing web applications. In Follow this step-by-step tutorial, and learn **how to implement the following Markdown blog in Next.js**: -![A complete overview of the Markdown-based Next.js blog](https://res.cloudinary.com/forestry-demo/image/upload/v1673425424/blog-media/tRBGrDoQ_1_dkgk2m.gif "A complete overview of the Markdown-based Next.js blog") + Now, let's learn how to implement this Next.js blog based on Markdown. @@ -41,7 +41,7 @@ npm run dev After cloning the project and starting the [Next.js dev server](https://nextjs.org/docs/api-reference/cli#development), navigate to `http://localhost:3000/` in your browser and you should be able to see the following page: -![The starter project in action](https://res.cloudinary.com/forestry-demo/image/upload/v1673425637/hm8AJj0t_hi0mer.png "The starter project in action") +![The starter project in action](/img/blog/simple-markdown-blog-nextjs/empty-tina-blog.png "The starter project in action") As you can see, the blog app is pretty simple at the moment. Let's now dig into the structure of this starter project to **learn how to turn this app into a real Markdown-based blog**. @@ -391,10 +391,10 @@ In the return object from `getStaticPaths()`, the following two keys are require Now, navigate to [`http://localhost:3000/blog/my-post`](http://localhost:3000/blog/my-post). This is what the BlogTemplate component looks like: -![http://localhost:3000/blog/my-post in action](https://res.cloudinary.com/forestry-demo/image/upload/v1673426650/mArAHU8g_1_bedrfy.gif "http://localhost:3000/blog/my-post in action") - As you can see, it perfectly renders the blog post data stored in Markdown format. + + ## Add a Homepage to Your Blog Let's finish this simple Markdown-based blog in Next.js by completing the home page. diff --git a/content/blog/syntax-highlighting-with-tina.mdx b/content/blog/syntax-highlighting-with-tina.mdx index 3768936b8..57c666101 100644 --- a/content/blog/syntax-highlighting-with-tina.mdx +++ b/content/blog/syntax-highlighting-with-tina.mdx @@ -6,7 +6,7 @@ last_edited: '2022-01-20T00:00:00Z' opengraph: image: url: >- - https://res.cloudinary.com/forestry-demo/image/upload/v1642688324/blog-media/syntax-highlighting-with-tina/syntax-highlight-cover.png + /img/blog/syntax-highlighting-with-tina/syntax-highlight-cover.png width: '1920,' height: '1080,' alt: 'Syntax Highlighting with Tina' @@ -42,7 +42,7 @@ yarn dev Once our Next.js application is running, you can navigate to [http://localhost:3000/post/HelloWorld](http://localhost:3000/post/HelloWorld). From there you will see a blog post that has a code block that looks a lot like regular text. When this is within a paragraph it may be hard for you or your editors to tell the difference between the code and regular text. Adding syntax highlighting will easily fix that! -![Image without syntax highlighting](https://res.cloudinary.com/forestry-demo/image/upload/v1642686958/blog-media/syntax-highlighting-with-tina/before-image.webp) +![Image prior](/img/blog/syntax-highlighting-with-tina/before-image.webp) ## Adding syntax highlighting @@ -128,7 +128,7 @@ export { Codeblock } [View the completed component in this commit](https://github.com/tinacms/examples/commit/983d80dd7fa07e29fb0d6802d989e40f260fb95d) -[![Join our Discord](https://res.cloudinary.com/forestry-demo/image/upload/v1642688157/blog-media/Join_our_discord.webp)](https://discord.com/invite/zumN63Ybpf) +[![Join our Discord](/img/join-discord.png)](https://discord.com/invite/zumN63Ybpf) ### Using our component in our `[slug].js` @@ -180,7 +180,7 @@ The final step is to use these `components` in our `TinaMarkdown`. To do that we Now, you can launch using `yarn dev` and navigate back to [http://localhost:3000/post/HelloWorld](http://localhost:3000/post/HelloWorld). You will see that our code block now has Prism syntax highlighting. -![Image with syntax highlighting](https://res.cloudinary.com/forestry-demo/image/upload/v1642686958/blog-media/syntax-highlighting-with-tina/after-image.webp) +![after](/img/blog/syntax-highlighting-with-tina/after-image.webp) You can find the finished code in our [GitHub](https://github.com/tinacms/examples/tree/main/syntax-highlighting) diff --git a/content/blog/tina-1-0-announcement.mdx b/content/blog/tina-1-0-announcement.mdx index 9c5c571b7..49294856b 100644 --- a/content/blog/tina-1-0-announcement.mdx +++ b/content/blog/tina-1-0-announcement.mdx @@ -34,7 +34,7 @@ You can check out the "getting started" docs for more info ## New pricing in effect TinaCloud's new pricing will go into effect now that Tina is out of Beta. For organizations that were created during the beta phase, pricing will go into effect on December 1st. -![Tina Launch Pricing](https://res.cloudinary.com/forestry-demo/image/upload/v1667564867/tina-io/blog/TinaCMS_pricing_1.png) +![Tina Launch Pricing](/img/blog/tina-1-0-announcement/TinaCMS_pricing_1.png) > Please see the [pricing page](https://tina.io/pricing/ 'pricing') for up to date TinaCloud rates @@ -42,7 +42,7 @@ TinaCloud's new pricing will go into effect now that Tina is out of Beta. For or TinaCMS's landing page also got a fresh new look along with this release. -![Tina Launch Pricing](https://res.cloudinary.com/forestry-demo/image/upload/v1667565910/tina-io/blog/tinaio-homepage.png) +![Tina Launch Pricing](/img/blog/tina-1-0-announcement/tinaio-homepage.png) Check it out at [tina.io](https://tina.io) diff --git a/content/blog/tina-cms-get-started.mdx b/content/blog/tina-cms-get-started.mdx index f781d547c..f0679a916 100644 --- a/content/blog/tina-cms-get-started.mdx +++ b/content/blog/tina-cms-get-started.mdx @@ -10,7 +10,7 @@ Until now, as a Tina user, you have enjoyed visual editing when interacting with In order to give the best experience to all users, Tina now offers two ways to edit content, visual editing and a more traditional looking CMS. Except with our traditional CMS, we are still powered by Markdown, JSON, or MDX and backed by Git. Here is a quick GIF of what it looks like implemented on a deployed website: -![Example Gif of Tina CMS](https://res.cloudinary.com/forestry-demo/video/upload/c_scale,w_1174/v1646412458/blog-media/getting-started-tina-admin/example.gif) + ### How to implement Tina? @@ -57,17 +57,16 @@ Now that you have Tina setup you can launch your application using the following Now, if you navigate to [http://localhost:3000/admin](http://localhost:3000/admin) you will see a new page. Go ahead and click the Edit with Tina button. -![Login Example](https://res.cloudinary.com/forestry-demo/image/upload/v1646412107/blog-media/getting-started-tina-admin/login-example.webp) - +![](/img/blog/getting-started-tina-admin/login-example.webp) You will land on a page that looks like this: -![Landing Example](https://res.cloudinary.com/forestry-demo/image/upload/v1646412108/blog-media/getting-started-tina-admin/landing-example.webp) +![](/img/blog/getting-started-tina-admin/landing-example.webp) ### Edit the content If you select “Blog Posts” on the left of the screen it will show you all the available posts for editing, you might notice that Tina placed a blog post named “Hello World” for you to look at. Go ahead and click it, and you will see an editable form. Feel free to change the title or the body and hit the save button. -![Example of editing with Tina](https://res.cloudinary.com/forestry-demo/image/upload/v1646412108/blog-media/getting-started-tina-admin/Editing%20example.jpg) +![Example of editing with Tina](/img/blog/getting-started-tina-admin/editing-example.jpg) ### What exactly happened? @@ -251,7 +250,7 @@ Second, there's a `string` field called `body` with `isBody` set to true. By set Now the new schema is ready, go ahead and restart your server using `yarn tina-dev` and navigate to [http://localhost:3000/admin](http://localhost:3000/admin). You will see that if you select the Blog Posts on the left side nav that you now have all three posts from Next.js. -![3 blog posts](https://res.cloudinary.com/forestry-demo/image/upload/v1646412108/blog-media/getting-started-tina-admin/post-list-example.webp) +![](/img/blog/getting-started-tina-admin/post-list-example.webp) If you choose the first post “dynamic routing” you will see all of the fields that we defined in our schema which match all the front matter. Go ahead and edit some fields like the title or the body and hit save. Now if you navigate to [http://localhost:3000/posts/dynamic-routing](http://localhost:3000/posts/dynamic-routing) you will see those changes! diff --git a/content/blog/tina-is-in-beta.mdx b/content/blog/tina-is-in-beta.mdx index 830a57acf..82bcb549f 100644 --- a/content/blog/tina-is-in-beta.mdx +++ b/content/blog/tina-is-in-beta.mdx @@ -9,7 +9,7 @@ The team at Tina has been working hard since June 2nd when we launched TinaCloud We are pleased to announce that Tina is in beta, and all of the core functionality is in place for your team to have a great content editing experience on Next.js sites! If you are excited as we are you can get started by [signing up](https://app.tina.io/register). But first, I'd love for you to stick around and hear about the team's vision, lessons learned, and what we have added. If you are new to Tina, here is a quick demo: -![Demo Gif](https://res.cloudinary.com/forestry-demo/video/upload/v1629294438/tina-io/Beta_Launch_Demo.gif) + ## A quick Message from Scott our CEO @@ -85,7 +85,7 @@ We also removed old guides that no longer promote Tina's best practices and move The Tina Starter was built originally to show "the power of Tina" while it did that, we didn't feel that it showed a real-world example. So we went back to the drawing board and created our new [Tina Starter](/guides/tina-cloud/starter/overview/), which includes a landing page, blog, and about pages. You can edit and rearrange the content and we styled it with TailwindCSS to give it some extra shine! Below is an example of just some of the work you can do: -![Quickstart Example](https://res.cloudinary.com/forestry-demo/image/upload/v1645712509/tina-io/docs/edit-alongside-content.gif) + ## Media Manager diff --git a/content/blog/tina-next-i18n.mdx b/content/blog/tina-next-i18n.mdx index 860344a71..fb52f4534 100644 --- a/content/blog/tina-next-i18n.mdx +++ b/content/blog/tina-next-i18n.mdx @@ -155,7 +155,7 @@ To create our files we are going to leverage a filename structure of `/p Below is an example of the file structure. -![Example of the file structure used when creating a new file in Tina](https://res.cloudinary.com/forestry-demo/image/upload/v1655216726/blog-media/tina-i8n/Screen_Shot_2022-06-09_at_10.34.47_AM.png) +![Example of the file structure used when creating a new file in Tina](/img/blog/i18n/test-blog-post.png) ## How to keep up to date with Tina? diff --git a/content/blog/tina-v-0.69.7.mdx b/content/blog/tina-v-0.69.7.mdx index b62665d2f..5b81f5f4a 100644 --- a/content/blog/tina-v-0.69.7.mdx +++ b/content/blog/tina-v-0.69.7.mdx @@ -42,15 +42,15 @@ ui: { Global forms can be edited from any page. They are accessed through the sidebar -![Global Forms Sidebar](https://res.cloudinary.com/forestry-demo/image/upload/v1663178182/blog-media/0.69.7/Screen_Shot_2022-09-14_at_2.53.21_PM.png) +![Global Forms Sidebar](/img/blog/0.69.7/index-json.png) -![Global Form](https://res.cloudinary.com/forestry-demo/image/upload/v1663153667/blog-media/0.69.7/global-form.png) +![Global Form](/img/blog/0.69.7/global-form.png) ## Event Log UI The sidebar now links to an "Event Log" UI, which makes it easier to debug things like the GitHub to Tina connection being broken. -![Event Log UI](https://res.cloudinary.com/forestry-demo/image/upload/v1663153677/blog-media/0.69.7/event-log.png) +![Event Log UI](/img/blog/0.69.7/event-log.png) ## S3 & "Digital Ocean Spaces" media stores diff --git a/content/blog/tina-v-1.1.3.mdx b/content/blog/tina-v-1.1.3.mdx index 8ff0c4616..f59db3d8c 100644 --- a/content/blog/tina-v-1.1.3.mdx +++ b/content/blog/tina-v-1.1.3.mdx @@ -33,7 +33,7 @@ Previously, this would match any content within `{{<` and `>}}`. Now, this will Editors will also be able to edit fields in the shortcodes individually, instead of through a global `text` field. -![shortcode ui](https://res.cloudinary.com/forestry-demo/image/upload/v1673527397/tina-io/docs/shortcodes.png) +![shortcode ui](/img/blog/tina-v-1.1.3/shortcodes.png) See [here](https://tina.io/docs/reference/types/rich-text/#custom-shortcode-syntax) for more info. @@ -41,7 +41,7 @@ See [here](https://tina.io/docs/reference/types/rich-text/#custom-shortcode-synt The field UI object now accepts a `min` and `max` when the field is `list: true`. If the list/group list/block field is at the max or min value, the add or remove buttons are disabled. -![min max](https://res.cloudinary.com/forestry-demo/image/upload/v1673542191/tina-io/docs/minmax.png) +![min max](/img/blog/tina-v-1.1.3/minmax.png) ## TOML & YML Support diff --git a/content/blog/tina-v-1.1.4.mdx b/content/blog/tina-v-1.1.4.mdx index a3aca1232..50d1cd272 100644 --- a/content/blog/tina-v-1.1.4.mdx +++ b/content/blog/tina-v-1.1.4.mdx @@ -17,7 +17,7 @@ Read our guide for setting this up [here](https://tina.io/guides/tinacms/separat Editors can now rename documents from the document list view -![Renaming Document](https://res.cloudinary.com/forestry-demo/image/upload/v1675179770/Screen_Shot_2023-01-31_at_11.13.32_AM_jnw3qo.png "Renaming Document") +![Renaming Document](/img/blog/tina-v-1.1.4/edit-doc.png "Renaming Document") ## Rich-text editor improvements @@ -29,7 +29,7 @@ Several improvements have been made to the rich-text editor to better safe-guard * Rich-text error links to raw-mode editor * Fix bug where switching from raw-mode to rich-text editor with errors would lose unsaved changes. -![rich-text-error](https://res.cloudinary.com/forestry-demo/image/upload/v1675180829/Screen_Shot_2023-01-26_at_10.53.16_AM_v4lfjo.png "rich-text-error") +![rich-text-error](/img/blog/tina-v-1.1.4/edit-rtf.png "rich-text-error") ## Other fixes & improvements diff --git a/content/blog/tina-v-1.3.2.mdx b/content/blog/tina-v-1.3.2.mdx index 1a6db7106..273690772 100644 --- a/content/blog/tina-v-1.3.2.mdx +++ b/content/blog/tina-v-1.3.2.mdx @@ -37,7 +37,7 @@ The above field will read/write to the frontmatter key `id`, which previously wa Editors can now browse media in the media library through a grid view. A sidebar slides out to show some image metadata: filename, image URL (coming soon). -![Media Grid View](https://res.cloudinary.com/forestry-demo/image/upload/v1678481393/tina-io/blog/media-manager_uuaotf.png "Media Grid View") +![Media Grid View](/img/blog/tina-v-1.3.2/media-manager_uuaotf.png "Media Grid View") Editors can also easily copy the absolute image URL from the media library. diff --git a/content/blog/tinacms-2022.mdx b/content/blog/tinacms-2022.mdx index 9e136a2e6..4ed889343 100644 --- a/content/blog/tinacms-2022.mdx +++ b/content/blog/tinacms-2022.mdx @@ -2,7 +2,7 @@ opengraph: image: url: >- - https://res.cloudinary.com/forestry-demo/image/upload/v1645630893/blog-media/tinacms-2022-vision.png + /img/blog/tinacms-2022/tinacms-2022-vision.png width: '1920,' height: '1080,' alt: TinaCMS in 2022 @@ -25,20 +25,20 @@ Your content creators don't need to know that - under the hood - Tina is powered Here’s a summary of what’s coming in 2022 with more details below. -![Tina launches version 1. More frameworks (Remix, Nuxt, SvelteKit, etc). A Headless API on top of your Git content. Markdown at scale. New UI. More open and more extendable](https://res.cloudinary.com/forestry-demo/image/upload/v1645630893/blog-media/tinacms-2022-vision.png) +![Tina launches version 1. More frameworks (Remix, Nuxt, SvelteKit, etc). A Headless API on top of your Git content. Markdown at scale. New UI. More open and more extendable](/img/blog/tinacms-2022/tinacms-2022-vision.png) ## Tina Goes 1.0 Tina is currently in Beta but we’re steadily progressing toward 1.0.  We expect this to happen relatively soon because we’re seeing more and more people try and fall in love with Tina every day ❤️. -![Community Feedback from Leroy](https://res.cloudinary.com/forestry-demo/image/upload/v1645631378/blog-media/tinacms-community-feedback-leroy.png) -![Community Feedback from Jason Mason](https://res.cloudinary.com/forestry-demo/image/upload/v1645631378/blog-media/tinacms-community-feedback-jason.png) +![Community Feedback from Leroy](/img/blog/tinacms-2022/tinacms-community-feedback-leroy.png) +![Community Feedback from Jason Mason](/img/blog/tinacms-2022/tinacms-community-feedback-jason.png) As Tina approaches 1.0 you will see some rough edges smoothed out like the UX around media management and improved performance when loading content in the CMS. Also, since we’ve been focused on solving the hardest problems first (like scaling Git to thousands of pages) you might have noticed that some functionality is missing, like simply deleting pages.  This functionality will be in place before 1.0 and Tina will be a full-fledged, mature CMS. ## More frameworks (Remix, Nuxt, SvelteKit, etc) -![next.js, remix, nuxt, hugo, eleventy](https://res.cloudinary.com/forestry-demo/image/upload/v1645631638/blog-media/SSG-logos.png) +![next.js, remix, nuxt, hugo, eleventy](/img/blog/tinacms-2022/SSG-logos.png) Tina has been focused on Next.js while in beta. This has reduced our maintenance “surface area” while we get the product right.  Before 1.0, we will open up Tina to other frameworks.  Phase 1 will include modern, data-agnostic, Javascript frameworks like Remix, Nuxt, and SvelteKit.  Phase 2 will include all JAMstack frameworks (Jekyll, Hugo, 11ty, etc). @@ -80,7 +80,7 @@ Tina’s UI will offer a more-traditional CMS experience for browsing content on ### 2. Built on Tailwind -Tina’s editing UI is moving to [Tailwind](https://tailwindcss.com/) to make it easier to customize and extend. ![tailwind css logo](https://res.cloudinary.com/forestry-demo/image/upload/v1645631818/blog-media/tailwindcss.jpg) +Tina’s editing UI is moving to [Tailwind](https://tailwindcss.com/) to make it easier to customize and extend. ![tailwind css logo](/img/blog/tinacms-2022/tailwindcss.jpg) ### 3. Blocks UI diff --git a/content/blog/tinacms-ui-whats-next.mdx b/content/blog/tinacms-ui-whats-next.mdx index 3bec58707..b6d7b89e9 100644 --- a/content/blog/tinacms-ui-whats-next.mdx +++ b/content/blog/tinacms-ui-whats-next.mdx @@ -10,7 +10,7 @@ This week we deployed [Visual Open Authoring](https://tinacms.org/blog/introduci You may have noticed that the editing interface on [tinacms.org](http://tinacms.org) is different than what's in our videos and what you have running locally. This new Toolbar was an experiment we made directly in the [tinacms.org repository](https://github.com/tinacms/tinacms.org 'GitHub: tinacms.org'). In this post, I will talk about why we took this approach and the next steps in making the Tina Toolbar available for everyone. -![TinaCMS UI Options](https://res.cloudinary.com/forestry-demo/image/upload/q_100/v1584115021/TinaCMS/sidebar-toolbar.jpg) +![TinaCMS UI Options](/img/blog/tinacms-ui-whats-next/sidebar-toolbar.jpg) ## Tina is not a CMS diff --git a/content/blog/tinasaurus-docusaurus-starter.mdx b/content/blog/tinasaurus-docusaurus-starter.mdx index 88308532f..fa0411daa 100644 --- a/content/blog/tinasaurus-docusaurus-starter.mdx +++ b/content/blog/tinasaurus-docusaurus-starter.mdx @@ -7,7 +7,7 @@ author: Scott Gallant & Scott Byrne We're excited to share [Tinasaurus](https://github.com/tinacms/tinasaurus ""), a Docusaurus starter site with support for TinaCMS. - + Tinasaurus includes: diff --git a/content/blog/using-graphql-with-the-filesystem.mdx b/content/blog/using-graphql-with-the-filesystem.mdx index 0ff43f0f6..b79806082 100644 --- a/content/blog/using-graphql-with-the-filesystem.mdx +++ b/content/blog/using-graphql-with-the-filesystem.mdx @@ -46,7 +46,8 @@ export function getAllPosts(fields = []) { And the result: -![](https://res.cloudinary.com/deuzrsg3m/image/upload/v1619558511/tina-blog-post/next-demo-home_kcnyv5.png) +![](/img/blog/using-graphql-with-the-filesystem/next-demo-home_kcnyv5.png) + > Demo: ➡️ [Start following along](https://github.com/tinacms/next-blog-starter-graphql/tree/start) @@ -126,7 +127,7 @@ Lorem ipsum dolor sit amet ... Woops, look who's showing up on our home page: -![](https://res.cloudinary.com/deuzrsg3m/image/upload/v1619560025/tina-blog-post/llama-woops_cchyel.png) +![](/img/blog/using-graphql-with-the-filesystem/llama-woops_cchyel.png) Can you spot the issue? We accidentally set `featured` to `"false"` instead of `false`! We made it a `string`, not a `boolean`. diff --git a/content/blog/using-the-power-of-mdx-with-tina.mdx b/content/blog/using-the-power-of-mdx-with-tina.mdx index a917bd778..b57e45926 100644 --- a/content/blog/using-the-power-of-mdx-with-tina.mdx +++ b/content/blog/using-the-power-of-mdx-with-tina.mdx @@ -121,7 +121,7 @@ Then on line 234 we can replace the div that held the parsed markdown with our T Go ahead and run `yarn dev` and navigate back to http://localhost:3000/demo/blog/HelloWorld you'll notice that the editing experience has changed, with the ability to insert markdown and a new button called "Embed". -![Tina Markdown Example](https://res.cloudinary.com/forestry-demo/image/upload/v1638886705/blog-media/Tina-markdown-demo.png) +![Tina Markdown Example](/img/blog/using-the-power-of-mdx-with-tina/Tina-markdown-demo.png) ## Adding an MDX Component @@ -222,8 +222,8 @@ Finally, we can update your `TinaMarkdown` component to pass the components for Now relaunch your application and navigate back to the editable page, then click the "Embed" button and you will see the "Callout" as an option. You will see a button appear in the editable UI and a new callout appear on the page. -![Callout](https://res.cloudinary.com/forestry-demo/image/upload/v1638886705/blog-media/Callout.png) +![Callout](/img/blog/using-the-power-of-mdx-with-tina/Callout.png) Then when you select the button you will have the option to switch the type and edit the text. -![Warning](https://res.cloudinary.com/forestry-demo/image/upload/v1638886705/blog-media/warning.png) +![Warning](/img/blog/using-the-power-of-mdx-with-tina/warning.png) diff --git a/content/blog/using-tinacms-with-nextjs.mdx b/content/blog/using-tinacms-with-nextjs.mdx index 33b0051f2..b728ca8b7 100644 --- a/content/blog/using-tinacms-with-nextjs.mdx +++ b/content/blog/using-tinacms-with-nextjs.mdx @@ -221,7 +221,7 @@ Currently, the Next Blog Starter grabs content from the file system. But since T The `getStaticPaths` query is going to need to know where all of your markdown files are located, with your current schema you have the option to use `postConnection` which will provide a list of all posts in your `posts` folder. Make sure your local server is running and navigate to http://localhost:4001/altair and select the Docs button. The Docs button gives you the ability to see all the queries possible and the variables returned: -![Altair Doc example](/gif/altair_doc.gif) + So based upon the `postConnection` you will want to query the `sys` which is the filesystem and retrieve the `filename`, which will return all the filenames without the extension. diff --git a/content/blog/who-is-logan-anderson.mdx b/content/blog/who-is-logan-anderson.mdx index 16b077592..47f5c054e 100644 --- a/content/blog/who-is-logan-anderson.mdx +++ b/content/blog/who-is-logan-anderson.mdx @@ -11,7 +11,7 @@ When I started here, I was introduced to Logan as a member of the Open Source te Who is Logan Anderson I hear you cry? Well, I sat down and asked the important questions, so without further ado, let us talk all about Logan. -![Logan Anderson](https://res.cloudinary.com/dub20ptvt/image/upload/v1630601684/logan.jpg) +![Logan Anderson](/img/people/logan.jpg) ## What are your favorite things to do? diff --git a/content/docs/contextual-editing/overview.mdx b/content/docs/contextual-editing/overview.mdx index 81c789dff..afbc1ec8a 100644 --- a/content/docs/contextual-editing/overview.mdx +++ b/content/docs/contextual-editing/overview.mdx @@ -8,11 +8,11 @@ previous: content/docs/features/data-fetching.mdx Out of the box, once you define a new collection in Tina, its content becomes available through the "basic editor". -![basic editor](https://res.cloudinary.com/forestry-demo/image/upload/v1647455231/tina-io/docs/basic-editor.png) +![basic editor](/img/docs/basic-editor.png) Tina also allows for "Visual Editing" so that editors can see their pages being updated in real-time as they make changes -![contextual editor](https://res.cloudinary.com/forestry-demo/image/upload/v1647455231/tina-io/docs/contextual-editing.png) +![contextual editor](/img/docs/contextual-editing.png) ## Adding contextual-editing to a page diff --git a/content/docs/contextual-editing/react.mdx b/content/docs/contextual-editing/react.mdx index 12ece2f1d..3828c933b 100644 --- a/content/docs/contextual-editing/react.mdx +++ b/content/docs/contextual-editing/react.mdx @@ -42,7 +42,7 @@ export const getStaticProps = async () => { } ``` -![usetina-hello-world](https://res.cloudinary.com/forestry-demo/image/upload/q_32/v1643294947/tina-io/hello-world.png) +![usetina-hello-world](/img/docs/contextual-editing/hello-world.png) ## The useTina hook: @@ -61,7 +61,7 @@ After a page is setup with the `useTina` hook, you can add a [router to your col Tina's "click to edit" feature allows editors to select the element they want to edit on the page in order to see it in the sidebar. - + > [Try the demo](https://quick-edit-demo.vercel.app/admin#/~)! diff --git a/content/docs/contextual-editing/router.mdx b/content/docs/contextual-editing/router.mdx index 64fa097cf..9f9d1e8ba 100644 --- a/content/docs/contextual-editing/router.mdx +++ b/content/docs/contextual-editing/router.mdx @@ -74,7 +74,7 @@ const default defineConfig({ Now when a document is clicked in the CMS we will be re-directed to the page in the site with visual editing. - + ## Summary diff --git a/content/docs/contextual-editing/tinafield.mdx b/content/docs/contextual-editing/tinafield.mdx index eff2d963a..91ac82cb3 100644 --- a/content/docs/contextual-editing/tinafield.mdx +++ b/content/docs/contextual-editing/tinafield.mdx @@ -7,7 +7,7 @@ title: The tinafield helper Tina's "click to edit" feature allows editors to select the element they want to edit on the page in order to see it in the sidebar. - + > [Try the demo](https://quick-edit-demo.vercel.app/admin#/~)! diff --git a/content/docs/drafts/editorial-workflow.mdx b/content/docs/drafts/editorial-workflow.mdx index 8a7c710db..8283bc0de 100644 --- a/content/docs/drafts/editorial-workflow.mdx +++ b/content/docs/drafts/editorial-workflow.mdx @@ -16,7 +16,7 @@ If your content editors need to work on multiple branches, you can utilize the E The Editorial Workflow can be enabled in TinaCloud. -![Editorial Workflow Setup](https://res.cloudinary.com/forestry-demo/image/upload/v1689016108/blog-media/editorial-workflow/enable-editorial-workflow.png) +![Editorial Workflow Setup](/img/blog/editorial-workflow/enable-editorial-workflow.png) To set up the Editorial Workflow, follow these steps: @@ -29,7 +29,7 @@ To set up the Editorial Workflow, follow these steps: After completing the setup, you can access the CMS, and a new branch switcher button will appear at the top. When you are on a protected branch and click "Save," a modal will prompt you to enter the name of the new branch you wish to save to. -![Editorial Workflow Save](https://res.cloudinary.com/forestry-demo/image/upload/v1689033651/blog-media/editorial-workflow/create-branch_bgpgwn.png) +![Editorial Workflow Save](/img/blog/introducing-editorial-workflow-features-for-your-team/create-branch_bgpgwn.png) Once you enter the new branch name, the following actions will occur: @@ -46,13 +46,13 @@ When you are ready to publish your content, merge the draft pull request into th In the branch list modal, you can click on the dropdown and click "View Pull Request" to view the pull request on GitHub. This will open a new tab in your browser. This link will only aprear of the pull request has been created with TinaCMS and not if it was created manually. -![PR Links](https://res.cloudinary.com/forestry-demo/image/upload/v1689082820/blog-media/editorial-workflow/preview-link.png) +![PR Links](/img/docs/editorial-workflow/preview-link.png) ## Preview links You can setup preview links for your pull requests. -![Editorial Workflow Save](https://res.cloudinary.com/forestry-demo/image/upload/v1689035096/blog-media/editorial-workflow/share-btn_xvmxii.png) +![Editorial Workflow Save](/img/blog/editorial-workflow/share-btn_xvmxii.png) This will allow you to preview your content changes before merging them into the protected branch. To setup preview links, In your config file add a `previewUrl` function to the `ui` object. This function will receive the branch name as an argument and should return the preview url for that branch. For example: diff --git a/content/docs/editing/blocks.mdx b/content/docs/editing/blocks.mdx index d04fdb6ab..4bed1d71b 100644 --- a/content/docs/editing/blocks.mdx +++ b/content/docs/editing/blocks.mdx @@ -8,7 +8,7 @@ previous: content/docs/editing/markdown.mdx Tina supports block-based editing, so that your editors can build out full pages using your pre-defined blocks. -![block-based-editing](https://res.cloudinary.com/forestry-demo/image/upload/v1645712511/tina-io/docs/your-blocks.gif) + Let's say you want your editors to build out a page, and you have 3 main "block" types to start: @@ -258,7 +258,7 @@ In our case: ## Adding a visual block selector (Experimental) -![Preview of Visual Block Selector](https://res.cloudinary.com/forestry-demo/video/upload/w_800/v1647540863/Tina%20Newsletter/visual-selector-preview.gif) + diff --git a/content/docs/editing/markdown.mdx b/content/docs/editing/markdown.mdx index 62bd47626..b91f1d6ae 100644 --- a/content/docs/editing/markdown.mdx +++ b/content/docs/editing/markdown.mdx @@ -111,7 +111,7 @@ const MyBlogPost = (props) => { If you are using `mdx` as the format, you'll have the ability to define custom components that your editors can leverage. -![Docs_Starter_Example](https://res.cloudinary.com/forestry-demo/video/upload/v1638887594/blog-media/Docs_Starter_Example.gif) + > How does MDX work with Tina?Tina doesn't require a compilation step like other MDX tooling you > might be familiar with, so it needs to know about all the possible elements @@ -168,7 +168,7 @@ export default defineConfig({ By defining the above `NewsletterSignup` template, our editors now have the ability to add that template to the page body. -![MDX Template](https://res.cloudinary.com/forestry-demo/image/upload/v1663772538/tina-io/docs/md/Screen_Shot_2022-09-21_at_12.00.15_PM.png) +![MDX Template](/img/docs/editing-md/md-embed.png) Saving a document would output a component in the markdown body that looks like this: @@ -218,7 +218,7 @@ const MyBlogPost = (props) => { Once our custom component has been registered with TinaMarkdown, editors can easily add components, and immediately see them rendered on the page. -![MDX Template](https://res.cloudinary.com/forestry-demo/image/upload/v1663774068/tina-io/docs/md/Screen_Shot_2022-09-21_at_12.25.11_PM.png) +![MDX Template](/img/docs/editing-md/embed-in-md.png) ## Reference diff --git a/content/docs/editing/overview.mdx b/content/docs/editing/overview.mdx index ec5e4a321..0513ae359 100644 --- a/content/docs/editing/overview.mdx +++ b/content/docs/editing/overview.mdx @@ -19,10 +19,13 @@ date: '2021-01-01T00:00:00.000Z' Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ultricies urna ut ex varius, sed fringilla nibh posuere. Vestibulum a pulvinar eros, vel varius orci. Sed convallis purus sed tellus pellentesque ornare quis non velit. Quisque eget nibh nec nisl volutpat aliquet. Donec pharetra turpis vitae diam aliquam rutrum. Sed porta elit ut mi vehicula suscipit. Ut in pulvinar nunc. ``` -![markdown-editing](https://res.cloudinary.com/forestry-demo/image/upload/v1645712826/tina-io/docs/markdown.gif) +Which we can render on the page like + + + But, sometimes you may want to give your editors more of a template to work with. Tina also supports blocks-based editing, so that you can enable your editors to build out full pages using your pre-defined blocks -![blocks-based-editing](https://res.cloudinary.com/forestry-demo/image/upload/v1645712511/tina-io/docs/your-blocks.gif) + Continue reading to learn more about different ways to edit content with Tina. diff --git a/content/docs/editing/single-document-collections.mdx b/content/docs/editing/single-document-collections.mdx index 0b120439c..ec820e4ad 100644 --- a/content/docs/editing/single-document-collections.mdx +++ b/content/docs/editing/single-document-collections.mdx @@ -38,7 +38,7 @@ export default defineConfig({ Once both settings have been applied, and the document contains a single file, the UI will forego the list page and direct the user straight to the document. - + ## Caveats diff --git a/content/docs/extending-tina/custom-field-components.mdx b/content/docs/extending-tina/custom-field-components.mdx index 6aa0b9ef0..79fc6983c 100644 --- a/content/docs/extending-tina/custom-field-components.mdx +++ b/content/docs/extending-tina/custom-field-components.mdx @@ -22,7 +22,7 @@ Checkout the [react-final-form](https://github.com/final-form/react-final-form#f Here is a custom slider component that can be used for adjusting image saturation. -![A basic slider custom component](https://res.cloudinary.com/forestry-demo/image/upload/v1652976482/tina-io/docs/extending-tina/image-saturation.png) +![A basic slider custom component](/img/docs/extending-tina/image-saturation.png) ```tsx import { defineConfig, wrapFieldsWithMeta } from 'tinacms' diff --git a/content/docs/extending-tina/customize-list-ui.mdx b/content/docs/extending-tina/customize-list-ui.mdx index b058aeab7..0225468c7 100644 --- a/content/docs/extending-tina/customize-list-ui.mdx +++ b/content/docs/extending-tina/customize-list-ui.mdx @@ -8,7 +8,7 @@ previous: content/docs/extending-tina/custom-field-components.mdx If list is `true` the default label is often not very useful to editors. -![list UI](https://res.cloudinary.com/forestry-demo/image/upload/v1649941182/tina-io/docs/extending-tina/Extending_Tina_No_List_Props.png) +![list UI](/img/docs/extending-tina/Extending_Tina_No_List_Props.png) The label used for list items can be customized using the `itemProps` function. The main use-case for this is to provide a custom label based on the data in the component. @@ -45,7 +45,7 @@ For example, to use the `title` field as the label for this image gallery collec ``` which will render as: -![List UI with label prop](https://res.cloudinary.com/forestry-demo/image/upload/v1649941182/tina-io/docs/extending-tina/Extending_Tina_Label_List_Props.png) +![List UI with label prop](/img/docs/extending-tina/Extending_Tina_Label_List_Props.png) Although providing a custom label is the most common use-case of `itemProps`, the `className` and `style` props can also be returned to allow custom styling of the list component. @@ -85,7 +85,7 @@ For example: ``` which will render as: -![List UI with label and style prop](https://res.cloudinary.com/forestry-demo/image/upload/v1649941182/tina-io/docs/extending-tina/Extending_Tina_Style_List_Props.png) +![List UI with label and style prop](/img/docs/extending-tina/Extending_Tina_Style_List_Props.png) ## Video Tutorial diff --git a/content/docs/extending-tina/validation.mdx b/content/docs/extending-tina/validation.mdx index acfc88788..45c541de9 100644 --- a/content/docs/extending-tina/validation.mdx +++ b/content/docs/extending-tina/validation.mdx @@ -30,7 +30,7 @@ To include other field values of the form in the validation, a data argument can } ``` -![](https://res.cloudinary.com/forestry-demo/image/upload/v1722216591/invalid1_fbnwh1.png) +![](/img/docs/extending-tina/invalid1_fbnwh1.png) The following schema types support the use of `validate`: diff --git a/content/docs/forestry/accessing-cms.mdx b/content/docs/forestry/accessing-cms.mdx index e772fc500..9138eeafc 100644 --- a/content/docs/forestry/accessing-cms.mdx +++ b/content/docs/forestry/accessing-cms.mdx @@ -19,7 +19,8 @@ To set this up, your site's build script will change to something like: The `tinacms build` step outputs the TinaCMS dashboard SPA in your site's build directory. Once TinaCMS is setup, your editors will access the CMS via (`/admin`) -![](https://res.cloudinary.com/forestry-demo/image/upload/v1670430150/tina-io/docs/forestry-migration/accessing-admin.gif) + + ## Extra flexibility diff --git a/content/docs/forestry/common-errors.mdx b/content/docs/forestry/common-errors.mdx index 2b0960647..31882f345 100644 --- a/content/docs/forestry/common-errors.mdx +++ b/content/docs/forestry/common-errors.mdx @@ -108,7 +108,7 @@ In forestry you could have a block field that had a template that was not define [Error] GetCollection failed: Unable to fetch, errors: Error querying file from collection pages. Please run "tinacms audit" or add the --verbose option for more info ``` -![](https://res.cloudinary.com/forestry-demo/image/upload/v1673619483/tina-io/docs/forestry-migration/Screen-Shot-Error-Messager.png) +![](/img/docs/forestry-migration/Screen-Shot-Error-Messager.png) This can happen for many reasons. Some common reasons are because the data you are trying to fetch is diff --git a/content/docs/forestry/content-modelling.mdx b/content/docs/forestry/content-modelling.mdx index 9ec46ccaf..cb72bcfe1 100644 --- a/content/docs/forestry/content-modelling.mdx +++ b/content/docs/forestry/content-modelling.mdx @@ -7,7 +7,7 @@ Another key difference between the two platforms is how content modelling is han ## Content Modelling in Forestry -![](https://res.cloudinary.com/forestry-demo/image/upload/v1670430594/tina-io/docs/forestry-migration/fmt.png) +![](/img/docs/forestry-migration/fmt.png) This can be a convenient way to get started, but it may not be as flexible as working with content models in code. diff --git a/content/docs/forestry/drafts.mdx b/content/docs/forestry/drafts.mdx index aca812269..33a59532a 100644 --- a/content/docs/forestry/drafts.mdx +++ b/content/docs/forestry/drafts.mdx @@ -7,13 +7,13 @@ id: '/docs/forestry/drafts/' In Forestry, if you're using a static site generator like Hugo, we automatically show a "draft" toggle for each document. This makes it easy to switch between draft and published versions of your content, and to preview your changes before making them live. -![Forestry Drafts](https://res.cloudinary.com/forestry-demo/image/upload/v1670503904/tina-io/docs/forestry-migration/forestry-drafts.png) +![Forestry Drafts](/img/docs/forestry-migration/forestry-drafts.png) ## Drafts in Tina In TinaCMS, you need to explicitly add a "draft" field to any collection that can be a draft. This means that you have more control over which collections can be drafts, but it also means that you'll need to add this field yourself, rather than having it automatically included. -![Tina Drafts](https://res.cloudinary.com/forestry-demo/image/upload/v1670504072/tina-io/docs/forestry-migration/tina-drafts.png) +![Tina Drafts](/img/docs/forestry-migration/tina-drafts.png) ```js // ... diff --git a/content/docs/forestry/migrate.mdx b/content/docs/forestry/migrate.mdx index c84860964..9dd769976 100644 --- a/content/docs/forestry/migrate.mdx +++ b/content/docs/forestry/migrate.mdx @@ -136,7 +136,7 @@ If you are using Netlify, this is configured in `app.netlify.com/sites/ This feature is optional, and is only available in React-based sites (Vue-support coming in the future). For non-React based sites, your editors are still able to use TinaCMS's basic editor. -![basic editor](https://res.cloudinary.com/forestry-demo/image/upload/v1647455231/tina-io/docs/basic-editor.png) +![basic editor](/img/docs/basic-editor.png) diff --git a/content/docs/graphql/cli.mdx b/content/docs/graphql/cli.mdx index c0a3c2610..1ac795a4b 100644 --- a/content/docs/graphql/cli.mdx +++ b/content/docs/graphql/cli.mdx @@ -61,4 +61,4 @@ Generating Tina config Once the graphql server is running, you can start to explore your graphQL content through the Altair client at `http://localhost:3000/admin/index.html#/graphql` -![Altair client](https://res.cloudinary.com/forestry-demo/image/upload/v1645712822/tina-io/docs/altair_doc.gif) + diff --git a/content/docs/graphql/overview.mdx b/content/docs/graphql/overview.mdx index 32c9a3269..36bcc5813 100644 --- a/content/docs/graphql/overview.mdx +++ b/content/docs/graphql/overview.mdx @@ -7,4 +7,4 @@ TinaCMS is a git-backed content management system, that generates a GraphQL API This gives the developer all the benefits of using git-backed content (version control, content-ownership, branching, etc) but also adds a structured API that can easily be queried. -![Altair client](https://res.cloudinary.com/forestry-demo/image/upload/v1645712822/tina-io/docs/altair_doc.gif) + diff --git a/content/docs/guides/docusaurus.mdx b/content/docs/guides/docusaurus.mdx index 2369d2b85..45927db12 100644 --- a/content/docs/guides/docusaurus.mdx +++ b/content/docs/guides/docusaurus.mdx @@ -145,11 +145,11 @@ Once we've written our schema and everything's wired up, we'll be able to edit f Editing the blocks-based homepage with Tina: -![Editing Homepage](https://res.cloudinary.com/forestry-demo/image/upload/v1675108174/tina-io/docs/docusaurus/tinasaurus-home-editing.png "Editing the Docusaurus example homepage in Tina") +![Editing Homepage](/img/docs/docusaurus/tinasaurus-home-editing.png "Editing the Docusaurus example homepage in Tina") Editing an MDX page with Tina: -![MDX Editing](https://res.cloudinary.com/forestry-demo/image/upload/v1675108174/tina-io/docs/docusaurus/tinasaurus-doc-editing.png "Editing MDX Docusaurus Page in TinaCMS") +![MDX Editing](/img/docs/docusaurus/tinasaurus-doc-editing.png "Editing MDX Docusaurus Page in TinaCMS") ## Notes diff --git a/content/docs/guides/internationalization.mdx b/content/docs/guides/internationalization.mdx index 90fea44f7..8c116b65d 100644 --- a/content/docs/guides/internationalization.mdx +++ b/content/docs/guides/internationalization.mdx @@ -84,7 +84,7 @@ const getStaticProps = async({ params, locale }) { With this setup, editors will browse locales for each collection via the document list. -![Localized List](https://res.cloudinary.com/forestry-demo/image/upload/v1694005020/tina-io/docs/i18n/lang-folders.png) +![Localized List](/img/docs/i18n/lang-folders.png) If a user wants to create a new localized version of an existing document, they can click "duplicate document" from the document list, and prepend the desired locale in the new document's filename. @@ -149,4 +149,4 @@ const PageComponent = ({ data, locale }) => { TinaCMS will display all localized fields as children of the root-level field. -![Localized Fields](https://res.cloudinary.com/forestry-demo/image/upload/v1694006057/tina-io/docs/i18n/localized-fields.png) +![Localized Fields](/img/docs/i18n/localized-fields.png) diff --git a/content/docs/guides/nextjs-internationalization.mdx b/content/docs/guides/nextjs-internationalization.mdx index 603b2ba9e..a12750863 100644 --- a/content/docs/guides/nextjs-internationalization.mdx +++ b/content/docs/guides/nextjs-internationalization.mdx @@ -5,7 +5,7 @@ title: Internationalization with NextJS+Tina ## Overview -![Localized List](https://res.cloudinary.com/forestry-demo/image/upload/v1694005020/tina-io/docs/i18n/lang-folders.png) +![Localized List](/img/docs/i18n/lang-folders.png) Here at Tina, we are still working on our built-in solution for internationalizing your website. @@ -110,7 +110,7 @@ const getStaticProps = async({ params, locale }) { ## Create Locale-Ready Documents -![Create Locale Document](https://res.cloudinary.com/forestry-demo/image/upload/v1649448138/tina-io/docs/i18n/subfolder-create-new.png) +![Create Locale Document](/img/docs/nextjs-internationalization/subfolder-create-new.png) Now, we'll venture into the CMS either through the Global Nav or directly via `/admin`. @@ -122,7 +122,7 @@ For our example, we'll want to create three versions in our `post` collection by ## Testing -![Editing English](https://res.cloudinary.com/forestry-demo/image/upload/v1649448526/tina-io/docs/i18n/subfolder-edit-en.png) +![Editing English](/img/docs/nextjs-internationalization/subfolder-edit-en.png) With our Documents created, we can confirm that the correct Document is loaded based on the user's `locale` by adding a `console.log` to `getStaticProps`: @@ -165,7 +165,7 @@ locale en-US locale fr ``` -![Editing French](https://res.cloudinary.com/forestry-demo/image/upload/v1649448481/tina-io/docs/i18n/subfolder-edit-fr.png) +![Editing French](/img/docs/fr/subfolder-edit-fr.png) ## Next Steps diff --git a/content/docs/integration/frameworks.mdx b/content/docs/integration/frameworks.mdx index 497aef610..7de61fc58 100644 --- a/content/docs/integration/frameworks.mdx +++ b/content/docs/integration/frameworks.mdx @@ -6,7 +6,7 @@ title: Frameworks Tina's default "basic editor" works in a wide variety of frameworks. It reads/writes file-based content (Markdown, MDX, JSON, etc). -![basic editor](https://res.cloudinary.com/forestry-demo/image/upload/v1647455231/tina-io/docs/basic-editor.png) +![basic editor](/img/docs/basic-editor.png) > Tina also allows support for ["Visual Editing"](/docs/contextual-editing/overview/) so that editors can see their pages being updated in real-time as they make changes. Visual editing is currently limited to React-based frameworks (NextJS, React, etc). diff --git a/content/docs/introduction/faq.mdx b/content/docs/introduction/faq.mdx index 510c790c6..206af89eb 100644 --- a/content/docs/introduction/faq.mdx +++ b/content/docs/introduction/faq.mdx @@ -205,7 +205,7 @@ The current branch that Tina is using is invalid or undefined. Double check that You can view the branches that have been indexed by TinaCloud by visiting `https://app.tina.io/projects//configuration`. -![Indexed Branches](https://res.cloudinary.com/forestry-demo/image/upload/v1673277689/tina-io/docs/tina-cloud/Screen_Shot_2023-01-09_at_11.20.46_AM.png) +![Indexed Branches](/img/docs/tina-cloud/branch-status.png) ### How do I resolve `tina directory not pushed to git` errors? @@ -237,6 +237,6 @@ Double check you aren't trying to access a document that doesn't exist. After choosing which starter template to deploy, and being redirected to Vercel - a popup for Vercel to add their GitHub app may fail to open. Look in the bottom left corner for a toast message saying "The popup to install the GitHub App could not be opened. ". -![](https://res.cloudinary.com/forestry-demo/image/upload/v1727309107/docs/vercel-popup-blocked_ogt6fr.png) +![](/img/docs/introduction/vercel-popup-blocked_ogt6fr.png) To fix, check your browser's address bar for blocked popups, allow them, and retry. diff --git a/content/docs/introduction/using-starter.mdx b/content/docs/introduction/using-starter.mdx index 4e7385775..b8717fab6 100644 --- a/content/docs/introduction/using-starter.mdx +++ b/content/docs/introduction/using-starter.mdx @@ -18,7 +18,7 @@ npx create-tina-app@latest From there, you will be prompted a few quick setup questions: -![](https://res.cloudinary.com/forestry-demo/image/upload/v1722563013/tina-io/docs/2024-08-02_10-45-00_nhrpyj.png) +![](/img/docs/introduction/cli-starter.png) Once your local starter has been created, to run the starter: `cd ` into its new directory & run: @@ -29,4 +29,4 @@ yarn dev Next we'll show you how to use the Tina editor! -![Visua Editing with Tina](https://res.cloudinary.com/forestry-demo/video/upload/du_16,w_700,e_loop/tina-io/new-homepage/homepage-demo-2.gif) + \ No newline at end of file diff --git a/content/docs/product-tour.mdx b/content/docs/product-tour.mdx index 99b6d69a5..f67852d55 100644 --- a/content/docs/product-tour.mdx +++ b/content/docs/product-tour.mdx @@ -14,94 +14,91 @@ Here we give a quick **2 minute overview of TinaCMS**, and how it fits into your TinaCMS is an open-source Content Management System (CMS) that seamlessly integrates with your Markdown workflow. -![Intro-gif](https://res.cloudinary.com/forestry-demo/image/upload/v1645712511/tina-io/docs/your-blocks.gif) - ### Your Website - With TinaCMS, The developer hosts the site where they like, using whichever framework they choose. -![Website-png](https://res.cloudinary.com/forestry-demo/image/upload/v1689874025/tina-io/docs/product-tour/headless_cms1.png) +![Website-png](/img/docs/product-tour/headless_cms1.png) ### Headless CMS - TinaCMS is "Headless", meaning it's decoupled from your website. TinaCMS provides a queryable content API that your website's code consumes. -![Headless-png](https://res.cloudinary.com/forestry-demo/image/upload/v1689874025/tina-io/docs/product-tour/headless_cms2.png) +![Headless-png](/img/docs/product-tour/headless_cms2.png) ## The CMS Backend - The TinaCMS backend provides the API for querying your content, offering support for filtering, searching, and pagination. -![Queryable-db-png](https://res.cloudinary.com/forestry-demo/image/upload/v1689874024/tina-io/docs/product-tour/queryable_database.png) +![Queryable-db-png](/img/docs/product-tour/queryable_database.png) ### Git-backed Content - All your content gets backed by git into JSON/Markdown/MDX files -![Git-backed-png](https://res.cloudinary.com/forestry-demo/image/upload/v1689874025/tina-io/docs/product-tour/git-backed.png) +![Git-backed-png](/img/docs/product-tour/git-backed.png) ### TinaCloud - Out of the box, we provide an easy-to-use hosted version of the backend, called TinaCloud. -![Tina-cloud-png](https://res.cloudinary.com/forestry-demo/image/upload/v1689874024/tina-io/docs/product-tour/tina-cloud.png) +![Tina-cloud-png](/img/docs/product-tour/tina-cloud.png) ### Self-hosted Backend - For those preferring more control and customization, TinaCMS also allows you to host the backend entirely on your own stack. -![self-hosted-backend-png](https://res.cloudinary.com/forestry-demo/image/upload/v1689874024/tina-io/docs/product-tour/self-host-backend.png) +![self-hosted-backend-png](/img/docs/product-tour/self-host-backend.png) ## The CMS Frontend - TinaCMS provides an intuitive CMS interface for your editors. For sites using React, TinaCMS supports "Visual Editing" to allow content editors to see real-time changes. -![your-blocks-gif](https://res.cloudinary.com/forestry-demo/image/upload/v1645712511/tina-io/docs/your-blocks.gif) ### /admin route - Users interact with the CMS by navigating to the `/admin` page on your site. -![admin-route](https://res.cloudinary.com/forestry-demo/image/upload/v1689874024/tina-io/docs/product-tour/admin.png) +![admin-route](/img/docs/product-tour/admin.png) ### Saving - When users make a change in the CMS, a commit is made back to your Git repository. -![saving-png](https://res.cloudinary.com/forestry-demo/image/upload/v1689874024/tina-io/docs/product-tour/git-save.png) +![saving-png](/img/docs/product-tour/git-save.png) ## Integrating TinaCMS into a site TinaCMS can be setup on your site with `tinacms init`. This installs a few Tina packages, and add some boilerplate -![cli-init-png](https://res.cloudinary.com/forestry-demo/image/upload/v1689819318/tina-io/docs/product-tour/cli-init.png) +![cli-init-png](/img/docs/product-tour/cli-init.png) ### Running TinaCMS Locally - You also have the flexibility to run TinaCMS locally, sourcing local files instead of interacting with the hosted API. This gives developers an ultra-fast feedback loop. -![local-tina](https://res.cloudinary.com/forestry-demo/image/upload/v1689874024/tina-io/docs/product-tour/local-workflow.png) +![local-tina](/img/docs/product-tour/local-workflow.png) ### Content Modelling - Content in TinaCMS is modelled using a `tina/config.ts` file in your project. Through this, you can define "collections" that model various content types on your site. -![content-modeling-png](https://res.cloudinary.com/forestry-demo/image/upload/v1690206543/tina-io/docs/product-tour/content-modelling.png) +![content-modeling-png](/img/docs/product-tour/content-modelling.png) ### Data-fetching - TinaCMS provides a GraphQL API, making data-fetching more efficient and powerful. -![graphql-qeury-5-png](https://res.cloudinary.com/forestry-demo/image/upload/v1690205968/tina-io/docs/product-tour/graphql-query_5.png) +![graphql-qeury-5-png](/img/docs/product-tour/graphql-query_5.png) ### Client - Moreover, we also generate a user-friendly client that simplifies the process of querying your content. -![client-png](https://res.cloudinary.com/forestry-demo/image/upload/v1690206445/tina-io/docs/product-tour/client.png) +![client-png](/img/docs/product-tour/client.png) ### Type-safety - TinaCMS emphasizes type safety, ensuring your content queries remain error-free and consistent, thus improving code reliability and maintainability. -![type-safety-png](https://res.cloudinary.com/forestry-demo/image/upload/v1690206441/tina-io/docs/product-tour/client-typesafe.png) +![type-safety-png](/img/docs/product-tour/client-typesafe.png) diff --git a/content/docs/reference/fields.mdx b/content/docs/reference/fields.mdx index f1214bcba..8809d373c 100644 --- a/content/docs/reference/fields.mdx +++ b/content/docs/reference/fields.mdx @@ -101,7 +101,7 @@ export default defineConfig({ `ui.max` only takes effect on `object` field types with `list: true` specified. It also isn't compatible with `object` field types using `templates`. It disables the add button in the editor once at least the given number of elements have been added. -![](https://res.cloudinary.com/forestry-demo/image/upload/v1726119767/tina-io/docs/Screenshot_2024-09-12_at_3.42.29_pm_odmdvs.png) +![](/img/docs/reference/obj-list.png) ```javascript { @@ -128,7 +128,7 @@ It can apply to all field types with list `list: true` specified, provided they * [Object Field Type](/docs/reference/types/object/) * [Image Field Type](/docs/reference/types/image/) -![](https://res.cloudinary.com/forestry-demo/image/upload/v1726120291/tina-io/docs/Screenshot_2024-09-12_at_3.50.44_pm_dikc3n.png) +![](/img/docs/reference/llama-list.png) ```javascript { diff --git a/content/docs/reference/media/repo-based.mdx b/content/docs/reference/media/repo-based.mdx index 4d3e04304..ecb63fa76 100644 --- a/content/docs/reference/media/repo-based.mdx +++ b/content/docs/reference/media/repo-based.mdx @@ -142,6 +142,6 @@ Repo-based media is designed to be used around a single-branch workflow. If your If you are configuring Tina on a non-default branch (and the Tina config has not yet been merged to your default branch), you may see this message in the TinaCloud media settings: -![](https://res.cloudinary.com/forestry-demo/image/upload/v1688478218/tina-io/docs/media-not-configured_lnr5lw.png) +![](/img/docs/reference/media-not-configured_lnr5lw.png) To workaround this, you may need to enable media **after** merging Tina to your default branch. diff --git a/content/docs/reference/rich-text-usage/markdown-shortcode.mdx b/content/docs/reference/rich-text-usage/markdown-shortcode.mdx index 288a163e0..6ab38d228 100644 --- a/content/docs/reference/rich-text-usage/markdown-shortcode.mdx +++ b/content/docs/reference/rich-text-usage/markdown-shortcode.mdx @@ -163,4 +163,4 @@ If setting a default value for a rich-text field, you must provide the document The shortcode appears in the CMS as any other custom markdown embed. To inspect the shortcode in the CMS, use the raw markdown option in the editor. -![](https://res.cloudinary.com/forestry-demo/image/upload/v1726549409/tina-io/docs/2024-09-17_15-01-58_lqfbf9.png) +![](/img/docs/reference/rtf-toolbar.png) diff --git a/content/docs/reference/rich-text-usage/markdown-tables.mdx b/content/docs/reference/rich-text-usage/markdown-tables.mdx index 1b9a6d748..8f85a0176 100644 --- a/content/docs/reference/rich-text-usage/markdown-tables.mdx +++ b/content/docs/reference/rich-text-usage/markdown-tables.mdx @@ -46,7 +46,7 @@ const MyTable = props => ## Showcase -![](https://res.cloudinary.com/forestry-demo/image/upload/v1726549733/tina-io/docs/2024-09-13_15-59-11_1_y2elbn.gif) + ## Known Issues diff --git a/content/docs/reference/self-hosted/database-adapter/vercel-kv.mdx b/content/docs/reference/self-hosted/database-adapter/vercel-kv.mdx index 1bbc32107..928a35f50 100644 --- a/content/docs/reference/self-hosted/database-adapter/vercel-kv.mdx +++ b/content/docs/reference/self-hosted/database-adapter/vercel-kv.mdx @@ -11,7 +11,7 @@ To get started, you will need to set up some environment variables. First copy your values from the Vercel or Upstash dashboard. -![Vercel Dashboard](https://res.cloudinary.com/forestry-demo/image/upload/v1690998148/tina-io/docs/self-hosted/Screenshot_2023-08-02_at_1.29.58_PM.png) +![Vercel Dashboard](/img/docs/self-hosted/Screenshot_2023-08-02_at_1.29.58_PM.png) Then add the following environment variables to your project: diff --git a/content/docs/reference/types/boolean.mdx b/content/docs/reference/types/boolean.mdx index ebf23f3ca..6eed30c6a 100644 --- a/content/docs/reference/types/boolean.mdx +++ b/content/docs/reference/types/boolean.mdx @@ -45,4 +45,4 @@ Tina will generate the appropriate component depending on the configuration prov } ``` -![](https://res.cloudinary.com/forestry-demo/image/upload/v1722241293/Screenshot_2024-07-29_at_6.21.27_PM_was6vo.png) +![](/img/docs/reference/boolean.png) diff --git a/content/docs/reference/types/datetime.mdx b/content/docs/reference/types/datetime.mdx index e4e742fc8..fb4426ee7 100644 --- a/content/docs/reference/types/datetime.mdx +++ b/content/docs/reference/types/datetime.mdx @@ -50,7 +50,7 @@ configuration provided. } ``` -![](https://res.cloudinary.com/forestry-demo/image/upload/v1722241081/Screenshot_2024-07-29_at_6.17.56_PM_hph9cd.png) +![](/img/docs/reference/date.png) ### Custom Format @@ -68,7 +68,7 @@ You can customize the format that the date field use by customizing the dateFor } ``` -![](https://res.cloudinary.com/forestry-demo/image/upload/v1722241143/Screenshot_2024-07-29_at_6.18.56_PM_ahjipv.png) +![](/img/docs/reference/date2.png) ### Using a Time Picker @@ -85,4 +85,4 @@ You can add a timepicker to the date UI by supplying the ui.timeFormat propert } ``` -![](https://res.cloudinary.com/forestry-demo/image/upload/v1722241213/Screenshot_2024-07-29_at_6.20.05_PM_ep6ag1.png) +![](/img/docs/reference/date3.png) diff --git a/content/docs/reference/types/number.mdx b/content/docs/reference/types/number.mdx index bcfa6b2a2..2bbc58dbb 100644 --- a/content/docs/reference/types/number.mdx +++ b/content/docs/reference/types/number.mdx @@ -46,4 +46,4 @@ Tina will generate the appropriate component depending on the configuration prov } ``` -![](https://res.cloudinary.com/forestry-demo/image/upload/v1726032481/tina-io/docs/2024-09-11_15-27-18_jtq86r.png) +![](/img/docs/reference/count-field.png) diff --git a/content/docs/reference/types/object.mdx b/content/docs/reference/types/object.mdx index eba01839b..76a823939 100644 --- a/content/docs/reference/types/object.mdx +++ b/content/docs/reference/types/object.mdx @@ -45,15 +45,15 @@ Ultimately there are 3 ways to configure this type... * With `list` set to `false`, the `fields` array can be used to wrap some data – this appears in the editor as a nested page. This can be used to organise the CMS, such as grouping options together, as in the gif below. -![](https://res.cloudinary.com/forestry-demo/image/upload/v1727331124/tina-io/docs/Sep-26-2024_16-05-37_d2ol8w.gif) + * With `list` set to `true`, the `fields` array contains the data structure to be repeated – this appears in the editor as above, but grouped as a list. -![](https://res.cloudinary.com/forestry-demo/image/upload/v1727331115/tina-io/docs/Sep-26-2024_16-03-00_f3ogev.gif) + * With `list` set to `true`, and using `templates` as opposed to `fields` the user can select between associated templates – this appears as above, but pressing the `+` gives you the option to choose between templates. -![](https://res.cloudinary.com/forestry-demo/image/upload/v1727331134/tina-io/docs/Sep-26-2024_16-07-02_zv5uth.gif) + ## Examples @@ -124,7 +124,7 @@ Tina will generate the appropriate component depending on the configuration prov } ``` -![](https://res.cloudinary.com/forestry-demo/image/upload/v1722381170/Screenshot_2024-07-31_at_9.12.43_AM_gahppr.png) +![](/img/docs/reference/testimonial.png) ### Using list object as a wrapper for other types @@ -170,4 +170,4 @@ Number, boolean, datetime, reference and rich-text field types can be used as th } ``` -![](https://res.cloudinary.com/forestry-demo/image/upload/v1722381325/Screenshot_2024-07-31_at_9.15.20_AM_rniq4e.png) +![](/img/docs/reference/page-blocks.png) diff --git a/content/docs/reference/types/reference.mdx b/content/docs/reference/types/reference.mdx index a820fe395..fbf200fff 100644 --- a/content/docs/reference/types/reference.mdx +++ b/content/docs/reference/types/reference.mdx @@ -112,7 +112,7 @@ When querying for a `post` document, the `author` key in the response will conta } ``` -![](https://res.cloudinary.com/forestry-demo/image/upload/v1724058959/reference_field/reference_field_example_tszsxd.png) +![](/img/docs/reference/reference_field_example_tszsxd.png) **Figure:** File name will be displayed in the reference field selector. @@ -120,7 +120,7 @@ When querying for a `post` document, the `author` key in the response will conta You can search your reference with reference selector. -![](https://res.cloudinary.com/forestry-demo/image/upload/v1724066194/reference_field/search_reference_p5w3ce.png) +![](/img/docs/reference/search_reference_p5w3ce.png) > Note: This search functionality only works based on the file path of the document. @@ -336,7 +336,7 @@ The Author collection and Post collection are used as a reference for the Page c * `_internalSys` contains various useful information for you to use in the custom component such as the `file name` and `path`. * `AuthorCollectionCustomReference` and `PostCollectionCustomReference` are the custom components that display in the reference select dropdown (see the image below for a visual of the custom reference UI). -![](https://res.cloudinary.com/forestry-demo/image/upload/v1724068658/reference_field/custom-reference-field-ui_ojtrlx.png) +![](/img/docs/reference/custom-reference-field-ui_ojtrlx.png) > Tips: You can do console log(props) or console log(\_internalSys) in the optionComponent to find out all the provided properties used in your custom component. diff --git a/content/docs/reference/types/rich-text.mdx b/content/docs/reference/types/rich-text.mdx index 4f176a9ac..c0a68c4bc 100644 --- a/content/docs/reference/types/rich-text.mdx +++ b/content/docs/reference/types/rich-text.mdx @@ -36,7 +36,7 @@ configuration provided. } ``` -![](https://res.cloudinary.com/forestry-demo/image/upload/v1722381461/Screenshot_2024-07-31_at_9.17.27_AM_hu7wj1.png) +![](/img/docs/reference/rtf.png) ### Toolbar override @@ -52,7 +52,7 @@ Change what you want to display and the order it is displayed in the editor } ``` -![](https://res.cloudinary.com/forestry-demo/image/upload/v1722381590/Screenshot_2024-07-31_at_9.19.47_AM_dukos7.png) +![](/img/docs/reference/blog-post.png) ### Custom templates @@ -76,7 +76,7 @@ Change what you want to display and the order it is displayed in the editor } ``` -![](https://res.cloudinary.com/forestry-demo/image/upload/v1722381505/Screenshot_2024-07-31_at_9.18.10_AM_p93fjv.png) +![](/img/docs/reference/custom-template.png) In markdown, this would look like... @@ -195,7 +195,7 @@ Within table cells, support is limited to inline elements only. The following ty * Quote * Headings -If you try to add these types into a table cell, they will be treated as a string.![](https://res.cloudinary.com/forestry-demo/image/upload/v1729139331/TinaCMS/unsupported-table-formats_koauit.png)**❌ Figure: Bad example - A table with block elements treated as strings**![supported-table-cell-formats](https://res.cloudinary.com/forestry-demo/image/upload/v1729139341/TinaCMS/supported-table-formats_bgpvq2.png)**✅ Figure: Good example - A table with inline elements** +If you try to add these types into a table cell, they will be treated as a string.![](/img/docs/rich-text/cells-1.png)**❌ Figure: Bad example - A table with block elements treated as strings**![supported-table-cell-formats](/img/docs/rich-text/cells-2.png)**✅ Figure: Good example - A table with inline elements** ### Automatic transforms diff --git a/content/docs/reference/types/string.mdx b/content/docs/reference/types/string.mdx index 43427fcc0..db6ff328e 100644 --- a/content/docs/reference/types/string.mdx +++ b/content/docs/reference/types/string.mdx @@ -52,7 +52,7 @@ configuration provided. } ``` -![](https://res.cloudinary.com/forestry-demo/image/upload/v1722240285/Screenshot_2024-07-29_at_6.04.22_PM_nglp7p.png) +![](/img/docs/reference/hello-world.png) ### Simple w/ List @@ -67,7 +67,7 @@ Setting list: true will make the value an array } ``` -![](https://res.cloudinary.com/forestry-demo/image/upload/v1722240476/Screenshot_2024-07-29_at_6.07.47_PM_u0k6wv.png) +![](/img/docs/reference/value-hello-world.png) ### As a list w/ options @@ -91,7 +91,7 @@ Setting list: true and providing options will make the value an array with a } ``` -![](https://res.cloudinary.com/forestry-demo/image/upload/v1722240556/Screenshot_2024-07-29_at_6.09.08_PM_shcnii.png) +![](/img/docs/reference/category-select.png) ### Using the isBody property @@ -107,7 +107,7 @@ When working with markdown, you can indicate that a given field should represent } ``` -![](https://res.cloudinary.com/forestry-demo/image/upload/v1722240676/Screenshot_2024-07-29_at_6.11.09_PM_nmqsgs.png) +![](/img/docs/reference/body-example.png) ### Override the built-in component @@ -124,7 +124,7 @@ By default, the text field is used for strings. To use a different core field p } ``` -![](https://res.cloudinary.com/forestry-demo/image/upload/v1722240786/Screenshot_2024-07-29_at_6.13.00_PM_cbwz3k.png) +![](/img/docs/reference/description-example.png) ### Providing a custom component @@ -148,4 +148,4 @@ You can [create your own components](https://tina.io/docs/extending-tina/custom } ``` -![](https://res.cloudinary.com/forestry-demo/image/upload/v1722240866/Screenshot_2024-07-29_at_6.14.19_PM_lxkuva.png) +![](/img/docs/reference/title-hello-body.png) diff --git a/content/docs/schema.mdx b/content/docs/schema.mdx index 8f08baab3..e19fcb7fa 100644 --- a/content/docs/schema.mdx +++ b/content/docs/schema.mdx @@ -65,7 +65,7 @@ Once we've defined a collection, we can edit its fields through the Tina UI, or ## "List" fields -![](https://res.cloudinary.com/forestry-demo/image/upload/v1726101065/Screenshot_2024-09-12_at_10.29.41_am_p0muts.png) +![](/img/docs/schema/image-example.png) Specifying `list: true` on *almost any* field type will turn that field into an array of items: diff --git a/content/docs/self-hosted/overview.mdx b/content/docs/self-hosted/overview.mdx index 1c2d14757..5cbeac4aa 100644 --- a/content/docs/self-hosted/overview.mdx +++ b/content/docs/self-hosted/overview.mdx @@ -15,7 +15,7 @@ For users who do not wish to host their CMS backend on TinaCloud, **we provide a The Tina Data Layer provides a GraphQL API that serves Markdown and JSON files backed by a database. You can think of the database as more of an ephemeral cache, since the single source of truth for your content is really your Markdown/JSON files. -![TinaCMS GraphQL Data Layer](https://res.cloudinary.com/forestry-demo/image/upload/v1675375259/tinacms-data-layer_geyrv8.png 'TinaCMS Data Layer') +![TinaCMS GraphQL Data Layer](/img/docs/tinacms-data-layer_geyrv8.png 'TinaCMS Data Layer') [Check out the blog post for more info](/blog/self-hosted-datalayer/) diff --git a/content/docs/self-hosted/starters/nextjs-vercel.mdx b/content/docs/self-hosted/starters/nextjs-vercel.mdx index 13b028e46..9d3229a68 100644 --- a/content/docs/self-hosted/starters/nextjs-vercel.mdx +++ b/content/docs/self-hosted/starters/nextjs-vercel.mdx @@ -41,7 +41,7 @@ A GitHub personal access token can be generated in your [GitHub developer settin You may want to change the expiry date to longer than 30 days (max is 1 year). -![Github Auth Settings](https://res.cloudinary.com/forestry-demo/image/upload/c_thumb,w_1000,g_face/v1699036547/tina-io/docs/self-hosted/personal-access-token.png) +![Github Auth Settings](/img/docs/self-hosted/personal-access-token.png) #### `NEXTAUTH_SECRET` @@ -57,7 +57,7 @@ openssl rand -hex 16 At this point you should be able to see your deployed starter site. If you add `/admin` to the URL, you should be prompted to login. You can login with the **default username** of `tinauser` and **password** of `tinarocks`. Once logged in you will be prompted to change your password. -![TinaCMS username and password](https://res.cloudinary.com/forestry-demo/image/upload/c_thumb,w_600,g_face/v1699559718/tina-io/docs/self-hosted/tina-login-screen2.png) +![TinaCMS username and password](/img/docs/self-hosted/tina-login-screen2.png) ## Adding Additional Users diff --git a/content/docs/self-hosted/user-management.mdx b/content/docs/self-hosted/user-management.mdx index 58c523f0d..a56d4d8e2 100644 --- a/content/docs/self-hosted/user-management.mdx +++ b/content/docs/self-hosted/user-management.mdx @@ -12,19 +12,19 @@ When using the default self-hosted auth, logins and passwords are stored in a co > Note: The user collection is not stored in your Git repository. All changes to the collection are persisted to the self-hosted database. -![](https://res.cloudinary.com/forestry-demo/image/upload/v1698949345/self-hosted/user_management_users_collection_small_gjxgld.png) +![](/img/docs/self-hosted/user_management_users_collection_small_gjxgld.png) # Adding a New User Click the plus button to add a new user. Assign a unique username and set an initial password and click the Save button. -![](https://res.cloudinary.com/forestry-demo/image/upload/v1698938355/self-hosted/user_management_list_users_woxeve.png) +![](/img/docs/self-hosted/user_management_list_users_woxeve.png) # Editing a User Click on the user to be edited. Update any details on the user and click the save button. -![](https://res.cloudinary.com/forestry-demo/image/upload/v1698938359/self-hosted/user_management_edit_user_mhebwp.png) +![](/img/docs/self-hosted/user_management_edit_user_mhebwp.png) # Reset Password diff --git a/content/docs/support.mdx b/content/docs/support.mdx index 4fbf654da..86629505c 100644 --- a/content/docs/support.mdx +++ b/content/docs/support.mdx @@ -14,7 +14,7 @@ The Tina team provides prioritized Discord support to individuals on a paid plan If your TinaCloud email is different than your Discord account, click the 'User another email' button and verify your TinaCloud email. -![](http://res.cloudinary.com/forestry-demo/image/upload/v1693410187/tina-io/Screenshot_2023-08-30_at_12.00.27_PM_pnlyp6.png) +![](/img/discord-support.png) ## Enterprise Support diff --git a/content/docs/tina-cloud/branching.mdx b/content/docs/tina-cloud/branching.mdx index 66f926173..43a6fc101 100644 --- a/content/docs/tina-cloud/branching.mdx +++ b/content/docs/tina-cloud/branching.mdx @@ -5,7 +5,8 @@ last_edited: '2023-04-12T10:00:00.000Z' > For a more advanced branching and Pull-Request workflow, checkout TinaCloud's [editorial workflow](https://tina.io/editorial-workflow/) (only available on Business and Enterprise plans). -If your content editors need to work on multiple branches, you can enable Tina's branch switching plugin. This allows you to create new branches and switch between them from Tina's UI. In the future, we'll build on this foundation and support creating pull requests, merging, and other related workflows. ![Switch Branches](https://res.cloudinary.com/forestry-demo/image/upload/v1681311018/tina-io/docs/branch-selector_e5ndeg.gif 'Switch Branches') +If your content editors need to work on multiple branches, you can enable Tina's branch switching plugin. This allows you to create new branches and switch between them from Tina's UI. In the future, we'll build on this foundation and support creating pull requests, merging, and other related workflows. + ## Installation diff --git a/content/docs/tina-cloud/dashboard.mdx b/content/docs/tina-cloud/dashboard.mdx index f78428593..9e3999d3f 100644 --- a/content/docs/tina-cloud/dashboard.mdx +++ b/content/docs/tina-cloud/dashboard.mdx @@ -8,7 +8,7 @@ previous: content/docs/tina-cloud/overview.mdx The **TinaCloud Dashboard** is the interface for managing the administrative aspects of your content management. The dashboard allows you to create **projects**, and setup your **users**. -![tina-cloud-dashboard](https://res.cloudinary.com/forestry-demo/image/upload/v1667433436/tina-io/docs/tina-cloud/Screen_Shot_2022-11-02_at_8.57.01_PM.png) +![tina-cloud-dashboard](/img/docs/tina-cloud/overview.png) A **project** connects to your site's GitHub repository and authorizes TinaCloud to push and pull content directly from it. You can also authorize **collaborators** to edit your site. Once an editor has been added via the User Management page, grant them access in your project's **Collaborator's Tab**. Now they will be able to login directly to your site, start editing content, and have their changes saved to your GitHub repository. diff --git a/content/docs/tina-cloud/dashboard/organizations.mdx b/content/docs/tina-cloud/dashboard/organizations.mdx index 800267935..7bc0898c3 100644 --- a/content/docs/tina-cloud/dashboard/organizations.mdx +++ b/content/docs/tina-cloud/dashboard/organizations.mdx @@ -10,7 +10,7 @@ Organizations make it easy to manage users across multiple projects. Each user can belong to multiple organization. The organization can be toggled with the top left dropdown. -![tina-cloud-dropdown](https://res.cloudinary.com/forestry-demo/image/upload/v1667430691/tina-io/docs/tina-cloud/Screen_Shot_2022-11-02_at_8.09.55_PM.png) +![tina-cloud-dropdown](/img/docs/tina-cloud/orgs.png) Each user in an organization can have one of the following org-level roles: diff --git a/content/docs/tina-cloud/dashboard/projects.mdx b/content/docs/tina-cloud/dashboard/projects.mdx index 696894703..7ae306d55 100644 --- a/content/docs/tina-cloud/dashboard/projects.mdx +++ b/content/docs/tina-cloud/dashboard/projects.mdx @@ -115,11 +115,11 @@ There are two types of tokens associated with projects in TinaCloud: Content (Re By default, a new project will automatically generate both types of tokens with access to all branch types. If the project does not need to restrict access to specific branches, these tokens should be sufficient. If additional tokens are needed, they can be generated by navigating to [TinaCloud](https://app.tina.io), clicking on the project you wish to add a token to, and clicking on the "Tokens" tab: -![TinaCloud token tab](https://res.cloudinary.com/forestry-demo/image/upload/v1686248278/tina-io/docs/tina-cloud/api_tokens_list_v1_mmjpsp.png) +![TinaCloud token tab](/img/docs/tina-cloud/api_tokens_list_v1_mmjpsp.png) Next, click "New Token" and fill out fields. The "Type" field selects the type of token being created. "Name" is used for identifying the token. "Git Branches" is the list of branches (separated by commas) that the token has access to. -![Creating a new token in TinaCloud](https://res.cloudinary.com/forestry-demo/image/upload/v1686248661/tina-io/docs/tina-cloud/new_api_token_v1_lq1rfy.png) +![Creating a new token in TinaCloud](/img/docs/tina-cloud/new_api_token_v1_lq1rfy.png) These tokens will be used later when we connect the site's frontend to our project. diff --git a/content/docs/tina-cloud/deployment-options/github-pages.mdx b/content/docs/tina-cloud/deployment-options/github-pages.mdx index 58bb1f70c..3c043adc5 100644 --- a/content/docs/tina-cloud/deployment-options/github-pages.mdx +++ b/content/docs/tina-cloud/deployment-options/github-pages.mdx @@ -14,7 +14,7 @@ GitHub Pages offers a few build options: - GitHub Actions - Deploy from a branch -![GitHub Actions](https://res.cloudinary.com/forestry-demo/image/upload/v1674654344/tina-io/docs/tina-cloud/Screen_Shot_2023-01-25_at_9.40.52_AM_fby9q2.png 'GitHub Actions') +![GitHub Actions](/img/docs/tina-cloud-deployment-options/build-and-deploy.png 'GitHub Actions') We want to choose "**GitHub Actions**" so that we can control the build script, and make sure it's also building the TinaCMS admin @@ -46,7 +46,7 @@ or if you are using yarn: Your GitHub Action will look something like: -![GitHub Action](https://res.cloudinary.com/forestry-demo/image/upload/v1675783496/tina-io/docs/tina-cloud/gh-config.png 'GitHub Action') +![GitHub Action](/img/docs/tina-cloud-deployment-options/gh-config.png 'GitHub Action') ## Common Issues @@ -80,7 +80,7 @@ This can happen for a number of reasons but here are the most common reasons and If your site is deploying with GitHub Pages, it may be using GitHub's default build steps. In this case, TinaCMS won't be included in the build. -![GitHub Pages configuration](https://res.cloudinary.com/forestry-demo/image/upload/v1683212636/gh-pages.png). +![GitHub Pages configuration](/img/docs/tina-cloud/gh-pages.png). To fix this, you'll need to select the "GitHub Actions" source, and build the tinacms admin along with your site. You can see our doc above for help setting up this GitHub Action. diff --git a/content/docs/tina-cloud/deployment-options/netlify.mdx b/content/docs/tina-cloud/deployment-options/netlify.mdx index d79d4f744..5419b4cf0 100644 --- a/content/docs/tina-cloud/deployment-options/netlify.mdx +++ b/content/docs/tina-cloud/deployment-options/netlify.mdx @@ -9,7 +9,7 @@ previous: content/docs/tina-cloud/deployment-options/vercel.mdx In Netlify, your build configuration can be updated at **Settings** > **Build & Deploy** > **Build Command**. -![Netlify build config](https://res.cloudinary.com/forestry-demo/image/upload/v1674607585/Screen_Shot_2023-01-24_at_8.45.23_PM_gbqyqb.png 'Netlify build config') +![Netlify build config](/img/docs/tina-cloud-deployment-options/build-settings.png 'Netlify build config') > If your package.json has a "build" script like `tinacms build && `, this likely doesn't need to be changed. If your Netlify config is not running a custom build script (e.g `next build`), you would have to change this to `tinacms build && next build` diff --git a/content/docs/tina-cloud/deployment-options/vercel.mdx b/content/docs/tina-cloud/deployment-options/vercel.mdx index d28cd0bb5..2e45c1cb7 100644 --- a/content/docs/tina-cloud/deployment-options/vercel.mdx +++ b/content/docs/tina-cloud/deployment-options/vercel.mdx @@ -9,7 +9,7 @@ previous: content/docs/tina-cloud/dashboard/organizations.mdx In Vercel, your build configuration can be updated at **Settings** > **General** > **Build & Development Settings**. -![Vercel Build Settings](https://res.cloudinary.com/forestry-demo/image/upload/v1674653527/tina-io/docs/tina-cloud/vercel-build-settings_vubza8.png 'Vercel Build Settings') +![Vercel Build Settings](/img/docs/tina-cloud-deployment-options/vercel-build-settings_vubza8.png 'Vercel Build Settings') > If your package.json has a "build" script like `tinacms build && `, this likely doesn't need to be changed. If your Vercel config is not running a custom build script (e.g `next build` instead of `npm run build`), you would have to change this to `tinacms build && next build` diff --git a/content/docs/using-tina-editor.mdx b/content/docs/using-tina-editor.mdx index e257b049b..f534460d4 100644 --- a/content/docs/using-tina-editor.mdx +++ b/content/docs/using-tina-editor.mdx @@ -28,11 +28,11 @@ Depending on how Tina is configured, one or more Collections will appear in the The table here lists all documents for the chosen Collection. This page also allows the user to create a new document or a new folder see below. -![](https://res.cloudinary.com/forestry-demo/image/upload/v1718664908/add-folder-tinacms_c8pxte.png)\ +![](/img/docs/add-folder-tinacms_c8pxte.png)\ If **contextual-editing** has been configured, clicking on a document will navigate the user to that document's preview with the Sidebar open and ready for editing. -![Tina Editor Visual Editing](/img/tina-contextual-editing.png) +![Tina Editor Visual Editing](/img/docs/contextual-editing.png) However, if **contextual-editing** is not configured or simply not available for a particular Collection, clicking on a document will present the user with the basic editor. diff --git a/content/examples/index.json b/content/examples/index.json index 4ad4719f7..4d03ece80 100644 --- a/content/examples/index.json +++ b/content/examples/index.json @@ -3,43 +3,43 @@ { "label": "Tina NextJS Starter", "description": "A Next.js blog site built with TinaCMS.\n", - "image": "https://res.cloudinary.com/forestry-demo/image/upload/v1700757938/tina-io/examples/Tina_Cloud_Starter_pxdxfu.png", + "image": "/img/Tina_Cloud_Starter_pxdxfu.png", "link": "https://github.com/tinacms/tina-cloud-starter" }, { "label": "Barebones Starter", "description": "A simple TinaCMS starter that uses Next.js with no styling, and minimal content.\n", - "image": "https://res.cloudinary.com/forestry-demo/image/upload/v1700757687/tina-io/examples/tina_qoie8s.png", + "image": "/img/tina_qoie8s.png", "link": "https://github.com/tinacms/tina-barebones-starter" }, { "label": "Tina Self Hosted Demo", "description": "A demo of how to use self-hosted TinaCMS with Nextjs.\\\n\\\nUses\n\n* Vercel KV\n* Github\n* Auth.js\n", - "image": "https://res.cloudinary.com/forestry-demo/image/upload/v1700758685/tina-io/examples/Tina_Self_Hosted_Demo_k4vpql.png", + "image": "/img/Tina_Self_Hosted_Demo_k4vpql.png", "link": "https://github.com/tinacms/tina-self-hosted-demo" }, { "label": "Tina Remix Starter", "description": "An example of how to use TinaCMS and remix.\n", - "image": "https://res.cloudinary.com/forestry-demo/image/upload/v1700767927/tina-io/examples/Tina_Remix_w3cpe4.png", + "image": "/img/Tina_Remix_w3cpe4.png", "link": "https://github.com/tinacms/tina-remix-starter" }, { "label": "Tina Hugo Starter", "description": "A starter showing how TinaCMS can be used with a static site generator like hugo. This starter could be modified to use any SSG.\n", - "image": "https://res.cloudinary.com/forestry-demo/image/upload/v1700758367/tina-io/examples/Tina_Hugo_Starter_bwulx5.png", + "image": "/img/Tina_Hugo_Starter_bwulx5.png", "link": "https://github.com/tinacms/tina-hugo-starter" }, { "label": "Tina Self Hosted SSG Demo", "description": "This demo shows how self hosted Tina works with static site generators. This demo uses 11ty but could be adapted to use any SSG.\n", - "image": "https://res.cloudinary.com/forestry-demo/image/upload/v1700758371/tina-io/examples/Tina_Static_Starter_Self_Hosted_kknsnf.png", + "image": "/img/Tina_Static_Starter_Self_Hosted_kknsnf.png", "link": "https://github.com/tinacms/tina-self-hosted-ssg-demo" }, { "label": "Self Hosted Google Cloud Demo", "description": "A demo of how to self host TinaCMS on google cloud.\n", - "image": "https://res.cloudinary.com/forestry-demo/image/upload/v1700758685/tina-io/examples/Tina_Self_Hosted_Demo_k4vpql.png", + "image": "/img/Tina_Self_Hosted_Demo_k4vpql.png", "link": "https://github.com/tinacms/tina-self-hosted-gc-demo" } ] diff --git a/content/meeting-links/meetingList.json b/content/meeting-links/meetingList.json index 719dfc169..aabedbbfc 100644 --- a/content/meeting-links/meetingList.json +++ b/content/meeting-links/meetingList.json @@ -2,19 +2,19 @@ { "name": "Oceania & Asia", "description": "Meet with Levi (English)", - "image": "https://res.cloudinary.com/forestry-demo/image/upload/v1720757954/people/levi-circle_ca5za1.png", + "image": "/img/people/levi-circle_ca5za1.png", "url": "https://meetings-eu1.hubspot.com/levi-jackson" }, { "name": "Europe", "description": "Meet with Jean (English & French)", - "image": "https://res.cloudinary.com/forestry-demo/image/upload/v1720757951/people/jean-circle_v4aiw5.png", + "image": "/img/people/jean-circle_v4aiw5.png", "url": "https://meetings-eu1.hubspot.com/jean-thirion" }, { "name": "Americas", "description": "Meet with Scott (English)", - "image": "https://res.cloudinary.com/forestry-demo/image/upload/v1720757958/people/scott-circle2_dlmyxx.jpg", + "image": "/img/people/scott-circle2_dlmyxx.jpg", "url": "https://meetings-eu1.hubspot.com/scott15" } ]} \ No newline at end of file diff --git a/next.config.js b/next.config.js index 2d473f36b..fdf2f415f 100644 --- a/next.config.js +++ b/next.config.js @@ -34,6 +34,11 @@ const config = { port: '', pathname: '/forestry-demo/**', }, + { + protocol: "https", + hostname: "assets.tina.io", + port: "", + }, ], }, async rewrites() { diff --git a/pages/docs/product-tour.tsx b/pages/docs/product-tour.tsx index 90688ea36..ef95a9f19 100644 --- a/pages/docs/product-tour.tsx +++ b/pages/docs/product-tour.tsx @@ -158,9 +158,10 @@ export default function Page(props) {
          + {/* Im keeping this as a .gif rather than transferring to .webm as a .gif would require me to change from to
          diff --git a/public/img/Tina_Cloud_Starter_pxdxfu.png b/public/img/Tina_Cloud_Starter_pxdxfu.png new file mode 100644 index 000000000..bd28161c7 Binary files /dev/null and b/public/img/Tina_Cloud_Starter_pxdxfu.png differ diff --git a/public/img/Tina_Hugo_Starter_bwulx5.png b/public/img/Tina_Hugo_Starter_bwulx5.png new file mode 100644 index 000000000..6afe01984 Binary files /dev/null and b/public/img/Tina_Hugo_Starter_bwulx5.png differ diff --git a/public/img/Tina_Remix_w3cpe4.png b/public/img/Tina_Remix_w3cpe4.png new file mode 100644 index 000000000..0b14aedc4 Binary files /dev/null and b/public/img/Tina_Remix_w3cpe4.png differ diff --git a/public/img/Tina_Self_Hosted_Demo_k4vpql.png b/public/img/Tina_Self_Hosted_Demo_k4vpql.png new file mode 100644 index 000000000..84a3ca364 Binary files /dev/null and b/public/img/Tina_Self_Hosted_Demo_k4vpql.png differ diff --git a/public/img/Tina_Static_Starter_Self_Hosted_kknsnf.png b/public/img/Tina_Static_Starter_Self_Hosted_kknsnf.png new file mode 100644 index 000000000..5bfc9e7b8 Binary files /dev/null and b/public/img/Tina_Static_Starter_Self_Hosted_kknsnf.png differ diff --git "a/public/img/avatars/Boko-\304\214olse_um356c.jpg" "b/public/img/avatars/Boko-\304\214olse_um356c.jpg" new file mode 100644 index 000000000..739659045 Binary files /dev/null and "b/public/img/avatars/Boko-\304\214olse_um356c.jpg" differ diff --git a/public/img/avatars/billy-best_wbcpsb.jpg b/public/img/avatars/billy-best_wbcpsb.jpg new file mode 100644 index 000000000..c55c4a968 Binary files /dev/null and b/public/img/avatars/billy-best_wbcpsb.jpg differ diff --git a/public/img/avatars/ccapndave_ka7f5u.webp b/public/img/avatars/ccapndave_ka7f5u.webp new file mode 100644 index 000000000..f697ad619 Binary files /dev/null and b/public/img/avatars/ccapndave_ka7f5u.webp differ diff --git a/public/img/avatars/mravec_tglyht.webp b/public/img/avatars/mravec_tglyht.webp new file mode 100644 index 000000000..b49135b66 Binary files /dev/null and b/public/img/avatars/mravec_tglyht.webp differ diff --git a/public/img/avatars/piotr-rusin_ne0l3j.jpg b/public/img/avatars/piotr-rusin_ne0l3j.jpg new file mode 100644 index 000000000..1d5c4e4b6 Binary files /dev/null and b/public/img/avatars/piotr-rusin_ne0l3j.jpg differ diff --git a/public/img/avatars/rascode11_elrciv.jpg b/public/img/avatars/rascode11_elrciv.jpg new file mode 100644 index 000000000..56a2d8788 Binary files /dev/null and b/public/img/avatars/rascode11_elrciv.jpg differ diff --git a/public/img/avatars/sean_bnwhd9.png b/public/img/avatars/sean_bnwhd9.png new file mode 100644 index 000000000..de472fc25 Binary files /dev/null and b/public/img/avatars/sean_bnwhd9.png differ diff --git a/public/img/blog/0.69.7/event-log.png b/public/img/blog/0.69.7/event-log.png new file mode 100644 index 000000000..49df69672 Binary files /dev/null and b/public/img/blog/0.69.7/event-log.png differ diff --git a/public/img/blog/0.69.7/global-form.png b/public/img/blog/0.69.7/global-form.png new file mode 100644 index 000000000..ae9e19ea2 Binary files /dev/null and b/public/img/blog/0.69.7/global-form.png differ diff --git a/public/img/blog/0.69.7/index-json.png b/public/img/blog/0.69.7/index-json.png new file mode 100644 index 000000000..03b310b32 Binary files /dev/null and b/public/img/blog/0.69.7/index-json.png differ diff --git a/public/img/blog/2021-a-year-in-review/alpha.png b/public/img/blog/2021-a-year-in-review/alpha.png new file mode 100644 index 000000000..9b474f3f7 Binary files /dev/null and b/public/img/blog/2021-a-year-in-review/alpha.png differ diff --git a/public/img/blog/2021-a-year-in-review/beta.png b/public/img/blog/2021-a-year-in-review/beta.png new file mode 100644 index 000000000..4047bceb6 Binary files /dev/null and b/public/img/blog/2021-a-year-in-review/beta.png differ diff --git a/public/img/blog/Improving-TinaCloud-Indexing-with-Native-Git-CLI-and-Sparse-Checkout/chart-native-git_dn9gbf.png b/public/img/blog/Improving-TinaCloud-Indexing-with-Native-Git-CLI-and-Sparse-Checkout/chart-native-git_dn9gbf.png new file mode 100644 index 000000000..f4344d09f Binary files /dev/null and b/public/img/blog/Improving-TinaCloud-Indexing-with-Native-Git-CLI-and-Sparse-Checkout/chart-native-git_dn9gbf.png differ diff --git a/public/img/blog/Introducing-TinaGPT-Chatbot/tinaGPT-img_afz4sq.jpg b/public/img/blog/Introducing-TinaGPT-Chatbot/tinaGPT-img_afz4sq.jpg new file mode 100644 index 000000000..f114f73e3 Binary files /dev/null and b/public/img/blog/Introducing-TinaGPT-Chatbot/tinaGPT-img_afz4sq.jpg differ diff --git a/public/img/blog/Supercharge-Your-Markdown-Blog-with-AI/Screenshot_2023-07-21_at_12.36.48_PM_ztpdes.png b/public/img/blog/Supercharge-Your-Markdown-Blog-with-AI/Screenshot_2023-07-21_at_12.36.48_PM_ztpdes.png new file mode 100644 index 000000000..53f4523bd Binary files /dev/null and b/public/img/blog/Supercharge-Your-Markdown-Blog-with-AI/Screenshot_2023-07-21_at_12.36.48_PM_ztpdes.png differ diff --git a/public/img/blog/Tina-CMS--Leveljs/homepage-demo-2b_lmoaj8.webm b/public/img/blog/Tina-CMS--Leveljs/homepage-demo-2b_lmoaj8.webm new file mode 100644 index 000000000..7ea9d5f3f Binary files /dev/null and b/public/img/blog/Tina-CMS--Leveljs/homepage-demo-2b_lmoaj8.webm differ diff --git a/public/img/blog/Tina-CMS--Leveljs/search-demo.webm b/public/img/blog/Tina-CMS--Leveljs/search-demo.webm new file mode 100644 index 000000000..2b490c186 Binary files /dev/null and b/public/img/blog/Tina-CMS--Leveljs/search-demo.webm differ diff --git a/public/img/blog/Tina-sponsoring-the-NEW-conference/tina-sponsor-new-conference_rqctzv.png b/public/img/blog/Tina-sponsoring-the-NEW-conference/tina-sponsor-new-conference_rqctzv.png new file mode 100644 index 000000000..6389387f5 Binary files /dev/null and b/public/img/blog/Tina-sponsoring-the-NEW-conference/tina-sponsor-new-conference_rqctzv.png differ diff --git a/public/img/blog/TinaCMS-Version-1-5-9/media-dashboard_qjwkr2.png b/public/img/blog/TinaCMS-Version-1-5-9/media-dashboard_qjwkr2.png new file mode 100644 index 000000000..23973ed31 Binary files /dev/null and b/public/img/blog/TinaCMS-Version-1-5-9/media-dashboard_qjwkr2.png differ diff --git a/public/img/blog/TinaCMS-Version-1-5-9/search_uxd1di.png b/public/img/blog/TinaCMS-Version-1-5-9/search_uxd1di.png new file mode 100644 index 000000000..9d83ee68a Binary files /dev/null and b/public/img/blog/TinaCMS-Version-1-5-9/search_uxd1di.png differ diff --git a/public/img/blog/TinaCMS-Version-1-5/commit_message.png b/public/img/blog/TinaCMS-Version-1-5/commit_message.png new file mode 100644 index 000000000..03108048a Binary files /dev/null and b/public/img/blog/TinaCMS-Version-1-5/commit_message.png differ diff --git a/public/img/blog/TinaCMS-Version-1-5/directories.png b/public/img/blog/TinaCMS-Version-1-5/directories.png new file mode 100644 index 000000000..df39a2286 Binary files /dev/null and b/public/img/blog/TinaCMS-Version-1-5/directories.png differ diff --git a/public/img/blog/TinaCMS-Version-1-5/duplicate.png b/public/img/blog/TinaCMS-Version-1-5/duplicate.png new file mode 100644 index 000000000..36ddd16f0 Binary files /dev/null and b/public/img/blog/TinaCMS-Version-1-5/duplicate.png differ diff --git a/public/img/blog/TinaCMS-Version-21/SCR-20240725-mvmu_gfqxxv.png b/public/img/blog/TinaCMS-Version-21/SCR-20240725-mvmu_gfqxxv.png new file mode 100644 index 000000000..17d9a2b44 Binary files /dev/null and b/public/img/blog/TinaCMS-Version-21/SCR-20240725-mvmu_gfqxxv.png differ diff --git a/public/img/blog/TinaCMS-Version-21/ray-so-export_3_x7baul.png b/public/img/blog/TinaCMS-Version-21/ray-so-export_3_x7baul.png new file mode 100644 index 000000000..19884f56e Binary files /dev/null and b/public/img/blog/TinaCMS-Version-21/ray-so-export_3_x7baul.png differ diff --git a/public/img/blog/TinaCMS-Version-21/sample-cloudinary.png b/public/img/blog/TinaCMS-Version-21/sample-cloudinary.png new file mode 100644 index 000000000..275d0f1b3 Binary files /dev/null and b/public/img/blog/TinaCMS-Version-21/sample-cloudinary.png differ diff --git a/public/img/blog/TinaCMS-Version-22/SCR-20240819-nzej_ocb7rm.png b/public/img/blog/TinaCMS-Version-22/SCR-20240819-nzej_ocb7rm.png new file mode 100644 index 000000000..7897b51cc Binary files /dev/null and b/public/img/blog/TinaCMS-Version-22/SCR-20240819-nzej_ocb7rm.png differ diff --git a/public/img/blog/TinaCMS-Version-22/SCR-20240819-oqta-v2_yppg9t.png b/public/img/blog/TinaCMS-Version-22/SCR-20240819-oqta-v2_yppg9t.png new file mode 100644 index 000000000..0471d5fc8 Binary files /dev/null and b/public/img/blog/TinaCMS-Version-22/SCR-20240819-oqta-v2_yppg9t.png differ diff --git a/public/img/blog/a-b-testing/add-document.png b/public/img/blog/a-b-testing/add-document.png new file mode 100644 index 000000000..b4df46fb9 Binary files /dev/null and b/public/img/blog/a-b-testing/add-document.png differ diff --git a/public/img/blog/a-b-testing/edit-test.png b/public/img/blog/a-b-testing/edit-test.png new file mode 100644 index 000000000..b0e97e456 Binary files /dev/null and b/public/img/blog/a-b-testing/edit-test.png differ diff --git a/public/img/blog/a-b-testing/starter-homepage.png b/public/img/blog/a-b-testing/starter-homepage.png new file mode 100644 index 000000000..650a4f3f2 Binary files /dev/null and b/public/img/blog/a-b-testing/starter-homepage.png differ diff --git a/public/img/blog/announcing-tina-grande/Blog_image.png b/public/img/blog/announcing-tina-grande/Blog_image.png new file mode 100644 index 000000000..59e4ae72f Binary files /dev/null and b/public/img/blog/announcing-tina-grande/Blog_image.png differ diff --git a/public/img/blog/announcing-tinacms/tina-cms-announcement-post.webm b/public/img/blog/announcing-tinacms/tina-cms-announcement-post.webm new file mode 100644 index 000000000..cd600eaed Binary files /dev/null and b/public/img/blog/announcing-tinacms/tina-cms-announcement-post.webm differ diff --git a/public/img/blog/annual-billing/annual-billing-blog.png b/public/img/blog/annual-billing/annual-billing-blog.png new file mode 100644 index 000000000..3c4d2812f Binary files /dev/null and b/public/img/blog/annual-billing/annual-billing-blog.png differ diff --git a/public/img/blog/automating-pull-requests/pr-scheduler.png b/public/img/blog/automating-pull-requests/pr-scheduler.png new file mode 100644 index 000000000..a148914a4 Binary files /dev/null and b/public/img/blog/automating-pull-requests/pr-scheduler.png differ diff --git a/public/img/blog/custom-field-components/saturate-custom-field.webm b/public/img/blog/custom-field-components/saturate-custom-field.webm new file mode 100644 index 000000000..bf4251fe9 Binary files /dev/null and b/public/img/blog/custom-field-components/saturate-custom-field.webm differ diff --git a/public/img/blog/from-cms-to-contextual/TinaSuper.webm b/public/img/blog/from-cms-to-contextual/TinaSuper.webm new file mode 100644 index 000000000..4c4070816 Binary files /dev/null and b/public/img/blog/from-cms-to-contextual/TinaSuper.webm differ diff --git a/public/img/blog/getting-started-tina-admin/editing-example.jpg b/public/img/blog/getting-started-tina-admin/editing-example.jpg new file mode 100644 index 000000000..c62a32a14 Binary files /dev/null and b/public/img/blog/getting-started-tina-admin/editing-example.jpg differ diff --git a/public/img/blog/getting-started-tina-admin/landing-example.webp b/public/img/blog/getting-started-tina-admin/landing-example.webp new file mode 100644 index 000000000..2a9d16879 Binary files /dev/null and b/public/img/blog/getting-started-tina-admin/landing-example.webp differ diff --git a/public/img/blog/getting-started-tina-admin/login-example.webp b/public/img/blog/getting-started-tina-admin/login-example.webp new file mode 100644 index 000000000..ef1c3d583 Binary files /dev/null and b/public/img/blog/getting-started-tina-admin/login-example.webp differ diff --git a/public/img/blog/getting-started-tina-admin/post-list-example.webp b/public/img/blog/getting-started-tina-admin/post-list-example.webp new file mode 100644 index 000000000..d554bffe5 Binary files /dev/null and b/public/img/blog/getting-started-tina-admin/post-list-example.webp differ diff --git a/public/img/blog/i18n/test-blog-post.png b/public/img/blog/i18n/test-blog-post.png new file mode 100644 index 000000000..69c2c6273 Binary files /dev/null and b/public/img/blog/i18n/test-blog-post.png differ diff --git a/public/img/blog/introducing-editorial-workflow-features-for-your-team/create-branch_bgpgwn.png b/public/img/blog/introducing-editorial-workflow-features-for-your-team/create-branch_bgpgwn.png new file mode 100644 index 000000000..3ad7e1bc0 Binary files /dev/null and b/public/img/blog/introducing-editorial-workflow-features-for-your-team/create-branch_bgpgwn.png differ diff --git a/public/img/blog/introducing-the-deep-dive-video-series/llama-link_gzdv9e.png b/public/img/blog/introducing-the-deep-dive-video-series/llama-link_gzdv9e.png new file mode 100644 index 000000000..5ba56c531 Binary files /dev/null and b/public/img/blog/introducing-the-deep-dive-video-series/llama-link_gzdv9e.png differ diff --git a/public/img/blog/introducing-visual-open-authoring/click-edit-button.png b/public/img/blog/introducing-visual-open-authoring/click-edit-button.png new file mode 100644 index 000000000..a4f44ed8b Binary files /dev/null and b/public/img/blog/introducing-visual-open-authoring/click-edit-button.png differ diff --git a/public/img/blog/mdx-powered-docs/Docs_Starter_Example.webm b/public/img/blog/mdx-powered-docs/Docs_Starter_Example.webm new file mode 100644 index 000000000..8f9b00d20 Binary files /dev/null and b/public/img/blog/mdx-powered-docs/Docs_Starter_Example.webm differ diff --git a/public/img/blog/mdx-powered-docs/cool-tina-images.png b/public/img/blog/mdx-powered-docs/cool-tina-images.png new file mode 100644 index 000000000..c6160e81a Binary files /dev/null and b/public/img/blog/mdx-powered-docs/cool-tina-images.png differ diff --git a/public/img/blog/mdx-powered-docs/docs-w-mdx.png b/public/img/blog/mdx-powered-docs/docs-w-mdx.png new file mode 100644 index 000000000..3b5de0c72 Binary files /dev/null and b/public/img/blog/mdx-powered-docs/docs-w-mdx.png differ diff --git a/public/img/blog/mdx-powered-docs/example.webm b/public/img/blog/mdx-powered-docs/example.webm new file mode 100644 index 000000000..23ca2556a Binary files /dev/null and b/public/img/blog/mdx-powered-docs/example.webm differ diff --git a/public/img/blog/mdx-powered-docs/learn-more.png b/public/img/blog/mdx-powered-docs/learn-more.png new file mode 100644 index 000000000..6c0a278e0 Binary files /dev/null and b/public/img/blog/mdx-powered-docs/learn-more.png differ diff --git a/public/img/blog/mdx-powered-docs/lorem-ipsum.png b/public/img/blog/mdx-powered-docs/lorem-ipsum.png new file mode 100644 index 000000000..9b7634c1a Binary files /dev/null and b/public/img/blog/mdx-powered-docs/lorem-ipsum.png differ diff --git a/public/img/blog/mdx-powered-docs/the-power-of-mdx-for-teams.png b/public/img/blog/mdx-powered-docs/the-power-of-mdx-for-teams.png new file mode 100644 index 000000000..e78abba12 Binary files /dev/null and b/public/img/blog/mdx-powered-docs/the-power-of-mdx-for-teams.png differ diff --git a/public/img/blog/new-year-new-cms/create-tina-app.webm b/public/img/blog/new-year-new-cms/create-tina-app.webm new file mode 100644 index 000000000..bb4703410 Binary files /dev/null and b/public/img/blog/new-year-new-cms/create-tina-app.webm differ diff --git a/public/img/blog/new-year-new-cms/new_year_new_cms.png b/public/img/blog/new-year-new-cms/new_year_new_cms.png new file mode 100644 index 000000000..63933cb17 Binary files /dev/null and b/public/img/blog/new-year-new-cms/new_year_new_cms.png differ diff --git a/public/img/blog/new-year-new-cms/tina-cli.webm b/public/img/blog/new-year-new-cms/tina-cli.webm new file mode 100644 index 000000000..6e77ddd69 Binary files /dev/null and b/public/img/blog/new-year-new-cms/tina-cli.webm differ diff --git a/public/img/blog/new-year-new-cms/tina-quickstart.webm b/public/img/blog/new-year-new-cms/tina-quickstart.webm new file mode 100644 index 000000000..ab7ab0eeb Binary files /dev/null and b/public/img/blog/new-year-new-cms/tina-quickstart.webm differ diff --git a/public/img/blog/our-friend-frank-taillandier/forestry-retreat-1300.jpg b/public/img/blog/our-friend-frank-taillandier/forestry-retreat-1300.jpg new file mode 100644 index 000000000..ed0563725 Binary files /dev/null and b/public/img/blog/our-friend-frank-taillandier/forestry-retreat-1300.jpg differ diff --git a/public/img/blog/our-friend-frank-taillandier/forestry-team-pei.jpg b/public/img/blog/our-friend-frank-taillandier/forestry-team-pei.jpg new file mode 100644 index 000000000..e1e4f1ca5 Binary files /dev/null and b/public/img/blog/our-friend-frank-taillandier/forestry-team-pei.jpg differ diff --git a/public/img/blog/our-friend-frank-taillandier/frank-taillandier-painting.jpg b/public/img/blog/our-friend-frank-taillandier/frank-taillandier-painting.jpg new file mode 100644 index 000000000..cd5edfed4 Binary files /dev/null and b/public/img/blog/our-friend-frank-taillandier/frank-taillandier-painting.jpg differ diff --git a/public/img/blog/simple-markdown-blog-nextjs/empty-tina-blog.png b/public/img/blog/simple-markdown-blog-nextjs/empty-tina-blog.png new file mode 100644 index 000000000..d9dc251c0 Binary files /dev/null and b/public/img/blog/simple-markdown-blog-nextjs/empty-tina-blog.png differ diff --git a/public/img/blog/simple-markdown-blog-nextjs/simple-blog.webm b/public/img/blog/simple-markdown-blog-nextjs/simple-blog.webm new file mode 100644 index 000000000..9e661f551 Binary files /dev/null and b/public/img/blog/simple-markdown-blog-nextjs/simple-blog.webm differ diff --git a/public/img/blog/syntax-highlighting-with-tina/after-image.webp b/public/img/blog/syntax-highlighting-with-tina/after-image.webp new file mode 100644 index 000000000..eeb98dcd6 Binary files /dev/null and b/public/img/blog/syntax-highlighting-with-tina/after-image.webp differ diff --git a/public/img/blog/syntax-highlighting-with-tina/before-image.webp b/public/img/blog/syntax-highlighting-with-tina/before-image.webp new file mode 100644 index 000000000..c797e3a6d Binary files /dev/null and b/public/img/blog/syntax-highlighting-with-tina/before-image.webp differ diff --git a/public/img/blog/syntax-highlighting-with-tina/syntax-highlight-cover.png b/public/img/blog/syntax-highlighting-with-tina/syntax-highlight-cover.png new file mode 100644 index 000000000..9ba08258d Binary files /dev/null and b/public/img/blog/syntax-highlighting-with-tina/syntax-highlight-cover.png differ diff --git a/public/img/blog/tina-1-0-announcement/TinaCMS_pricing_1.png b/public/img/blog/tina-1-0-announcement/TinaCMS_pricing_1.png new file mode 100644 index 000000000..4650604c1 Binary files /dev/null and b/public/img/blog/tina-1-0-announcement/TinaCMS_pricing_1.png differ diff --git a/public/img/blog/tina-1-0-announcement/tinaio-homepage.png b/public/img/blog/tina-1-0-announcement/tinaio-homepage.png new file mode 100644 index 000000000..4b3a79f4d Binary files /dev/null and b/public/img/blog/tina-1-0-announcement/tinaio-homepage.png differ diff --git a/public/img/blog/tina-is-in-beta/Beta_Launch_Demo.webm b/public/img/blog/tina-is-in-beta/Beta_Launch_Demo.webm new file mode 100644 index 000000000..5251f1e94 Binary files /dev/null and b/public/img/blog/tina-is-in-beta/Beta_Launch_Demo.webm differ diff --git a/public/img/blog/tina-v-1.1.3/minmax.png b/public/img/blog/tina-v-1.1.3/minmax.png new file mode 100644 index 000000000..4905b0392 Binary files /dev/null and b/public/img/blog/tina-v-1.1.3/minmax.png differ diff --git a/public/img/blog/tina-v-1.1.3/shortcodes.png b/public/img/blog/tina-v-1.1.3/shortcodes.png new file mode 100644 index 000000000..d9fda3a95 Binary files /dev/null and b/public/img/blog/tina-v-1.1.3/shortcodes.png differ diff --git a/public/img/blog/tina-v-1.1.4/edit-doc.png b/public/img/blog/tina-v-1.1.4/edit-doc.png new file mode 100644 index 000000000..9bbc1287f Binary files /dev/null and b/public/img/blog/tina-v-1.1.4/edit-doc.png differ diff --git a/public/img/blog/tina-v-1.1.4/edit-rtf.png b/public/img/blog/tina-v-1.1.4/edit-rtf.png new file mode 100644 index 000000000..40c934cfc Binary files /dev/null and b/public/img/blog/tina-v-1.1.4/edit-rtf.png differ diff --git a/public/img/blog/tina-v-1.3.2/media-manager_uuaotf.png b/public/img/blog/tina-v-1.3.2/media-manager_uuaotf.png new file mode 100644 index 000000000..8277f0809 Binary files /dev/null and b/public/img/blog/tina-v-1.3.2/media-manager_uuaotf.png differ diff --git a/public/img/blog/tinacms-2022/SSG-logos.png b/public/img/blog/tinacms-2022/SSG-logos.png new file mode 100644 index 000000000..5d00d6e38 Binary files /dev/null and b/public/img/blog/tinacms-2022/SSG-logos.png differ diff --git a/public/img/blog/tinacms-2022/tailwindcss.jpg b/public/img/blog/tinacms-2022/tailwindcss.jpg new file mode 100644 index 000000000..fc41de340 Binary files /dev/null and b/public/img/blog/tinacms-2022/tailwindcss.jpg differ diff --git a/public/img/blog/tinacms-2022/tinacms-2022-vision.png b/public/img/blog/tinacms-2022/tinacms-2022-vision.png new file mode 100644 index 000000000..dda66cc72 Binary files /dev/null and b/public/img/blog/tinacms-2022/tinacms-2022-vision.png differ diff --git a/public/img/blog/tinacms-2022/tinacms-community-feedback-jason.png b/public/img/blog/tinacms-2022/tinacms-community-feedback-jason.png new file mode 100644 index 000000000..c03d63219 Binary files /dev/null and b/public/img/blog/tinacms-2022/tinacms-community-feedback-jason.png differ diff --git a/public/img/blog/tinacms-2022/tinacms-community-feedback-leroy.png b/public/img/blog/tinacms-2022/tinacms-community-feedback-leroy.png new file mode 100644 index 000000000..4c9041829 Binary files /dev/null and b/public/img/blog/tinacms-2022/tinacms-community-feedback-leroy.png differ diff --git a/public/img/blog/tinacms-is-in-beta/edit-alongside-content.webm b/public/img/blog/tinacms-is-in-beta/edit-alongside-content.webm new file mode 100644 index 000000000..abff1d257 Binary files /dev/null and b/public/img/blog/tinacms-is-in-beta/edit-alongside-content.webm differ diff --git a/public/img/blog/tinacms-new-public-roadmap/public-roadmap.png b/public/img/blog/tinacms-new-public-roadmap/public-roadmap.png new file mode 100644 index 000000000..19fab68d8 Binary files /dev/null and b/public/img/blog/tinacms-new-public-roadmap/public-roadmap.png differ diff --git a/public/img/blog/tinacms-new-public-roadmap/tina-roadmap.webm b/public/img/blog/tinacms-new-public-roadmap/tina-roadmap.webm new file mode 100644 index 000000000..b77ec701a Binary files /dev/null and b/public/img/blog/tinacms-new-public-roadmap/tina-roadmap.webm differ diff --git a/public/img/blog/tinacms-ui-whats-next/sidebar-toolbar.jpg b/public/img/blog/tinacms-ui-whats-next/sidebar-toolbar.jpg new file mode 100644 index 000000000..6a85f0435 Binary files /dev/null and b/public/img/blog/tinacms-ui-whats-next/sidebar-toolbar.jpg differ diff --git a/public/img/blog/tinasaurus-docusaurus-starter/tinacms-docusaurus-markdown-editing.webm b/public/img/blog/tinasaurus-docusaurus-starter/tinacms-docusaurus-markdown-editing.webm new file mode 100644 index 000000000..ee3b16bcb Binary files /dev/null and b/public/img/blog/tinasaurus-docusaurus-starter/tinacms-docusaurus-markdown-editing.webm differ diff --git a/public/img/blog/using-graphql-with-the-filesystem/llama-woops_cchyel.png b/public/img/blog/using-graphql-with-the-filesystem/llama-woops_cchyel.png new file mode 100644 index 000000000..b3fcecb15 Binary files /dev/null and b/public/img/blog/using-graphql-with-the-filesystem/llama-woops_cchyel.png differ diff --git a/public/img/blog/using-graphql-with-the-filesystem/next-demo-home_kcnyv5.png b/public/img/blog/using-graphql-with-the-filesystem/next-demo-home_kcnyv5.png new file mode 100644 index 000000000..778593a22 Binary files /dev/null and b/public/img/blog/using-graphql-with-the-filesystem/next-demo-home_kcnyv5.png differ diff --git a/public/img/blog/using-the-power-of-mdx-with-tina/Callout.png b/public/img/blog/using-the-power-of-mdx-with-tina/Callout.png new file mode 100644 index 000000000..0f8ddfc08 Binary files /dev/null and b/public/img/blog/using-the-power-of-mdx-with-tina/Callout.png differ diff --git a/public/img/blog/using-the-power-of-mdx-with-tina/Tina-markdown-demo.png b/public/img/blog/using-the-power-of-mdx-with-tina/Tina-markdown-demo.png new file mode 100644 index 000000000..1461e38a0 Binary files /dev/null and b/public/img/blog/using-the-power-of-mdx-with-tina/Tina-markdown-demo.png differ diff --git a/public/img/blog/using-the-power-of-mdx-with-tina/warning.png b/public/img/blog/using-the-power-of-mdx-with-tina/warning.png new file mode 100644 index 000000000..f37a9ee6f Binary files /dev/null and b/public/img/blog/using-the-power-of-mdx-with-tina/warning.png differ diff --git a/public/img/discord-support.png b/public/img/discord-support.png new file mode 100644 index 000000000..f5ad72596 Binary files /dev/null and b/public/img/discord-support.png differ diff --git a/public/img/docs/add-folder-tinacms_c8pxte.png b/public/img/docs/add-folder-tinacms_c8pxte.png new file mode 100644 index 000000000..405643164 Binary files /dev/null and b/public/img/docs/add-folder-tinacms_c8pxte.png differ diff --git a/public/img/docs/altair_doc.webm b/public/img/docs/altair_doc.webm new file mode 100644 index 000000000..d3d5a8704 Binary files /dev/null and b/public/img/docs/altair_doc.webm differ diff --git a/public/img/docs/basic-editor.png b/public/img/docs/basic-editor.png new file mode 100644 index 000000000..f9793e8ae Binary files /dev/null and b/public/img/docs/basic-editor.png differ diff --git a/public/img/docs/contextual-editing.png b/public/img/docs/contextual-editing.png new file mode 100644 index 000000000..0f8867103 Binary files /dev/null and b/public/img/docs/contextual-editing.png differ diff --git a/public/img/docs/contextual-editing/hello-world.png b/public/img/docs/contextual-editing/hello-world.png new file mode 100644 index 000000000..ebf1bfeb4 Binary files /dev/null and b/public/img/docs/contextual-editing/hello-world.png differ diff --git a/public/img/docs/docusaurus/tinasaurus-doc-editing.png b/public/img/docs/docusaurus/tinasaurus-doc-editing.png new file mode 100644 index 000000000..18803aa0a Binary files /dev/null and b/public/img/docs/docusaurus/tinasaurus-doc-editing.png differ diff --git a/public/img/docs/docusaurus/tinasaurus-home-editing.png b/public/img/docs/docusaurus/tinasaurus-home-editing.png new file mode 100644 index 000000000..4e8896b90 Binary files /dev/null and b/public/img/docs/docusaurus/tinasaurus-home-editing.png differ diff --git a/public/img/docs/editing-md/embed-in-md.png b/public/img/docs/editing-md/embed-in-md.png new file mode 100644 index 000000000..68db958f1 Binary files /dev/null and b/public/img/docs/editing-md/embed-in-md.png differ diff --git a/public/img/docs/editing-md/md-embed.png b/public/img/docs/editing-md/md-embed.png new file mode 100644 index 000000000..6389a0417 Binary files /dev/null and b/public/img/docs/editing-md/md-embed.png differ diff --git a/public/img/docs/editing/markdown.webm b/public/img/docs/editing/markdown.webm new file mode 100644 index 000000000..f8fdbbc1e Binary files /dev/null and b/public/img/docs/editing/markdown.webm differ diff --git a/public/img/docs/editing/visual-selector-preview.webm b/public/img/docs/editing/visual-selector-preview.webm new file mode 100644 index 000000000..82bd446e2 Binary files /dev/null and b/public/img/docs/editing/visual-selector-preview.webm differ diff --git a/public/img/docs/editorial-workflow/preview-link.png b/public/img/docs/editorial-workflow/preview-link.png new file mode 100644 index 000000000..5c18d002c Binary files /dev/null and b/public/img/docs/editorial-workflow/preview-link.png differ diff --git a/public/img/docs/extending-tina/Extending_Tina_Label_List_Props.png b/public/img/docs/extending-tina/Extending_Tina_Label_List_Props.png new file mode 100644 index 000000000..ed098731b Binary files /dev/null and b/public/img/docs/extending-tina/Extending_Tina_Label_List_Props.png differ diff --git a/public/img/docs/extending-tina/Extending_Tina_No_List_Props.png b/public/img/docs/extending-tina/Extending_Tina_No_List_Props.png new file mode 100644 index 000000000..1339d2cae Binary files /dev/null and b/public/img/docs/extending-tina/Extending_Tina_No_List_Props.png differ diff --git a/public/img/docs/extending-tina/Extending_Tina_Style_List_Props.png b/public/img/docs/extending-tina/Extending_Tina_Style_List_Props.png new file mode 100644 index 000000000..cbe08b01f Binary files /dev/null and b/public/img/docs/extending-tina/Extending_Tina_Style_List_Props.png differ diff --git a/public/img/docs/extending-tina/image-saturation.png b/public/img/docs/extending-tina/image-saturation.png new file mode 100644 index 000000000..9380653e8 Binary files /dev/null and b/public/img/docs/extending-tina/image-saturation.png differ diff --git a/public/img/docs/extending-tina/invalid1_fbnwh1.png b/public/img/docs/extending-tina/invalid1_fbnwh1.png new file mode 100644 index 000000000..02661436e Binary files /dev/null and b/public/img/docs/extending-tina/invalid1_fbnwh1.png differ diff --git a/public/img/docs/forestry-migration/Screen-Shot-Error-Messager.png b/public/img/docs/forestry-migration/Screen-Shot-Error-Messager.png new file mode 100644 index 000000000..13bf31af5 Binary files /dev/null and b/public/img/docs/forestry-migration/Screen-Shot-Error-Messager.png differ diff --git a/public/img/docs/forestry-migration/accessing-admin.gif b/public/img/docs/forestry-migration/accessing-admin.gif new file mode 100644 index 000000000..f7c885f2b Binary files /dev/null and b/public/img/docs/forestry-migration/accessing-admin.gif differ diff --git a/public/img/docs/forestry-migration/accessing-admin.webm b/public/img/docs/forestry-migration/accessing-admin.webm new file mode 100644 index 000000000..ea8e648a5 Binary files /dev/null and b/public/img/docs/forestry-migration/accessing-admin.webm differ diff --git a/public/img/docs/forestry-migration/build-settings.png b/public/img/docs/forestry-migration/build-settings.png new file mode 100644 index 000000000..d45549ff2 Binary files /dev/null and b/public/img/docs/forestry-migration/build-settings.png differ diff --git a/public/img/docs/forestry-migration/fmt.png b/public/img/docs/forestry-migration/fmt.png new file mode 100644 index 000000000..d1effc450 Binary files /dev/null and b/public/img/docs/forestry-migration/fmt.png differ diff --git a/public/img/docs/forestry-migration/forestry-drafts.png b/public/img/docs/forestry-migration/forestry-drafts.png new file mode 100644 index 000000000..a7271bbea Binary files /dev/null and b/public/img/docs/forestry-migration/forestry-drafts.png differ diff --git a/public/img/docs/forestry-migration/tina-drafts.png b/public/img/docs/forestry-migration/tina-drafts.png new file mode 100644 index 000000000..b1b374f12 Binary files /dev/null and b/public/img/docs/forestry-migration/tina-drafts.png differ diff --git a/public/img/docs/fr/subfolder-edit-fr.png b/public/img/docs/fr/subfolder-edit-fr.png new file mode 100644 index 000000000..5fc961f1f Binary files /dev/null and b/public/img/docs/fr/subfolder-edit-fr.png differ diff --git a/public/img/docs/i18n/lang-folders.png b/public/img/docs/i18n/lang-folders.png new file mode 100644 index 000000000..568f9a18a Binary files /dev/null and b/public/img/docs/i18n/lang-folders.png differ diff --git a/public/img/docs/i18n/localized-fields.png b/public/img/docs/i18n/localized-fields.png new file mode 100644 index 000000000..a0ba4b799 Binary files /dev/null and b/public/img/docs/i18n/localized-fields.png differ diff --git a/public/img/docs/introduction/cli-starter.png b/public/img/docs/introduction/cli-starter.png new file mode 100644 index 000000000..91325b866 Binary files /dev/null and b/public/img/docs/introduction/cli-starter.png differ diff --git a/public/img/docs/introduction/homepage-demo-2.webm b/public/img/docs/introduction/homepage-demo-2.webm new file mode 100644 index 000000000..e742af6f0 Binary files /dev/null and b/public/img/docs/introduction/homepage-demo-2.webm differ diff --git a/public/img/docs/introduction/vercel-popup-blocked_ogt6fr.png b/public/img/docs/introduction/vercel-popup-blocked_ogt6fr.png new file mode 100644 index 000000000..d513c89fa Binary files /dev/null and b/public/img/docs/introduction/vercel-popup-blocked_ogt6fr.png differ diff --git a/public/img/docs/nextjs-internationalization/subfolder-create-new.png b/public/img/docs/nextjs-internationalization/subfolder-create-new.png new file mode 100644 index 000000000..a73ee60a3 Binary files /dev/null and b/public/img/docs/nextjs-internationalization/subfolder-create-new.png differ diff --git a/public/img/docs/nextjs-internationalization/subfolder-edit-en.png b/public/img/docs/nextjs-internationalization/subfolder-edit-en.png new file mode 100644 index 000000000..b728f2a8c Binary files /dev/null and b/public/img/docs/nextjs-internationalization/subfolder-edit-en.png differ diff --git a/public/img/docs/product-tour/admin.png b/public/img/docs/product-tour/admin.png new file mode 100644 index 000000000..e2e51afc4 Binary files /dev/null and b/public/img/docs/product-tour/admin.png differ diff --git a/public/img/docs/product-tour/cli-init.png b/public/img/docs/product-tour/cli-init.png new file mode 100644 index 000000000..29e8f16f0 Binary files /dev/null and b/public/img/docs/product-tour/cli-init.png differ diff --git a/public/img/docs/product-tour/client-typesafe.png b/public/img/docs/product-tour/client-typesafe.png new file mode 100644 index 000000000..f40947b85 Binary files /dev/null and b/public/img/docs/product-tour/client-typesafe.png differ diff --git a/public/img/docs/product-tour/client.png b/public/img/docs/product-tour/client.png new file mode 100644 index 000000000..9578c7b48 Binary files /dev/null and b/public/img/docs/product-tour/client.png differ diff --git a/public/img/docs/product-tour/content-modelling.png b/public/img/docs/product-tour/content-modelling.png new file mode 100644 index 000000000..bcdb5396a Binary files /dev/null and b/public/img/docs/product-tour/content-modelling.png differ diff --git a/public/img/docs/product-tour/git-backed.png b/public/img/docs/product-tour/git-backed.png new file mode 100644 index 000000000..efa959986 Binary files /dev/null and b/public/img/docs/product-tour/git-backed.png differ diff --git a/public/img/docs/product-tour/git-save.png b/public/img/docs/product-tour/git-save.png new file mode 100644 index 000000000..c4b5a8c15 Binary files /dev/null and b/public/img/docs/product-tour/git-save.png differ diff --git a/public/img/docs/product-tour/graphql-query_5.png b/public/img/docs/product-tour/graphql-query_5.png new file mode 100644 index 000000000..013c77c02 Binary files /dev/null and b/public/img/docs/product-tour/graphql-query_5.png differ diff --git a/public/img/docs/product-tour/headless_cms1.png b/public/img/docs/product-tour/headless_cms1.png new file mode 100644 index 000000000..fc67599ef Binary files /dev/null and b/public/img/docs/product-tour/headless_cms1.png differ diff --git a/public/img/docs/product-tour/headless_cms2.png b/public/img/docs/product-tour/headless_cms2.png new file mode 100644 index 000000000..71e542d2f Binary files /dev/null and b/public/img/docs/product-tour/headless_cms2.png differ diff --git a/public/img/docs/product-tour/local-workflow.png b/public/img/docs/product-tour/local-workflow.png new file mode 100644 index 000000000..9cc515ddd Binary files /dev/null and b/public/img/docs/product-tour/local-workflow.png differ diff --git a/public/img/docs/product-tour/queryable_database.png b/public/img/docs/product-tour/queryable_database.png new file mode 100644 index 000000000..5ebb751b1 Binary files /dev/null and b/public/img/docs/product-tour/queryable_database.png differ diff --git a/public/img/docs/product-tour/self-host-backend.png b/public/img/docs/product-tour/self-host-backend.png new file mode 100644 index 000000000..16fe997c3 Binary files /dev/null and b/public/img/docs/product-tour/self-host-backend.png differ diff --git a/public/img/docs/product-tour/tina-cloud.png b/public/img/docs/product-tour/tina-cloud.png new file mode 100644 index 000000000..3ac41b3d6 Binary files /dev/null and b/public/img/docs/product-tour/tina-cloud.png differ diff --git a/public/img/docs/reference/Sep-26-2024_16-03-00_f3ogev.gif b/public/img/docs/reference/Sep-26-2024_16-03-00_f3ogev.gif new file mode 100644 index 000000000..cc9a55255 Binary files /dev/null and b/public/img/docs/reference/Sep-26-2024_16-03-00_f3ogev.gif differ diff --git a/public/img/docs/reference/blog-post.png b/public/img/docs/reference/blog-post.png new file mode 100644 index 000000000..dd02eedf8 Binary files /dev/null and b/public/img/docs/reference/blog-post.png differ diff --git a/public/img/docs/reference/body-example.png b/public/img/docs/reference/body-example.png new file mode 100644 index 000000000..bd96a6c87 Binary files /dev/null and b/public/img/docs/reference/body-example.png differ diff --git a/public/img/docs/reference/boolean.png b/public/img/docs/reference/boolean.png new file mode 100644 index 000000000..9fb1012d9 Binary files /dev/null and b/public/img/docs/reference/boolean.png differ diff --git a/public/img/docs/reference/category-select.png b/public/img/docs/reference/category-select.png new file mode 100644 index 000000000..32c06315d Binary files /dev/null and b/public/img/docs/reference/category-select.png differ diff --git a/public/img/docs/reference/cells-and-rows.webm b/public/img/docs/reference/cells-and-rows.webm new file mode 100644 index 000000000..e44eed88d Binary files /dev/null and b/public/img/docs/reference/cells-and-rows.webm differ diff --git a/public/img/docs/reference/count-field.png b/public/img/docs/reference/count-field.png new file mode 100644 index 000000000..e83e6fa19 Binary files /dev/null and b/public/img/docs/reference/count-field.png differ diff --git a/public/img/docs/reference/custom-reference-field-ui_ojtrlx.png b/public/img/docs/reference/custom-reference-field-ui_ojtrlx.png new file mode 100644 index 000000000..f34e7079b Binary files /dev/null and b/public/img/docs/reference/custom-reference-field-ui_ojtrlx.png differ diff --git a/public/img/docs/reference/custom-template.png b/public/img/docs/reference/custom-template.png new file mode 100644 index 000000000..733157e87 Binary files /dev/null and b/public/img/docs/reference/custom-template.png differ diff --git a/public/img/docs/reference/date.png b/public/img/docs/reference/date.png new file mode 100644 index 000000000..c72128fb7 Binary files /dev/null and b/public/img/docs/reference/date.png differ diff --git a/public/img/docs/reference/date2.png b/public/img/docs/reference/date2.png new file mode 100644 index 000000000..a9a37ac54 Binary files /dev/null and b/public/img/docs/reference/date2.png differ diff --git a/public/img/docs/reference/date3.png b/public/img/docs/reference/date3.png new file mode 100644 index 000000000..f3fc1a35c Binary files /dev/null and b/public/img/docs/reference/date3.png differ diff --git a/public/img/docs/reference/description-example.png b/public/img/docs/reference/description-example.png new file mode 100644 index 000000000..70dfff7a8 Binary files /dev/null and b/public/img/docs/reference/description-example.png differ diff --git a/public/img/docs/reference/hello-world.png b/public/img/docs/reference/hello-world.png new file mode 100644 index 000000000..27c0e56d7 Binary files /dev/null and b/public/img/docs/reference/hello-world.png differ diff --git a/public/img/docs/reference/llama-list.png b/public/img/docs/reference/llama-list.png new file mode 100644 index 000000000..890f97226 Binary files /dev/null and b/public/img/docs/reference/llama-list.png differ diff --git a/public/img/docs/reference/media-not-configured_lnr5lw.png b/public/img/docs/reference/media-not-configured_lnr5lw.png new file mode 100644 index 000000000..14ac67211 Binary files /dev/null and b/public/img/docs/reference/media-not-configured_lnr5lw.png differ diff --git a/public/img/docs/reference/obj-list.png b/public/img/docs/reference/obj-list.png new file mode 100644 index 000000000..716676fb0 Binary files /dev/null and b/public/img/docs/reference/obj-list.png differ diff --git a/public/img/docs/reference/page-blocks.png b/public/img/docs/reference/page-blocks.png new file mode 100644 index 000000000..285f55760 Binary files /dev/null and b/public/img/docs/reference/page-blocks.png differ diff --git a/public/img/docs/reference/reference_field_example_tszsxd.png b/public/img/docs/reference/reference_field_example_tszsxd.png new file mode 100644 index 000000000..78af7f14b Binary files /dev/null and b/public/img/docs/reference/reference_field_example_tszsxd.png differ diff --git a/public/img/docs/reference/roadmap-items.webm b/public/img/docs/reference/roadmap-items.webm new file mode 100644 index 000000000..b44819780 Binary files /dev/null and b/public/img/docs/reference/roadmap-items.webm differ diff --git a/public/img/docs/reference/rodmap-grid.webm b/public/img/docs/reference/rodmap-grid.webm new file mode 100644 index 000000000..82ce526ed Binary files /dev/null and b/public/img/docs/reference/rodmap-grid.webm differ diff --git a/public/img/docs/reference/rtf-toolbar.png b/public/img/docs/reference/rtf-toolbar.png new file mode 100644 index 000000000..ae4fae0f6 Binary files /dev/null and b/public/img/docs/reference/rtf-toolbar.png differ diff --git a/public/img/docs/reference/rtf.png b/public/img/docs/reference/rtf.png new file mode 100644 index 000000000..1bd61a1b9 Binary files /dev/null and b/public/img/docs/reference/rtf.png differ diff --git a/public/img/docs/reference/search_reference_p5w3ce.png b/public/img/docs/reference/search_reference_p5w3ce.png new file mode 100644 index 000000000..26d92d36b Binary files /dev/null and b/public/img/docs/reference/search_reference_p5w3ce.png differ diff --git a/public/img/docs/reference/testimonial.png b/public/img/docs/reference/testimonial.png new file mode 100644 index 000000000..8af487ea3 Binary files /dev/null and b/public/img/docs/reference/testimonial.png differ diff --git a/public/img/docs/reference/text-and-media-component.webm b/public/img/docs/reference/text-and-media-component.webm new file mode 100644 index 000000000..32562e197 Binary files /dev/null and b/public/img/docs/reference/text-and-media-component.webm differ diff --git a/public/img/docs/reference/title-hello-body.png b/public/img/docs/reference/title-hello-body.png new file mode 100644 index 000000000..7542964fc Binary files /dev/null and b/public/img/docs/reference/title-hello-body.png differ diff --git a/public/img/docs/reference/value-hello-world.png b/public/img/docs/reference/value-hello-world.png new file mode 100644 index 000000000..96ff2bb69 Binary files /dev/null and b/public/img/docs/reference/value-hello-world.png differ diff --git a/public/img/docs/rich-text/cells-1.png b/public/img/docs/rich-text/cells-1.png new file mode 100644 index 000000000..a90d6c56f Binary files /dev/null and b/public/img/docs/rich-text/cells-1.png differ diff --git a/public/img/docs/rich-text/cells-2.png b/public/img/docs/rich-text/cells-2.png new file mode 100644 index 000000000..acea96460 Binary files /dev/null and b/public/img/docs/rich-text/cells-2.png differ diff --git a/public/img/docs/schema/image-example.png b/public/img/docs/schema/image-example.png new file mode 100644 index 000000000..d8c2425de Binary files /dev/null and b/public/img/docs/schema/image-example.png differ diff --git a/public/img/docs/self-hosted/Screenshot_2023-08-02_at_1.29.58_PM.png b/public/img/docs/self-hosted/Screenshot_2023-08-02_at_1.29.58_PM.png new file mode 100644 index 000000000..a83d6748d Binary files /dev/null and b/public/img/docs/self-hosted/Screenshot_2023-08-02_at_1.29.58_PM.png differ diff --git a/public/img/docs/self-hosted/personal-access-token.png b/public/img/docs/self-hosted/personal-access-token.png new file mode 100644 index 000000000..30acda094 Binary files /dev/null and b/public/img/docs/self-hosted/personal-access-token.png differ diff --git a/public/img/docs/self-hosted/tina-login-screen2.png b/public/img/docs/self-hosted/tina-login-screen2.png new file mode 100644 index 000000000..1fe331d69 Binary files /dev/null and b/public/img/docs/self-hosted/tina-login-screen2.png differ diff --git a/public/img/docs/self-hosted/user_management_edit_user_mhebwp.png b/public/img/docs/self-hosted/user_management_edit_user_mhebwp.png new file mode 100644 index 000000000..5a16cdb8b Binary files /dev/null and b/public/img/docs/self-hosted/user_management_edit_user_mhebwp.png differ diff --git a/public/img/docs/self-hosted/user_management_list_users_woxeve.png b/public/img/docs/self-hosted/user_management_list_users_woxeve.png new file mode 100644 index 000000000..0bd21ec14 Binary files /dev/null and b/public/img/docs/self-hosted/user_management_list_users_woxeve.png differ diff --git a/public/img/docs/self-hosted/user_management_users_collection_small_gjxgld.png b/public/img/docs/self-hosted/user_management_users_collection_small_gjxgld.png new file mode 100644 index 000000000..e967464c6 Binary files /dev/null and b/public/img/docs/self-hosted/user_management_users_collection_small_gjxgld.png differ diff --git a/public/img/docs/tina-cloud-deployment-options/build-and-deploy.png b/public/img/docs/tina-cloud-deployment-options/build-and-deploy.png new file mode 100644 index 000000000..7bd4240d9 Binary files /dev/null and b/public/img/docs/tina-cloud-deployment-options/build-and-deploy.png differ diff --git a/public/img/docs/tina-cloud-deployment-options/build-settings.png b/public/img/docs/tina-cloud-deployment-options/build-settings.png new file mode 100644 index 000000000..a409d9408 Binary files /dev/null and b/public/img/docs/tina-cloud-deployment-options/build-settings.png differ diff --git a/public/img/docs/tina-cloud-deployment-options/gh-config.png b/public/img/docs/tina-cloud-deployment-options/gh-config.png new file mode 100644 index 000000000..0aa3ad93c Binary files /dev/null and b/public/img/docs/tina-cloud-deployment-options/gh-config.png differ diff --git a/public/img/docs/tina-cloud-deployment-options/vercel-build-settings_vubza8.png b/public/img/docs/tina-cloud-deployment-options/vercel-build-settings_vubza8.png new file mode 100644 index 000000000..a0cf03c61 Binary files /dev/null and b/public/img/docs/tina-cloud-deployment-options/vercel-build-settings_vubza8.png differ diff --git a/public/img/docs/tina-cloud/Screen_Shot_2023-01-09_at_11.20.46_AM.png b/public/img/docs/tina-cloud/Screen_Shot_2023-01-09_at_11.20.46_AM.png new file mode 100644 index 000000000..d54b839b6 Binary files /dev/null and b/public/img/docs/tina-cloud/Screen_Shot_2023-01-09_at_11.20.46_AM.png differ diff --git a/public/img/docs/tina-cloud/api_tokens_list_v1_mmjpsp.png b/public/img/docs/tina-cloud/api_tokens_list_v1_mmjpsp.png new file mode 100644 index 000000000..ca1927a5e Binary files /dev/null and b/public/img/docs/tina-cloud/api_tokens_list_v1_mmjpsp.png differ diff --git a/public/img/docs/tina-cloud/branch-selector_e5ndeg.webm b/public/img/docs/tina-cloud/branch-selector_e5ndeg.webm new file mode 100644 index 000000000..2cda8aec9 Binary files /dev/null and b/public/img/docs/tina-cloud/branch-selector_e5ndeg.webm differ diff --git a/public/img/docs/tina-cloud/branch-status.png b/public/img/docs/tina-cloud/branch-status.png new file mode 100644 index 000000000..d54b839b6 Binary files /dev/null and b/public/img/docs/tina-cloud/branch-status.png differ diff --git a/public/img/docs/tina-cloud/gh-pages.png b/public/img/docs/tina-cloud/gh-pages.png new file mode 100644 index 000000000..a9022841c Binary files /dev/null and b/public/img/docs/tina-cloud/gh-pages.png differ diff --git a/public/img/docs/tina-cloud/new_api_token_v1_lq1rfy.png b/public/img/docs/tina-cloud/new_api_token_v1_lq1rfy.png new file mode 100644 index 000000000..3577128df Binary files /dev/null and b/public/img/docs/tina-cloud/new_api_token_v1_lq1rfy.png differ diff --git a/public/img/docs/tina-cloud/orgs.png b/public/img/docs/tina-cloud/orgs.png new file mode 100644 index 000000000..b8d355eb4 Binary files /dev/null and b/public/img/docs/tina-cloud/orgs.png differ diff --git a/public/img/docs/tina-cloud/overview.png b/public/img/docs/tina-cloud/overview.png new file mode 100644 index 000000000..447c606d6 Binary files /dev/null and b/public/img/docs/tina-cloud/overview.png differ diff --git a/public/img/docs/tinacms-data-layer_geyrv8.png b/public/img/docs/tinacms-data-layer_geyrv8.png new file mode 100644 index 000000000..efe0e9ee7 Binary files /dev/null and b/public/img/docs/tinacms-data-layer_geyrv8.png differ diff --git a/public/img/docs/your-blocks.gif b/public/img/docs/your-blocks.gif new file mode 100644 index 000000000..b73685e81 Binary files /dev/null and b/public/img/docs/your-blocks.gif differ diff --git a/public/img/docs/your-blocks.webm b/public/img/docs/your-blocks.webm new file mode 100644 index 000000000..0107f1417 Binary files /dev/null and b/public/img/docs/your-blocks.webm differ diff --git a/public/img/join-discord.png b/public/img/join-discord.png new file mode 100644 index 000000000..d52d890c8 Binary files /dev/null and b/public/img/join-discord.png differ diff --git a/public/img/logos/unity-logo.png b/public/img/logos/unity-logo.png new file mode 100644 index 000000000..2f2c55355 Binary files /dev/null and b/public/img/logos/unity-logo.png differ diff --git a/public/img/ndcoslo.png b/public/img/ndcoslo.png deleted file mode 100644 index f6aaa9fc3..000000000 Binary files a/public/img/ndcoslo.png and /dev/null differ diff --git a/public/img/people/jean-circle_v4aiw5.png b/public/img/people/jean-circle_v4aiw5.png new file mode 100644 index 000000000..fcb496582 Binary files /dev/null and b/public/img/people/jean-circle_v4aiw5.png differ diff --git a/public/img/people/levi-circle_ca5za1.png b/public/img/people/levi-circle_ca5za1.png new file mode 100644 index 000000000..19d647233 Binary files /dev/null and b/public/img/people/levi-circle_ca5za1.png differ diff --git a/public/img/people/logan.jpg b/public/img/people/logan.jpg new file mode 100644 index 000000000..b4c17b2e4 Binary files /dev/null and b/public/img/people/logan.jpg differ diff --git a/public/img/people/scott-circle2_dlmyxx.jpg b/public/img/people/scott-circle2_dlmyxx.jpg new file mode 100644 index 000000000..89de4b8f2 Binary files /dev/null and b/public/img/people/scott-circle2_dlmyxx.jpg differ diff --git a/public/img/serverlessSydney.png b/public/img/serverlessSydney.png deleted file mode 100644 index 3888ea93d..000000000 Binary files a/public/img/serverlessSydney.png and /dev/null differ diff --git a/public/img/tina_qoie8s.png b/public/img/tina_qoie8s.png new file mode 100644 index 000000000..31004d5b5 Binary files /dev/null and b/public/img/tina_qoie8s.png differ diff --git a/public/img/v1700758371/tina-io/examples/Tina_Static_Starter_Self_Hosted_kknsnf.png b/public/img/v1700758371/tina-io/examples/Tina_Static_Starter_Self_Hosted_kknsnf.png new file mode 100644 index 000000000..5bfc9e7b8 Binary files /dev/null and b/public/img/v1700758371/tina-io/examples/Tina_Static_Starter_Self_Hosted_kknsnf.png differ diff --git a/public/img/v1700758685/tina-io/examples/Tina_Self_Hosted_Demo_k4vpql.png b/public/img/v1700758685/tina-io/examples/Tina_Self_Hosted_Demo_k4vpql.png new file mode 100644 index 000000000..84a3ca364 Binary files /dev/null and b/public/img/v1700758685/tina-io/examples/Tina_Self_Hosted_Demo_k4vpql.png differ diff --git a/public/img/v1700758685/tina-io/examples/Tina_Self_Hosted_Demo_k4vpql.png.1 b/public/img/v1700758685/tina-io/examples/Tina_Self_Hosted_Demo_k4vpql.png.1 new file mode 100644 index 000000000..84a3ca364 Binary files /dev/null and b/public/img/v1700758685/tina-io/examples/Tina_Self_Hosted_Demo_k4vpql.png.1 differ diff --git a/public/img/v1700767927/tina-io/examples/Tina_Remix_w3cpe4.png b/public/img/v1700767927/tina-io/examples/Tina_Remix_w3cpe4.png new file mode 100644 index 000000000..0b14aedc4 Binary files /dev/null and b/public/img/v1700767927/tina-io/examples/Tina_Remix_w3cpe4.png differ diff --git a/public/video/before-data-layer.webm b/public/video/before-data-layer.webm new file mode 100644 index 000000000..66e8c8496 Binary files /dev/null and b/public/video/before-data-layer.webm differ diff --git a/public/video/blogTemplate.webm b/public/video/blogTemplate.webm new file mode 100644 index 000000000..825b9a0a2 Binary files /dev/null and b/public/video/blogTemplate.webm differ diff --git a/public/video/click-to-edit.webm b/public/video/click-to-edit.webm new file mode 100644 index 000000000..e053f94dc Binary files /dev/null and b/public/video/click-to-edit.webm differ diff --git a/public/video/create-branch.webm b/public/video/create-branch.webm new file mode 100644 index 000000000..25a6cdfa7 Binary files /dev/null and b/public/video/create-branch.webm differ diff --git a/public/video/key-features/2024-09-13-key-features-control-components.webm b/public/video/key-features/2024-09-13-key-features-control-components.webm new file mode 100644 index 000000000..4d6e03b41 Binary files /dev/null and b/public/video/key-features/2024-09-13-key-features-control-components.webm differ diff --git a/public/video/key-features/2024-09-13-key-features-docs.webm b/public/video/key-features/2024-09-13-key-features-docs.webm new file mode 100644 index 000000000..509cfb2de Binary files /dev/null and b/public/video/key-features/2024-09-13-key-features-docs.webm differ diff --git a/public/video/key-features/2024-09-13-key-features-github-integration.webm b/public/video/key-features/2024-09-13-key-features-github-integration.webm new file mode 100644 index 000000000..adf33bf8c Binary files /dev/null and b/public/video/key-features/2024-09-13-key-features-github-integration.webm differ diff --git a/public/video/key-features/2024-09-13-key-features-markdown.webm b/public/video/key-features/2024-09-13-key-features-markdown.webm new file mode 100644 index 000000000..4fafd16a3 Binary files /dev/null and b/public/video/key-features/2024-09-13-key-features-markdown.webm differ diff --git a/public/video/key-features/2024-09-13-key-features-open-source.webm b/public/video/key-features/2024-09-13-key-features-open-source.webm new file mode 100644 index 000000000..2bc550a67 Binary files /dev/null and b/public/video/key-features/2024-09-13-key-features-open-source.webm differ diff --git a/public/video/key-features/2024-09-13-key-features-visual-editing-v3.webm b/public/video/key-features/2024-09-13-key-features-visual-editing-v3.webm new file mode 100644 index 000000000..bcb9d0cfa Binary files /dev/null and b/public/video/key-features/2024-09-13-key-features-visual-editing-v3.webm differ diff --git a/public/video/key-features/2024-09-19-key-features-3rd-party-media.webm b/public/video/key-features/2024-09-19-key-features-3rd-party-media.webm new file mode 100644 index 000000000..7c19efd62 Binary files /dev/null and b/public/video/key-features/2024-09-19-key-features-3rd-party-media.webm differ diff --git a/public/video/key-features/2024-09-19-key-features-local.webm b/public/video/key-features/2024-09-19-key-features-local.webm new file mode 100644 index 000000000..af05ddfca Binary files /dev/null and b/public/video/key-features/2024-09-19-key-features-local.webm differ diff --git a/public/video/quick-edit-demo.webm b/public/video/quick-edit-demo.webm new file mode 100644 index 000000000..bbe6073a4 Binary files /dev/null and b/public/video/quick-edit-demo.webm differ diff --git a/public/video/router.webm b/public/video/router.webm new file mode 100644 index 000000000..6a1ea253e Binary files /dev/null and b/public/video/router.webm differ diff --git a/public/video/single-collection-demo.webm b/public/video/single-collection-demo.webm new file mode 100644 index 000000000..c73816215 Binary files /dev/null and b/public/video/single-collection-demo.webm differ diff --git a/tina/collectionsSchema/blogs.tsx b/tina/collectionsSchema/blogs.tsx index 6a8d76b96..d380a9576 100644 --- a/tina/collectionsSchema/blogs.tsx +++ b/tina/collectionsSchema/blogs.tsx @@ -93,6 +93,22 @@ export const blogsCollection = { }, ], }, + { + name: 'WebmEmbed', + label: 'Webm Embed', + fields: [ + { + type: 'string', + name: 'embedSrc', + label: 'Embed SRC', + }, + { + type: 'string', + name: 'width', + label: 'width', + } + ] + }, { name: 'GraphQLCodeBlock', label: 'GraphQL Code Block', diff --git a/tina/collectionsSchema/docs.tsx b/tina/collectionsSchema/docs.tsx index 2699ae968..0ebcea28d 100644 --- a/tina/collectionsSchema/docs.tsx +++ b/tina/collectionsSchema/docs.tsx @@ -133,6 +133,22 @@ export const docsCollection = { }, ], }, + { + name: 'WebmEmbed', + label: 'Webm Embed', + fields: [ + { + type: 'string', + name: 'embedSrc', + label: 'Embed SRC', + }, + { + type: 'string', + name: 'width', + label: 'width', + } + ] + }, { name: 'ImageAndText', label: 'Image and Text', diff --git a/tina/collectionsSchema/examples.tsx b/tina/collectionsSchema/examples.tsx index 2db98c2ee..9998f199c 100644 --- a/tina/collectionsSchema/examples.tsx +++ b/tina/collectionsSchema/examples.tsx @@ -30,7 +30,7 @@ export const examplesCollection = { ], }, image: - 'https://res.cloudinary.com/forestry-demo/image/upload/v1645712511/tina-io/docs/your-blocks.gif', + '/img/docs/your-blocks.webm', link: 'https://github.com/tinacms/tina-cloud-starter', }, itemProps: (item) => { diff --git a/tina/config.ts b/tina/config.ts index 5a771d8de..2cb18a07d 100644 --- a/tina/config.ts +++ b/tina/config.ts @@ -15,11 +15,10 @@ const tinaConfig = defineConfig({ }, }, media: { - //@ts-ignore - loadCustomStore: async () => { - const pack = await import('next-tinacms-cloudinary') - return pack.TinaCloudCloudinaryMediaStore - }, + tina: { + publicFolder: 'public', + mediaRoot: '', + } }, build: { outputFolder: 'admin', publicFolder: 'public' }, diff --git a/tina/tina-lock.json b/tina/tina-lock.json index a829a0d7d..275386359 100644 --- a/tina/tina-lock.json +++ b/tina/tina-lock.json @@ -1 +1 @@ -{"schema":{"version":{"fullVersion":"1.5.2","major":"1","minor":"5","patch":"2"},"meta":{"flags":["experimentalData"]},"collections":[{"label":"Pages","name":"page","path":"content/blocksPages","format":"json","ui":{},"fields":[{"type":"object","name":"seo","label":"SEO Information","fields":[{"type":"string","label":"Title","name":"title","description":"' | Tina' will be appended to the end of the value. If no title is provided, the default title in siteConfig.tsx is used.","namespace":["page","seo","title"],"searchable":true,"uid":false},{"type":"boolean","label":"Has Custom Title Suffix?","name":"hasCustomSuffix","ui":{"component":"toggle"},"description":"Set to true to remove the appended suffix ' | Tina'.","namespace":["page","seo","hasCustomSuffix"],"searchable":true,"uid":false},{"type":"string","label":" Description","name":"description","ui":{"component":"textarea"},"namespace":["page","seo","description"],"searchable":true,"uid":false}],"namespace":["page","seo"],"searchable":true,"uid":false},{"label":"Page Sections","name":"blocks","type":"object","list":true,"ui":{"visualSelector":true},"templates":[{"label":"Hero","name":"hero","ui":{"previewSrc":"/img/blocks/hero.png","defaultItem":{"headline":"Next Gen Content Management","text":"Tina is an open-source, Git-backed CMS with the ability to add visual editing to your NextJS site","actions":[{"variant":"orange","label":"Primary Action","icon":true,"url":"/"},{"variant":"","label":"Secondary Action","icon":false,"url":"/"}]}},"fields":[{"name":"headline","label":"Headline","type":"string","namespace":["page","blocks","hero","headline"],"searchable":true,"uid":false},{"name":"text","label":"Text","type":"string","namespace":["page","blocks","hero","text"],"searchable":true,"uid":false},{"name":"media","label":"Media","type":"object","list":true,"ui":{"min":0,"max":1},"templates":[{"name":"image","label":"Image","fields":[{"name":"image","label":"Image","type":"image","namespace":["page","blocks","hero","media","image","image"]}],"namespace":["page","blocks","hero","media","image"]},{"name":"video","label":"Video","fields":[{"name":"src","label":"Video Source","description":"This is the Cloudinary Public ID, for example \"tina-io/docs/quick-edit-demo\".","type":"string","namespace":["page","blocks","hero","media","video","src"]}],"namespace":["page","blocks","hero","media","video"]}],"namespace":["page","blocks","hero","media"],"searchable":true,"uid":false},{"name":"margin","description":"Default is px-8 py-12 lg:py-16","label":"Custom Margin","type":"string","namespace":["page","blocks","hero","margin"],"searchable":true,"uid":false},{"name":"spacing","description":"Default is gap-6","label":"Custom Spacing","type":"string","namespace":["page","blocks","hero","spacing"],"searchable":true,"uid":false},{"name":"smallerMobileBodyText","description":"Default text size on mobile is xl","label":"Mobile Text Size (off = xl, on = lg)","type":"boolean","namespace":["page","blocks","hero","smallerMobileBodyText"],"searchable":true,"uid":false},{"label":"Buttons","list":true,"name":"buttons","type":"object","ui":{"visualSelector":true},"templates":[{"label":"Actions","name":"actions","type":"object","list":true,"ui":{"defaultItem":{"variant":"default","label":"Secondary Action","icon":false,"size":"medium","url":"/"}},"fields":[{"name":"label","label":"Label","type":"string","namespace":["page","blocks","hero","buttons","actions","label"]},{"name":"icon","label":"Icon","type":"boolean","namespace":["page","blocks","hero","buttons","actions","icon"]},{"name":"variant","label":"Variant","type":"string","options":[{"value":"default","label":"Seafoam"},{"value":"blue","label":"Blue"},{"value":"orange","label":"Orange"},{"value":"white","label":"White"},{"value":"ghost","label":"Ghost"},{"value":"orangeWithBorder","label":"Orange with Border"},{"value":"ghostBlue","label":"Ghost Blue"}],"namespace":["page","blocks","hero","buttons","actions","variant"]},{"name":"size","label":"Size","type":"string","options":[{"value":"small","label":"Small"},{"value":"medium","label":"Medium"},{"value":"large","label":"Large"}],"namespace":["page","blocks","hero","buttons","actions","size"]},{"name":"url","label":"URL","type":"string","namespace":["page","blocks","hero","buttons","actions","url"]}],"namespace":["page","blocks","hero","buttons","actions"]},{"label":"Modal Button","name":"modalButton","type":"object","list":true,"ui":{"defaultItem":{"variant":"default","label":"Secondary Action","icon":false,"size":"medium"}},"fields":[{"name":"label","label":"Label","type":"string","namespace":["page","blocks","hero","buttons","modalButton","label"]},{"name":"icon","label":"Icon","type":"boolean","namespace":["page","blocks","hero","buttons","modalButton","icon"]},{"name":"color","label":"Color","type":"string","options":[{"value":"default","label":"Seafoam"},{"value":"blue","label":"Blue"},{"value":"orange","label":"Orange"},{"value":"white","label":"White"},{"value":"ghost","label":"Ghost"},{"value":"command","label":"Command"}],"namespace":["page","blocks","hero","buttons","modalButton","color"]},{"name":"size","label":"Size","type":"string","options":[{"value":"small","label":"Small"},{"value":"medium","label":"Medium"},{"value":"large","label":"Large"}],"namespace":["page","blocks","hero","buttons","modalButton","size"]},{"name":"modal","label":"Modal","type":"string","options":["BookDemo.tsx","EmailForm.tsx"],"namespace":["page","blocks","hero","buttons","modalButton","modal"]}],"namespace":["page","blocks","hero","buttons","modalButton"]},{"label":"Code Button","name":"codeButton","type":"object","list":true,"ui":{},"fields":[{"name":"label","label":"Label","type":"string","namespace":["page","blocks","hero","buttons","codeButton","label"]}],"namespace":["page","blocks","hero","buttons","codeButton"]}],"namespace":["page","blocks","hero","buttons"],"searchable":true,"uid":false}],"namespace":["page","blocks","hero"]},{"label":"Features","name":"features","ui":{"previewSrc":"/img/blocks/features.png"},"fields":[{"name":"features","label":"Feature Items","type":"object","list":true,"ui":{},"fields":[{"name":"headline","label":"Headline","type":"string","namespace":["page","blocks","features","features","headline"]},{"name":"text","label":"Text","ui":{"component":"textarea"},"type":"string","namespace":["page","blocks","features","features","text"]},{"label":"Buttons","list":true,"name":"buttons","type":"object","ui":{"visualSelector":true},"templates":[{"label":"Actions","name":"actions","type":"object","list":true,"ui":{"defaultItem":{"variant":"default","label":"Secondary Action","icon":false,"size":"medium","url":"/"}},"fields":[{"name":"label","label":"Label","type":"string","namespace":["page","blocks","features","features","buttons","actions","label"]},{"name":"icon","label":"Icon","type":"boolean","namespace":["page","blocks","features","features","buttons","actions","icon"]},{"name":"variant","label":"Variant","type":"string","options":[{"value":"default","label":"Seafoam"},{"value":"blue","label":"Blue"},{"value":"orange","label":"Orange"},{"value":"white","label":"White"},{"value":"ghost","label":"Ghost"},{"value":"orangeWithBorder","label":"Orange with Border"},{"value":"ghostBlue","label":"Ghost Blue"}],"namespace":["page","blocks","features","features","buttons","actions","variant"]},{"name":"size","label":"Size","type":"string","options":[{"value":"small","label":"Small"},{"value":"medium","label":"Medium"},{"value":"large","label":"Large"}],"namespace":["page","blocks","features","features","buttons","actions","size"]},{"name":"url","label":"URL","type":"string","namespace":["page","blocks","features","features","buttons","actions","url"]}],"namespace":["page","blocks","features","features","buttons","actions"]},{"label":"Modal Button","name":"modalButton","type":"object","list":true,"ui":{"defaultItem":{"variant":"default","label":"Secondary Action","icon":false,"size":"medium"}},"fields":[{"name":"label","label":"Label","type":"string","namespace":["page","blocks","features","features","buttons","modalButton","label"]},{"name":"icon","label":"Icon","type":"boolean","namespace":["page","blocks","features","features","buttons","modalButton","icon"]},{"name":"color","label":"Color","type":"string","options":[{"value":"default","label":"Seafoam"},{"value":"blue","label":"Blue"},{"value":"orange","label":"Orange"},{"value":"white","label":"White"},{"value":"ghost","label":"Ghost"},{"value":"command","label":"Command"}],"namespace":["page","blocks","features","features","buttons","modalButton","color"]},{"name":"size","label":"Size","type":"string","options":[{"value":"small","label":"Small"},{"value":"medium","label":"Medium"},{"value":"large","label":"Large"}],"namespace":["page","blocks","features","features","buttons","modalButton","size"]},{"name":"modal","label":"Modal","type":"string","options":["BookDemo.tsx","EmailForm.tsx"],"namespace":["page","blocks","features","features","buttons","modalButton","modal"]}],"namespace":["page","blocks","features","features","buttons","modalButton"]},{"label":"Code Button","name":"codeButton","type":"object","list":true,"ui":{},"fields":[{"name":"label","label":"Label","type":"string","namespace":["page","blocks","features","features","buttons","codeButton","label"]}],"namespace":["page","blocks","features","features","buttons","codeButton"]}],"namespace":["page","blocks","features","features","buttons"]},{"name":"media","label":"Media","type":"object","list":true,"ui":{"min":0,"max":1},"templates":[{"name":"image","label":"Image","fields":[{"name":"image","label":"Image","type":"image","namespace":["page","blocks","features","features","media","image","image"]}],"namespace":["page","blocks","features","features","media","image"]},{"name":"video","label":"Video","fields":[{"name":"src","label":"Video Source","description":"This is the Cloudinary Public ID, for example \"tina-io/docs/quick-edit-demo\".","type":"string","namespace":["page","blocks","features","features","media","video","src"]}],"namespace":["page","blocks","features","features","media","video"]},{"name":"code","label":"Code","ui":{"defaultItem":{"file":"index.js","code":"console.log(\"Hello World\")","language":"javascript","scale":1}},"fields":[{"name":"file","label":"Filename","type":"string","namespace":["page","blocks","features","features","media","code","file"]},{"name":"code","label":"Code","type":"string","ui":{"component":"textarea"},"namespace":["page","blocks","features","features","media","code","code"]},{"name":"language","label":"Language","type":"string","namespace":["page","blocks","features","features","media","code","language"]},{"name":"scale","label":"Text Scale","type":"number","namespace":["page","blocks","features","features","media","code","scale"]}],"namespace":["page","blocks","features","features","media","code"]}],"namespace":["page","blocks","features","features","media"]},{"name":"isReversed","label":"Text on Right?","description":"This is the position of the text, relative to the media. Off is left, and on is right.","type":"boolean","ui":{"component":"toggle"},"namespace":["page","blocks","features","features","isReversed"]},{"name":"imageBackground","label":"Image Background","description":"This will toggle the background and bordering of the media. This will only have visible changes if the media has a transparent background.","type":"boolean","ui":{"component":"toggle"},"namespace":["page","blocks","features","features","imageBackground"]}],"namespace":["page","blocks","features","features"],"searchable":true,"uid":false}],"namespace":["page","blocks","features"]},{"name":"flying","label":"Flying","ui":{"previewSrc":"/img/blocks/flying.png"},"fields":[{"name":"headline","label":"Headline","type":"string","namespace":["page","blocks","flying","headline"],"searchable":true,"uid":false},{"name":"text","label":"Text","ui":{"component":"textarea"},"type":"string","namespace":["page","blocks","flying","text"],"searchable":true,"uid":false},{"label":"Buttons","list":true,"name":"buttons","type":"object","ui":{"visualSelector":true},"templates":[{"label":"Actions","name":"actions","type":"object","list":true,"ui":{"defaultItem":{"variant":"default","label":"Secondary Action","icon":false,"size":"medium","url":"/"}},"fields":[{"name":"label","label":"Label","type":"string","namespace":["page","blocks","flying","buttons","actions","label"]},{"name":"icon","label":"Icon","type":"boolean","namespace":["page","blocks","flying","buttons","actions","icon"]},{"name":"variant","label":"Variant","type":"string","options":[{"value":"default","label":"Seafoam"},{"value":"blue","label":"Blue"},{"value":"orange","label":"Orange"},{"value":"white","label":"White"},{"value":"ghost","label":"Ghost"},{"value":"orangeWithBorder","label":"Orange with Border"},{"value":"ghostBlue","label":"Ghost Blue"}],"namespace":["page","blocks","flying","buttons","actions","variant"]},{"name":"size","label":"Size","type":"string","options":[{"value":"small","label":"Small"},{"value":"medium","label":"Medium"},{"value":"large","label":"Large"}],"namespace":["page","blocks","flying","buttons","actions","size"]},{"name":"url","label":"URL","type":"string","namespace":["page","blocks","flying","buttons","actions","url"]}],"namespace":["page","blocks","flying","buttons","actions"]},{"label":"Modal Button","name":"modalButton","type":"object","list":true,"ui":{"defaultItem":{"variant":"default","label":"Secondary Action","icon":false,"size":"medium"}},"fields":[{"name":"label","label":"Label","type":"string","namespace":["page","blocks","flying","buttons","modalButton","label"]},{"name":"icon","label":"Icon","type":"boolean","namespace":["page","blocks","flying","buttons","modalButton","icon"]},{"name":"color","label":"Color","type":"string","options":[{"value":"default","label":"Seafoam"},{"value":"blue","label":"Blue"},{"value":"orange","label":"Orange"},{"value":"white","label":"White"},{"value":"ghost","label":"Ghost"},{"value":"command","label":"Command"}],"namespace":["page","blocks","flying","buttons","modalButton","color"]},{"name":"size","label":"Size","type":"string","options":[{"value":"small","label":"Small"},{"value":"medium","label":"Medium"},{"value":"large","label":"Large"}],"namespace":["page","blocks","flying","buttons","modalButton","size"]},{"name":"modal","label":"Modal","type":"string","options":["BookDemo.tsx","EmailForm.tsx"],"namespace":["page","blocks","flying","buttons","modalButton","modal"]}],"namespace":["page","blocks","flying","buttons","modalButton"]},{"label":"Code Button","name":"codeButton","type":"object","list":true,"ui":{},"fields":[{"name":"label","label":"Label","type":"string","namespace":["page","blocks","flying","buttons","codeButton","label"]}],"namespace":["page","blocks","flying","buttons","codeButton"]}],"namespace":["page","blocks","flying","buttons"],"searchable":true,"uid":false}],"namespace":["page","blocks","flying"]},{"name":"pricing","label":"Pricing","ui":{"previewSrc":"/img/blocks/pricing.png","defaultItem":{"intro":"**No surprises. **Predictable pricing for every project. Complete control of your content, forever.\n\nTina’s source code is open-source. Your content lives in accessible formats right in your Git repository.\n"}},"fields":[{"name":"headline","label":"Headline","type":"string","namespace":["page","blocks","pricing","headline"],"searchable":true,"uid":false},{"name":"freeTier","label":"Free Tier","type":"object","fields":[{"name":"name","label":"Name","type":"string","namespace":["page","blocks","pricing","freeTier","name"]},{"name":"description","label":"Description","type":"rich-text","namespace":["page","blocks","pricing","freeTier","description"]},{"name":"price","label":"Monthly Price","type":"string","namespace":["page","blocks","pricing","freeTier","price"]},{"name":"annualPrice","label":"Annual Price","type":"string","namespace":["page","blocks","pricing","freeTier","annualPrice"]},{"name":"annualDescription","label":"Annual Description","type":"string","namespace":["page","blocks","pricing","freeTier","annualDescription"]},{"name":"interval","label":"Interval","type":"string","namespace":["page","blocks","pricing","freeTier","interval"]},{"name":"cardItem","label":"Card Item","type":"object","list":true,"ui":{},"fields":[{"name":"name","label":"Name","type":"string","namespace":["page","blocks","pricing","freeTier","cardItem","name"]},{"name":"icon","label":"Icon","type":"string","description":"Can't find the icon you want? ask a developer to add it","ui":{},"namespace":["page","blocks","pricing","freeTier","cardItem","icon"]},{"name":"description","label":"Description","type":"string","namespace":["page","blocks","pricing","freeTier","cardItem","description"]}],"namespace":["page","blocks","pricing","freeTier","cardItem"]},{"label":"Buttons","list":true,"name":"buttons","type":"object","ui":{"visualSelector":true},"templates":[{"label":"Actions","name":"actions","type":"object","list":true,"ui":{"defaultItem":{"variant":"default","label":"Secondary Action","icon":false,"size":"medium","url":"/"}},"fields":[{"name":"label","label":"Label","type":"string","namespace":["page","blocks","pricing","plans","buttons","actions","label"]},{"name":"icon","label":"Icon","type":"boolean","namespace":["page","blocks","pricing","plans","buttons","actions","icon"]},{"name":"variant","label":"Variant","type":"string","options":[{"value":"default","label":"Seafoam"},{"value":"blue","label":"Blue"},{"value":"orange","label":"Orange"},{"value":"white","label":"White"},{"value":"ghost","label":"Ghost"},{"value":"orangeWithBorder","label":"Orange with Border"},{"value":"ghostBlue","label":"Ghost Blue"}],"namespace":["page","blocks","pricing","plans","buttons","actions","variant"]},{"name":"size","label":"Size","type":"string","options":[{"value":"small","label":"Small"},{"value":"medium","label":"Medium"},{"value":"large","label":"Large"}],"namespace":["page","blocks","pricing","plans","buttons","actions","size"]},{"name":"url","label":"URL","type":"string","namespace":["page","blocks","pricing","plans","buttons","actions","url"]}],"namespace":["page","blocks","pricing","freeTier","buttons","actions"]},{"label":"Modal Button","name":"modalButton","type":"object","list":true,"ui":{"defaultItem":{"variant":"default","label":"Secondary Action","icon":false,"size":"medium"}},"fields":[{"name":"label","label":"Label","type":"string","namespace":["page","blocks","pricing","plans","buttons","modalButton","label"]},{"name":"icon","label":"Icon","type":"boolean","namespace":["page","blocks","pricing","plans","buttons","modalButton","icon"]},{"name":"color","label":"Color","type":"string","options":[{"value":"default","label":"Seafoam"},{"value":"blue","label":"Blue"},{"value":"orange","label":"Orange"},{"value":"white","label":"White"},{"value":"ghost","label":"Ghost"},{"value":"command","label":"Command"}],"namespace":["page","blocks","pricing","plans","buttons","modalButton","color"]},{"name":"size","label":"Size","type":"string","options":[{"value":"small","label":"Small"},{"value":"medium","label":"Medium"},{"value":"large","label":"Large"}],"namespace":["page","blocks","pricing","plans","buttons","modalButton","size"]},{"name":"modal","label":"Modal","type":"string","options":["BookDemo.tsx","EmailForm.tsx"],"namespace":["page","blocks","pricing","plans","buttons","modalButton","modal"]}],"namespace":["page","blocks","pricing","freeTier","buttons","modalButton"]},{"label":"Code Button","name":"codeButton","type":"object","list":true,"ui":{},"fields":[{"name":"label","label":"Label","type":"string","namespace":["page","blocks","pricing","plans","buttons","codeButton","label"]}],"namespace":["page","blocks","pricing","freeTier","buttons","codeButton"]}],"namespace":["page","blocks","pricing","freeTier","buttons"]},{"name":"isStarred","label":"Is Starred?","type":"boolean","description":"Enabling this will add a star to the pricing block","namespace":["page","blocks","pricing","freeTier","isStarred"]}],"namespace":["page","blocks","pricing","freeTier"],"searchable":true,"uid":false},{"name":"intro","label":"Intro Text","type":"rich-text","namespace":["page","blocks","pricing","intro"],"searchable":true,"parser":{"type":"markdown"},"uid":false},{"name":"pillSwitchVisibileText","label":"Pill Switch Visible Text","type":"rich-text","description":"this is the text displayed regardless of the switch","namespace":["page","blocks","pricing","pillSwitchVisibileText"],"searchable":true,"parser":{"type":"markdown"},"uid":false},{"name":"pillSwitchToggleText","label":"Pill Switch Toggle Text","type":"rich-text","description":"this is the text displayed depending on the toggle","namespace":["page","blocks","pricing","pillSwitchToggleText"],"searchable":true,"parser":{"type":"markdown"},"uid":false},{"name":"plans","label":"Pricing Plans","type":"object","list":true,"fields":[{"name":"name","label":"Name","type":"string","namespace":["page","blocks","pricing","plans","name"]},{"name":"description","label":"Description","type":"rich-text","namespace":["page","blocks","pricing","plans","description"]},{"name":"price","label":"Monthly Price","type":"string","namespace":["page","blocks","pricing","plans","price"]},{"name":"annualPrice","label":"Annual Price","type":"string","namespace":["page","blocks","pricing","plans","annualPrice"]},{"name":"annualDescription","label":"Annual Description","type":"string","namespace":["page","blocks","pricing","plans","annualDescription"]},{"name":"interval","label":"Interval","type":"string","namespace":["page","blocks","pricing","plans","interval"]},{"name":"cardItem","label":"Card Item","type":"object","list":true,"ui":{},"fields":[{"name":"name","label":"Name","type":"string","namespace":["page","blocks","pricing","plans","cardItem","name"]},{"name":"icon","label":"Icon","type":"string","description":"Can't find the icon you want? ask a developer to add it","ui":{},"namespace":["page","blocks","pricing","plans","cardItem","icon"]},{"name":"description","label":"Description","type":"string","namespace":["page","blocks","pricing","plans","cardItem","description"]}],"namespace":["page","blocks","pricing","plans","cardItem"]},{"label":"Buttons","list":true,"name":"buttons","type":"object","ui":{"visualSelector":true},"templates":[{"label":"Actions","name":"actions","type":"object","list":true,"ui":{"defaultItem":{"variant":"default","label":"Secondary Action","icon":false,"size":"medium","url":"/"}},"fields":[{"name":"label","label":"Label","type":"string","namespace":["page","blocks","pricing","plans","buttons","actions","label"]},{"name":"icon","label":"Icon","type":"boolean","namespace":["page","blocks","pricing","plans","buttons","actions","icon"]},{"name":"variant","label":"Variant","type":"string","options":[{"value":"default","label":"Seafoam"},{"value":"blue","label":"Blue"},{"value":"orange","label":"Orange"},{"value":"white","label":"White"},{"value":"ghost","label":"Ghost"},{"value":"orangeWithBorder","label":"Orange with Border"},{"value":"ghostBlue","label":"Ghost Blue"}],"namespace":["page","blocks","pricing","plans","buttons","actions","variant"]},{"name":"size","label":"Size","type":"string","options":[{"value":"small","label":"Small"},{"value":"medium","label":"Medium"},{"value":"large","label":"Large"}],"namespace":["page","blocks","pricing","plans","buttons","actions","size"]},{"name":"url","label":"URL","type":"string","namespace":["page","blocks","pricing","plans","buttons","actions","url"]}],"namespace":["page","blocks","pricing","plans","buttons","actions"]},{"label":"Modal Button","name":"modalButton","type":"object","list":true,"ui":{"defaultItem":{"variant":"default","label":"Secondary Action","icon":false,"size":"medium"}},"fields":[{"name":"label","label":"Label","type":"string","namespace":["page","blocks","pricing","plans","buttons","modalButton","label"]},{"name":"icon","label":"Icon","type":"boolean","namespace":["page","blocks","pricing","plans","buttons","modalButton","icon"]},{"name":"color","label":"Color","type":"string","options":[{"value":"default","label":"Seafoam"},{"value":"blue","label":"Blue"},{"value":"orange","label":"Orange"},{"value":"white","label":"White"},{"value":"ghost","label":"Ghost"},{"value":"command","label":"Command"}],"namespace":["page","blocks","pricing","plans","buttons","modalButton","color"]},{"name":"size","label":"Size","type":"string","options":[{"value":"small","label":"Small"},{"value":"medium","label":"Medium"},{"value":"large","label":"Large"}],"namespace":["page","blocks","pricing","plans","buttons","modalButton","size"]},{"name":"modal","label":"Modal","type":"string","options":["BookDemo.tsx","EmailForm.tsx"],"namespace":["page","blocks","pricing","plans","buttons","modalButton","modal"]}],"namespace":["page","blocks","pricing","plans","buttons","modalButton"]},{"label":"Code Button","name":"codeButton","type":"object","list":true,"ui":{},"fields":[{"name":"label","label":"Label","type":"string","namespace":["page","blocks","pricing","plans","buttons","codeButton","label"]}],"namespace":["page","blocks","pricing","plans","buttons","codeButton"]}],"namespace":["page","blocks","pricing","plans","buttons"]},{"name":"isStarred","label":"Is Starred?","type":"boolean","description":"Enabling this will add a star to the pricing block","namespace":["page","blocks","pricing","plans","isStarred"]}],"ui":{"defaultItem":{"name":"Pricing Tier","price":"$99","interval":"month"}},"namespace":["page","blocks","pricing","plans"],"searchable":true,"uid":false}],"namespace":["page","blocks","pricing"]},{"label":"FAQ","name":"faq","ui":{"previewSrc":"/img/blocks/faq.png","defaultItem":{"title":"Frequently Asked Questions","questions":[{"question":"What is Tina?","answer":"Tina is a Git-backed headless content management system that enables developers and content creators to collaborate seamlessly. With Tina, developers can create a custom visual editing experience that is perfectly tailored to their site.\n"}],"color":"seafoam"}},"fields":[{"name":"title","label":"Title","type":"string","namespace":["page","blocks","faq","title"],"searchable":true,"uid":false},{"name":"intro","label":"Introduction","type":"rich-text","namespace":["page","blocks","faq","intro"],"searchable":true,"parser":{"type":"markdown"},"uid":false},{"name":"questions","label":"Questions","type":"object","list":true,"fields":[{"name":"question","label":"Question","type":"string","namespace":["page","blocks","faq","questions","question"]},{"name":"answer","label":"Answer","type":"rich-text","namespace":["page","blocks","faq","questions","answer"]}],"namespace":["page","blocks","faq","questions"],"searchable":true,"uid":false},{"name":"color","label":"Color","type":"string","options":[{"label":"Gradient","value":"gradient"},{"label":"White","value":"white"}],"namespace":["page","blocks","faq","color"],"searchable":true,"uid":false}],"namespace":["page","blocks","faq"]},{"label":"Content","name":"content","ui":{"previewSrc":"/img/blocks/content.png"},"fields":[{"name":"options","label":"Options","type":"object","fields":[{"name":"narrow","label":"Narrow","type":"boolean","namespace":["page","blocks","content","options","narrow"]},{"name":"color","label":"Color","type":"string","options":[{"label":"Seafoam","value":"seafoam"},{"label":"White","value":"white"}],"namespace":["page","blocks","content","options","color"]},{"name":"align","label":"Align Content","type":"string","options":[{"label":"Left","value":"left"},{"label":"Center","value":"center"},{"label":"Right","value":"right"}],"namespace":["page","blocks","content","options","align"]}],"namespace":["page","blocks","content","options"],"searchable":true,"uid":false},{"name":"content","label":"Content","type":"rich-text","parser":{"type":"mdx"},"templates":[{"label":"Actions","name":"actions","type":"object","list":true,"ui":{"defaultItem":{"variant":"default","label":"Secondary Action","icon":false,"size":"medium","url":"/"}},"fields":[{"name":"label","label":"Label","type":"string","namespace":["page","blocks","content","content","actions","label"]},{"name":"icon","label":"Icon","type":"boolean","namespace":["page","blocks","content","content","actions","icon"]},{"name":"variant","label":"Variant","type":"string","options":[{"value":"default","label":"Seafoam"},{"value":"blue","label":"Blue"},{"value":"orange","label":"Orange"},{"value":"white","label":"White"},{"value":"ghost","label":"Ghost"},{"value":"orangeWithBorder","label":"Orange with Border"},{"value":"ghostBlue","label":"Ghost Blue"}],"namespace":["page","blocks","content","content","actions","variant"]},{"name":"size","label":"Size","type":"string","options":[{"value":"small","label":"Small"},{"value":"medium","label":"Medium"},{"value":"large","label":"Large"}],"namespace":["page","blocks","content","content","actions","size"]},{"name":"url","label":"URL","type":"string","namespace":["page","blocks","content","content","actions","url"]}],"namespace":["page","blocks","content","content","actions"]},{"name":"social","label":"Social Links","ui":{"defaultItem":{"tina":"https://github.com/tinacms/tinacms/discussions","discord":"https://discord.com/invite/zumN63Ybpf","github":"https://github.com/tinacms/tinacms","twitter":"https://twitter.com/tinacms"}},"fields":[{"type":"string","name":"tina","label":"Tina","namespace":["page","blocks","content","content","social","tina"]},{"type":"string","name":"discord","label":"Discord","namespace":["page","blocks","content","content","social","discord"]},{"type":"string","name":"github","label":"GitHub","namespace":["page","blocks","content","content","social","github"]},{"type":"string","name":"twitter","label":"Twitter","namespace":["page","blocks","content","content","social","twitter"]}],"namespace":["page","blocks","content","content","social"]},{"name":"newsletter","label":"Newsletter Signup","ui":{"defaultItem":{"style":"default"}},"fields":[{"name":"style","label":"Style","type":"string","options":[{"label":"Default","value":"default"},{"label":"Small","value":"small"}],"namespace":["page","blocks","content","content","newsletter","style"]}],"namespace":["page","blocks","content","content","newsletter"]}],"namespace":["page","blocks","content","content"],"searchable":true}],"namespace":["page","blocks","content"]},{"label":"Showcase","name":"showcase","ui":{"previewSrc":"/img/blocks/features.png"},"fields":[{"name":"items","label":"Showcase Items","type":"object","list":true,"ui":{},"fields":[{"name":"headline","label":"Headline","type":"string","namespace":["page","blocks","showcase","items","headline"]},{"name":"text","label":"Text","ui":{"component":"textarea"},"type":"string","namespace":["page","blocks","showcase","items","text"]},{"name":"url","label":"URL","type":"string","namespace":["page","blocks","showcase","items","url"]},{"name":"media","label":"Media","type":"object","fields":[{"name":"src","label":"Image Source","type":"image","namespace":["page","blocks","showcase","items","media","src"]}],"namespace":["page","blocks","showcase","items","media"]}],"namespace":["page","blocks","showcase","items"],"searchable":true,"uid":false}],"namespace":["page","blocks","showcase"]},{"label":"Columns","name":"columns","ui":{"previewSrc":"/img/blocks/columns.png"},"fields":[{"name":"options","label":"Options","type":"object","fields":[{"name":"columns","label":"Column Sizes","type":"string","options":[{"label":"Default","value":"default"},{"label":"Not Default","value":"notDefault"}],"namespace":["page","blocks","columns","options","columns"]},{"name":"narrow","label":"Narrow","type":"boolean","namespace":["page","blocks","columns","options","narrow"]},{"name":"color","label":"Color","type":"string","options":[{"label":"Seafoam","value":"seafoam"},{"label":"White","value":"white"}],"namespace":["page","blocks","columns","options","color"]},{"name":"align","label":"Align Content","type":"string","options":[{"label":"Left","value":"left"},{"label":"Center","value":"center"},{"label":"Right","value":"right"}],"namespace":["page","blocks","columns","options","align"]}],"namespace":["page","blocks","columns","options"],"searchable":true,"uid":false},{"name":"columnOne","label":"Column One","type":"rich-text","parser":{"type":"mdx"},"templates":[{"label":"Actions","name":"actions","type":"object","list":true,"ui":{"defaultItem":{"variant":"default","label":"Secondary Action","icon":false,"size":"medium","url":"/"}},"fields":[{"name":"label","label":"Label","type":"string","namespace":["page","blocks","columns","columnOne","actions","label"]},{"name":"icon","label":"Icon","type":"boolean","namespace":["page","blocks","columns","columnOne","actions","icon"]},{"name":"variant","label":"Variant","type":"string","options":[{"value":"default","label":"Seafoam"},{"value":"blue","label":"Blue"},{"value":"orange","label":"Orange"},{"value":"white","label":"White"},{"value":"ghost","label":"Ghost"},{"value":"orangeWithBorder","label":"Orange with Border"},{"value":"ghostBlue","label":"Ghost Blue"}],"namespace":["page","blocks","columns","columnOne","actions","variant"]},{"name":"size","label":"Size","type":"string","options":[{"value":"small","label":"Small"},{"value":"medium","label":"Medium"},{"value":"large","label":"Large"}],"namespace":["page","blocks","columns","columnOne","actions","size"]},{"name":"url","label":"URL","type":"string","namespace":["page","blocks","columns","columnOne","actions","url"]}],"namespace":["page","blocks","columns","columnOne","actions"]},{"name":"social","label":"Social Links","ui":{"defaultItem":{"tina":"https://github.com/tinacms/tinacms/discussions","discord":"https://discord.com/invite/zumN63Ybpf","github":"https://github.com/tinacms/tinacms","twitter":"https://twitter.com/tinacms"}},"fields":[{"type":"string","name":"tina","label":"Tina","namespace":["page","blocks","columns","columnOne","social","tina"]},{"type":"string","name":"discord","label":"Discord","namespace":["page","blocks","columns","columnOne","social","discord"]},{"type":"string","name":"github","label":"GitHub","namespace":["page","blocks","columns","columnOne","social","github"]},{"type":"string","name":"twitter","label":"Twitter","namespace":["page","blocks","columns","columnOne","social","twitter"]}],"namespace":["page","blocks","columns","columnOne","social"]},{"name":"newsletter","label":"Newsletter Signup","ui":{"defaultItem":{"style":"default"}},"fields":[{"name":"style","label":"Style","type":"string","options":[{"label":"Default","value":"default"},{"label":"Small","value":"small"}],"namespace":["page","blocks","columns","columnOne","newsletter","style"]}],"namespace":["page","blocks","columns","columnOne","newsletter"]}],"namespace":["page","blocks","columns","columnOne"],"searchable":true},{"name":"columnTwo","label":"Column Two","type":"rich-text","parser":{"type":"mdx"},"templates":[{"label":"Actions","name":"actions","type":"object","list":true,"ui":{"defaultItem":{"variant":"default","label":"Secondary Action","icon":false,"size":"medium","url":"/"}},"fields":[{"name":"label","label":"Label","type":"string","namespace":["page","blocks","columns","columnTwo","actions","label"]},{"name":"icon","label":"Icon","type":"boolean","namespace":["page","blocks","columns","columnTwo","actions","icon"]},{"name":"variant","label":"Variant","type":"string","options":[{"value":"default","label":"Seafoam"},{"value":"blue","label":"Blue"},{"value":"orange","label":"Orange"},{"value":"white","label":"White"},{"value":"ghost","label":"Ghost"},{"value":"orangeWithBorder","label":"Orange with Border"},{"value":"ghostBlue","label":"Ghost Blue"}],"namespace":["page","blocks","columns","columnTwo","actions","variant"]},{"name":"size","label":"Size","type":"string","options":[{"value":"small","label":"Small"},{"value":"medium","label":"Medium"},{"value":"large","label":"Large"}],"namespace":["page","blocks","columns","columnTwo","actions","size"]},{"name":"url","label":"URL","type":"string","namespace":["page","blocks","columns","columnTwo","actions","url"]}],"namespace":["page","blocks","columns","columnTwo","actions"]},{"name":"social","label":"Social Links","ui":{"defaultItem":{"tina":"https://github.com/tinacms/tinacms/discussions","discord":"https://discord.com/invite/zumN63Ybpf","github":"https://github.com/tinacms/tinacms","twitter":"https://twitter.com/tinacms"}},"fields":[{"type":"string","name":"tina","label":"Tina","namespace":["page","blocks","columns","columnTwo","social","tina"]},{"type":"string","name":"discord","label":"Discord","namespace":["page","blocks","columns","columnTwo","social","discord"]},{"type":"string","name":"github","label":"GitHub","namespace":["page","blocks","columns","columnTwo","social","github"]},{"type":"string","name":"twitter","label":"Twitter","namespace":["page","blocks","columns","columnTwo","social","twitter"]}],"namespace":["page","blocks","columns","columnTwo","social"]},{"name":"newsletter","label":"Newsletter Signup","ui":{"defaultItem":{"style":"default"}},"fields":[{"name":"style","label":"Style","type":"string","options":[{"label":"Default","value":"default"},{"label":"Small","value":"small"}],"namespace":["page","blocks","columns","columnTwo","newsletter","style"]}],"namespace":["page","blocks","columns","columnTwo","newsletter"]}],"namespace":["page","blocks","columns","columnTwo"],"searchable":true}],"namespace":["page","blocks","columns"]},{"label":"Story","name":"story","fields":[{"label":"Title","name":"title","type":"string","namespace":["page","blocks","story","title"],"searchable":true,"uid":false}],"namespace":["page","blocks","story"]},{"label":"Feature Grid","name":"featureGrid","ui":{"previewSrc":"/img/blocks/feature-grid.png"},"fields":[{"name":"items","label":"Feature Items","type":"object","list":true,"ui":{},"fields":[{"name":"headline","label":"Headline","type":"string","namespace":["page","blocks","featureGrid","items","headline"]},{"name":"text","label":"Text","ui":{"component":"textarea"},"type":"string","namespace":["page","blocks","featureGrid","items","text"]},{"name":"url","label":"URL","type":"string","namespace":["page","blocks","featureGrid","items","url"]},{"label":"Actions","name":"actions","type":"object","list":true,"ui":{"defaultItem":{"variant":"default","label":"Secondary Action","icon":false,"size":"medium","url":"/"}},"fields":[{"name":"label","label":"Label","type":"string","namespace":["page","blocks","featureGrid","items","actions","label"]},{"name":"icon","label":"Icon","type":"boolean","namespace":["page","blocks","featureGrid","items","actions","icon"]},{"name":"variant","label":"Variant","type":"string","options":[{"value":"default","label":"Seafoam"},{"value":"blue","label":"Blue"},{"value":"orange","label":"Orange"},{"value":"white","label":"White"},{"value":"ghost","label":"Ghost"},{"value":"orangeWithBorder","label":"Orange with Border"},{"value":"ghostBlue","label":"Ghost Blue"}],"namespace":["page","blocks","featureGrid","items","actions","variant"]},{"name":"size","label":"Size","type":"string","options":[{"value":"small","label":"Small"},{"value":"medium","label":"Medium"},{"value":"large","label":"Large"}],"namespace":["page","blocks","featureGrid","items","actions","size"]},{"name":"url","label":"URL","type":"string","namespace":["page","blocks","featureGrid","items","actions","url"]}],"namespace":["page","blocks","featureGrid","items","actions"]}],"namespace":["page","blocks","featureGrid","items"],"searchable":true,"uid":false}],"namespace":["page","blocks","featureGrid"]},{"label":"Logo Grid","name":"logoGrid","ui":{"previewSrc":"/img/blocks/logo-grid.png"},"fields":[{"label":"Title","name":"title","type":"string","namespace":["page","blocks","logoGrid","title"],"searchable":true,"uid":false},{"label":"Link","name":"link","type":"string","namespace":["page","blocks","logoGrid","link"],"searchable":true,"uid":false},{"name":"items","label":"Logos","type":"object","list":true,"ui":{},"fields":[{"name":"name","label":"Name","type":"string","namespace":["page","blocks","logoGrid","items","name"]},{"name":"link","label":"Link","type":"string","description":"The URL to link to when the logo is clicked. Should be either (1) an internal link (e.g. /showcase#unity) or (2) an external link (e.g. https://ndcconferences.com/).","namespace":["page","blocks","logoGrid","items","link"]},{"name":"logo","label":"Logo Image","type":"image","namespace":["page","blocks","logoGrid","items","logo"]},{"name":"size","label":"Size","type":"number","namespace":["page","blocks","logoGrid","items","size"]}],"namespace":["page","blocks","logoGrid","items"],"searchable":true,"uid":false}],"namespace":["page","blocks","logoGrid"]},{"label":"Roadmap Grid","name":"roadmapGrid","ui":{"previewSrc":"/img/blocks/roadmap.png"},"fields":[{"name":"headline","label":"Headline","type":"string","namespace":["page","blocks","roadmapGrid","headline"],"searchable":true,"uid":false},{"name":"items","label":"Roadmap Items","type":"object","list":true,"ui":{},"fields":[{"name":"headline","label":"Headline","type":"string","namespace":["page","blocks","roadmapGrid","items","headline"]},{"name":"status","label":"Status","type":"string","namespace":["page","blocks","roadmapGrid","items","status"]},{"name":"content","label":"Content","type":"rich-text","namespace":["page","blocks","roadmapGrid","items","content"]},{"label":"Actions","name":"actions","type":"object","list":true,"ui":{"defaultItem":{"variant":"default","label":"Secondary Action","icon":false,"size":"medium","url":"/"}},"fields":[{"name":"label","label":"Label","type":"string","namespace":["page","blocks","roadmapGrid","items","actions","label"]},{"name":"icon","label":"Icon","type":"boolean","namespace":["page","blocks","roadmapGrid","items","actions","icon"]},{"name":"variant","label":"Variant","type":"string","options":[{"value":"default","label":"Seafoam"},{"value":"blue","label":"Blue"},{"value":"orange","label":"Orange"},{"value":"white","label":"White"},{"value":"ghost","label":"Ghost"},{"value":"orangeWithBorder","label":"Orange with Border"},{"value":"ghostBlue","label":"Ghost Blue"}],"namespace":["page","blocks","roadmapGrid","items","actions","variant"]},{"name":"size","label":"Size","type":"string","options":[{"value":"small","label":"Small"},{"value":"medium","label":"Medium"},{"value":"large","label":"Large"}],"namespace":["page","blocks","roadmapGrid","items","actions","size"]},{"name":"url","label":"URL","type":"string","namespace":["page","blocks","roadmapGrid","items","actions","url"]}],"namespace":["page","blocks","roadmapGrid","items","actions"]}],"namespace":["page","blocks","roadmapGrid","items"],"searchable":true,"uid":false},{"name":"options","label":"Options","type":"object","fields":[{"name":"paddingTop","label":"Top Padding","type":"boolean","namespace":["page","blocks","roadmapGrid","options","paddingTop"]},{"name":"paddingBottom","label":"Bottom Padding","type":"boolean","namespace":["page","blocks","roadmapGrid","options","paddingBottom"]}],"namespace":["page","blocks","roadmapGrid","options"],"searchable":true,"uid":false}],"namespace":["page","blocks","roadmapGrid"]},{"name":"recentPosts","label":"Recent Posts","ui":{"previewSrc":"/img/blocks/recent-posts.png"},"fields":[{"name":"title","label":"Title","type":"string","namespace":["page","blocks","recentPosts","title"],"searchable":true,"uid":false}],"namespace":["page","blocks","recentPosts"]},{"label":"Testimonials","name":"testimonials","ui":{"previewSrc":"/img/blocks/testimonials.png"},"fields":[{"name":"testimonials","label":"Testimonials","type":"object","list":true,"ui":{},"fields":[{"name":"name","label":"Name","type":"string","namespace":["page","blocks","testimonials","testimonials","name"]},{"name":"username","label":"Username","type":"string","namespace":["page","blocks","testimonials","testimonials","username"]},{"name":"avatar","label":"Avatar","type":"image","namespace":["page","blocks","testimonials","testimonials","avatar"]},{"name":"date","label":"Date","type":"datetime","ui":{"dateFormat":"MMMM DD YYYY"},"namespace":["page","blocks","testimonials","testimonials","date"]},{"name":"testimonial","label":"Testimonial","type":"rich-text","namespace":["page","blocks","testimonials","testimonials","testimonial"]},{"name":"link","label":"Link","type":"string","namespace":["page","blocks","testimonials","testimonials","link"]}],"namespace":["page","blocks","testimonials","testimonials"],"searchable":true,"uid":false}],"namespace":["page","blocks","testimonials"]},{"label":"Quote","name":"quote","ui":{},"fields":[{"label":"Title","name":"title2","ui":{"component":"textarea"},"type":"string","namespace":["page","blocks","quote","title2"],"searchable":true,"uid":false},{"label":"Sub Text","name":"subtext","ui":{"component":"textarea"},"type":"string","namespace":["page","blocks","quote","subtext"],"searchable":true,"uid":false},{"label":"logo","name":"logo","type":"image","namespace":["page","blocks","quote","logo"],"searchable":false,"uid":false}],"namespace":["page","blocks","quote"]},{"label":"Events","name":"events","ui":{"previewSrc":"/img/blocks/events.png"},"fields":[{"name":"title","label":"Title","type":"string","namespace":["page","blocks","events","title"],"searchable":true,"uid":false},{"name":"cardItems","label":"Card Items","type":"object","list":true,"ui":{},"fields":[{"name":"headline","label":"Headline","type":"string","namespace":["page","blocks","events","cardItems","headline"]},{"name":"startDate","label":"Start Date","type":"datetime","description":"Enter date in the timezone of the event.","ui":{"utc":true},"namespace":["page","blocks","events","cardItems","startDate"]},{"name":"startTime","label":"Start Time","type":"number","description":"Enter start time in the timezone of the event. (e.g. if the event starts at 9:00am, enter '9')","ui":{"step":1},"namespace":["page","blocks","events","cardItems","startTime"]},{"name":"endDate","label":"End Date","type":"datetime","description":"Note this field is not mandatory. Leave blank for a 1 day event. Enter date in the timezone of the event.","ui":{"utc":true},"namespace":["page","blocks","events","cardItems","endDate"]},{"name":"endTime","label":"End Time","type":"string","description":"This is locked to midnight on the end date of the event.","ui":{},"namespace":["page","blocks","events","cardItems","endTime"]},{"name":"timezone","label":"Timezone","type":"number","description":"Please select the timezone the event is being held in. GMT and UTC are analagous.","ui":{"component":"select","options":[{"value":14,"label":"GMT +14:00"},{"value":13.5,"label":"GMT +13:30"},{"value":13,"label":"GMT +13:00"},{"value":12.5,"label":"GMT +12:30"},{"value":12,"label":"GMT +12:00"},{"value":11.5,"label":"GMT +11:30"},{"value":11,"label":"GMT +11:00"},{"value":10.5,"label":"GMT +10:30"},{"value":10,"label":"GMT +10:00"},{"value":9.5,"label":"GMT +9:30"},{"value":9,"label":"GMT +9:00"},{"value":8.5,"label":"GMT +8:30"},{"value":8,"label":"GMT +8:00"},{"value":7.5,"label":"GMT +7:30"},{"value":7,"label":"GMT +7:00"},{"value":6.5,"label":"GMT +6:30"},{"value":6,"label":"GMT +6:00"},{"value":5.5,"label":"GMT +5:30"},{"value":5,"label":"GMT +5:00"},{"value":4.5,"label":"GMT +4:30"},{"value":4,"label":"GMT +4:00"},{"value":3.5,"label":"GMT +3:30"},{"value":3,"label":"GMT +3:00"},{"value":2.5,"label":"GMT +2:30"},{"value":2,"label":"GMT +2:00"},{"value":1.5,"label":"GMT +1:30"},{"value":1,"label":"GMT +1:00"},{"value":0.5,"label":"GMT +0:30"},{"value":0,"label":"GMT +0:00"},{"value":-0.5,"label":"GMT -0:30"},{"value":-1,"label":"GMT -1:00"},{"value":-1.5,"label":"GMT -1:30"},{"value":-2,"label":"GMT -2:00"},{"value":-2.5,"label":"GMT -2:30"},{"value":-3,"label":"GMT -3:00"},{"value":-3.5,"label":"GMT -3:30"},{"value":-4,"label":"GMT -4:00"},{"value":-4.5,"label":"GMT -4:30"},{"value":-5,"label":"GMT -5:00"},{"value":-5.5,"label":"GMT -5:30"},{"value":-6,"label":"GMT -6:00"},{"value":-6.5,"label":"GMT -6:30"},{"value":-7,"label":"GMT -7:00"},{"value":-7.5,"label":"GMT -7:30"},{"value":-8,"label":"GMT -8:00"},{"value":-8.5,"label":"GMT -8:30"},{"value":-9,"label":"GMT -9:00"},{"value":-9.5,"label":"GMT -9:30"},{"value":-10,"label":"GMT -10:00"},{"value":-10.5,"label":"GMT -10:30"},{"value":-11,"label":"GMT -11:00"},{"value":-11.5,"label":"GMT -11:30"},{"value":-12,"label":"GMT -12:00"}]},"namespace":["page","blocks","events","cardItems","timezone"]},{"name":"location","label":"Location","type":"string","namespace":["page","blocks","events","cardItems","location"]},{"name":"image","label":"Image","type":"image","namespace":["page","blocks","events","cardItems","image"]},{"name":"link","label":"URL","type":"string","namespace":["page","blocks","events","cardItems","link"]},{"name":"markerLAT","label":"Marker Latitude","type":"number","description":"Note this field corresponds to the Latitude position of the marker on the globe.","namespace":["page","blocks","events","cardItems","markerLAT"]},{"name":"markerLONG","label":"Marker Longitude","type":"number","description":"Note this field corresponds to the Longitude position of the marker on the globe.","namespace":["page","blocks","events","cardItems","markerLONG"]}],"namespace":["page","blocks","events","cardItems"],"searchable":true,"uid":false}],"namespace":["page","blocks","events"]},{"label":"Compare Box","name":"CompareBox","fields":[{"name":"criteriaItems","label":"Criteria","type":"object","list":true,"ui":{},"fields":[{"name":"criteria","label":"Criteria","type":"string","namespace":["page","blocks","CompareBox","criteriaItems","criteria"]},{"name":"description","label":"Description","ui":{"component":"textarea"},"type":"string","description":"The text inside the description will NOT be displayed anywhere, this is just to elaborate on the criteria itself for our own users.","namespace":["page","blocks","CompareBox","criteriaItems","description"]}],"namespace":["page","blocks","CompareBox","criteriaItems"],"searchable":true,"uid":false},{"name":"companies","label":"Company","type":"object","list":true,"ui":{},"fields":[{"name":"headline","label":"Headline","type":"string","namespace":["page","blocks","CompareBox","companies","headline"]},{"name":"logoColour","label":"Logo Link (Colour)","type":"string","namespace":["page","blocks","CompareBox","companies","logoColour"]},{"name":"logoWhite","label":"Logo Link (White)","type":"string","namespace":["page","blocks","CompareBox","companies","logoWhite"]},{"name":"active","label":"Active","type":"boolean","description":"Toggle to highlight which company is BY DEFAULT active","namespace":["page","blocks","CompareBox","companies","active"]},{"name":"isHidden","label":"Hidden","type":"boolean","description":"Toggle will hide the company item from the list of clickable companies - it will also ensure it cannot be turned off.","namespace":["page","blocks","CompareBox","companies","isHidden"]},{"name":"backgroundColor","label":"Background Color","type":"string","ui":{"component":"color"},"description":"Choose a background color for the company","namespace":["page","blocks","CompareBox","companies","backgroundColor"]},{"name":"criteria1","label":"Criteria 1","type":"boolean","namespace":["page","blocks","CompareBox","companies","criteria1"]},{"name":"criteria2","label":"Criteria 2","type":"boolean","namespace":["page","blocks","CompareBox","companies","criteria2"]},{"name":"criteria3","label":"Criteria 3","type":"boolean","namespace":["page","blocks","CompareBox","companies","criteria3"]},{"name":"criteria4","label":"Criteria 4","type":"boolean","namespace":["page","blocks","CompareBox","companies","criteria4"]},{"name":"criteria5","label":"Criteria 5","type":"boolean","namespace":["page","blocks","CompareBox","companies","criteria5"]},{"name":"criteria6","label":"Criteria 6","type":"boolean","namespace":["page","blocks","CompareBox","companies","criteria6"]},{"name":"criteria7","label":"Criteria 7","type":"boolean","namespace":["page","blocks","CompareBox","companies","criteria7"]},{"name":"criteria8","label":"Criteria 8","type":"boolean","namespace":["page","blocks","CompareBox","companies","criteria8"]},{"name":"criteria9","label":"Criteria 9","type":"boolean","namespace":["page","blocks","CompareBox","companies","criteria9"]}],"namespace":["page","blocks","CompareBox","companies"],"searchable":true,"uid":false}],"namespace":["page","blocks","CompareBox"]},{"label":"Booking","name":"booking","fields":[{"name":"title","label":"Title","type":"string","namespace":["page","blocks","booking","title"],"searchable":true,"uid":false},{"name":"description","label":"Description","type":"string","namespace":["page","blocks","booking","description"],"searchable":true,"uid":false}],"namespace":["page","blocks","booking"]},{"label":"Media Component","name":"mediaComponent","fields":[{"name":"headline","label":"Headline","type":"string","namespace":["page","blocks","mediaComponent","headline"],"searchable":true,"uid":false},{"name":"mediaItem","label":"Media Item","type":"object","list":true,"templates":[{"label":"Cloudinary Media Component","name":"cloudinaryMediaComponent","fields":[{"name":"media","label":"media","type":"image","namespace":["page","blocks","mediaComponent","mediaItem","cloudinaryMediaComponent","media"]},{"name":"thumbnail","label":"thumbnail","type":"image","namespace":["page","blocks","mediaComponent","mediaItem","cloudinaryMediaComponent","thumbnail"]}],"namespace":["page","blocks","mediaComponent","mediaItem","cloudinaryMediaComponent"]},{"label":"Youtube Media","name":"youtubeMedia","fields":[{"name":"embedUrl","label":"YouTube Embed Url","type":"string","description":"⚠️ This will only work for YouTube embed urls, they look like https://www.youtube.com/embed/{{ ID }}","namespace":["page","blocks","mediaComponent","mediaItem","youtubeMedia","embedUrl"]}],"namespace":["page","blocks","mediaComponent","mediaItem","youtubeMedia"]}],"namespace":["page","blocks","mediaComponent","mediaItem"],"searchable":true,"uid":false}],"namespace":["page","blocks","mediaComponent"]},{"label":"Text and Media Column Component","name":"textMediaColumnComponent","fields":[{"name":"isVideoOnLeft","label":"Video on Left?","type":"boolean","ui":{"component":"toggle"},"namespace":["page","blocks","textMediaColumnComponent","isVideoOnLeft"],"searchable":true,"uid":false},{"name":"body","label":"Body","type":"rich-text","isBody":true,"namespace":["page","blocks","textMediaColumnComponent","body"],"searchable":true,"parser":{"type":"markdown"},"uid":false},{"name":"mediaColumnItem","label":"Media Item","type":"object","list":true,"templates":[{"label":"Cloudinary Media Component","name":"cloudinaryMediaComponent","fields":[{"name":"media","label":"media","type":"image","namespace":["page","blocks","textMediaColumnComponent","mediaColumnItem","cloudinaryMediaComponent","media"]},{"name":"thumbnail","label":"thumbnail","type":"image","namespace":["page","blocks","textMediaColumnComponent","mediaColumnItem","cloudinaryMediaComponent","thumbnail"]}],"namespace":["page","blocks","textMediaColumnComponent","mediaColumnItem","cloudinaryMediaComponent"]},{"label":"Youtube Media","name":"youtubeMedia","fields":[{"name":"embedUrl","label":"YouTube Embed Url","type":"string","description":"⚠️ This will only work for YouTube embed urls, they look like https://www.youtube.com/embed/{{ ID }}","namespace":["page","blocks","textMediaColumnComponent","mediaColumnItem","youtubeMedia","embedUrl"]}],"namespace":["page","blocks","textMediaColumnComponent","mediaColumnItem","youtubeMedia"]}],"namespace":["page","blocks","textMediaColumnComponent","mediaColumnItem"],"searchable":true,"uid":false}],"namespace":["page","blocks","textMediaColumnComponent"]},{"label":"Tina Banner","name":"tinaBanner","fields":[{"name":"backdrop","label":"Backdrop","type":"image","namespace":["page","blocks","tinaBanner","backdrop"],"searchable":false,"uid":false},{"name":"leftFig","label":"Left Figure","type":"image","namespace":["page","blocks","tinaBanner","leftFig"],"searchable":false,"uid":false},{"name":"rightFig","label":"Right Figure","type":"image","namespace":["page","blocks","tinaBanner","rightFig"],"searchable":false,"uid":false},{"name":"leftScreen","label":"Left Screen","type":"image","namespace":["page","blocks","tinaBanner","leftScreen"],"searchable":false,"uid":false},{"name":"rightScreen","label":"Right Screen","type":"image","namespace":["page","blocks","tinaBanner","rightScreen"],"searchable":false,"uid":false},{"name":"centerFig","label":"Center Figure","type":"image","namespace":["page","blocks","tinaBanner","centerFig"],"searchable":false,"uid":false},{"name":"llama","label":"Llama","type":"image","namespace":["page","blocks","tinaBanner","llama"],"searchable":false,"uid":false}],"namespace":["page","blocks","tinaBanner"]},{"label":"Highlights Section","name":"highlightsSection","fields":[{"name":"highlightColumn","label":"Highlight Column","type":"object","list":true,"ui":{"max":3},"fields":[{"name":"heading","label":"Heading","type":"string","namespace":["page","blocks","highlightsSection","highlightColumn","heading"]},{"name":"highlights","label":"Highlights","type":"object","list":true,"fields":[{"name":"name","label":"Name","type":"string","namespace":["page","blocks","highlightsSection","highlightColumn","highlights","name"]},{"name":"icon","label":"Icon","type":"string","description":"Can't find the icon you want? ask a developer to add it","ui":{},"namespace":["page","blocks","highlightsSection","highlightColumn","highlights","icon"]}],"ui":{},"namespace":["page","blocks","highlightsSection","highlightColumn","highlights"]}],"namespace":["page","blocks","highlightsSection","highlightColumn"],"searchable":true,"uid":false}],"namespace":["page","blocks","highlightsSection"]},{"label":"Spacer","name":"spacer","fields":[{"name":"spacingPx","label":"Spacing Value","description":"This is the spacing in pixels provided by the spacer.","type":"number","namespace":["page","blocks","spacer","spacingPx"],"searchable":true,"uid":false},{"name":"spacingPxMobile","label":"Mobile Spacing Value","description":"This is the spacing in pixels provided by the spacer on small screens.","type":"number","namespace":["page","blocks","spacer","spacingPxMobile"],"searchable":true,"uid":false}],"namespace":["page","blocks","spacer"]},{"label":"Carousel Feature","name":"carouselFeature","ui":{"previewSrc":"/img/blocks/feature-grid.png"},"fields":[{"name":"blockHeadline","label":"Block Headline","type":"string","namespace":["page","blocks","carouselFeature","blockHeadline"],"searchable":true,"uid":false},{"name":"items","label":"Carousel Feature","type":"object","list":true,"ui":{},"fields":[{"name":"headline","label":"Headline","type":"string","namespace":["page","blocks","carouselFeature","items","headline"]},{"name":"text","label":"Text","ui":{"component":"textarea"},"type":"string","namespace":["page","blocks","carouselFeature","items","text"]},{"name":"icon2","label":"Icon","type":"string","description":"Can't find the icon you want? ask a developer to add it","ui":{},"namespace":["page","blocks","carouselFeature","items","icon2"]},{"name":"videoSrc","label":"Video Source","type":"image","namespace":["page","blocks","carouselFeature","items","videoSrc"]},{"name":"button","label":"Button","type":"object","fields":[{"name":"label","label":"Label","type":"string","namespace":["page","blocks","carouselFeature","items","button","label"]},{"name":"icon","label":"Icon","type":"boolean","namespace":["page","blocks","carouselFeature","items","button","icon"]},{"name":"variant","label":"Variant","type":"string","options":[{"value":"default","label":"Seafoam"},{"value":"blue","label":"Blue"},{"value":"orange","label":"Orange"},{"value":"white","label":"White"},{"value":"ghost","label":"Ghost"},{"value":"orangeWithBorder","label":"Orange with Border"},{"value":"ghostBlue","label":"Ghost Blue"}],"namespace":["page","blocks","carouselFeature","items","button","variant"]},{"name":"size","label":"Size","type":"string","options":[{"value":"small","label":"Small"},{"value":"medium","label":"Medium"},{"value":"large","label":"Large"}],"namespace":["page","blocks","carouselFeature","items","button","size"]},{"name":"url","label":"URL","type":"string","namespace":["page","blocks","carouselFeature","items","button","url"]}],"namespace":["page","blocks","carouselFeature","items","button"]}],"namespace":["page","blocks","carouselFeature","items"],"searchable":true,"uid":false}],"namespace":["page","blocks","carouselFeature"]}],"namespace":["page","blocks"],"searchable":true,"uid":false}],"namespace":["page"]},{"name":"doc","label":"Docs","path":"content/docs","format":"mdx","ui":{},"fields":[{"name":"title","label":"Title","type":"string","namespace":["doc","title"],"searchable":true,"uid":false},{"type":"string","name":"last_edited","label":"Last Edited","ui":{"component":"hidden"},"namespace":["doc","last_edited"],"searchable":true,"uid":false},{"name":"next","label":"Next page","type":"reference","collections":["doc","examples"],"namespace":["doc","next"],"searchable":true,"uid":false},{"name":"previous","label":"Previous page","type":"reference","collections":["doc","examples"],"namespace":["doc","previous"],"searchable":true,"uid":false},{"type":"rich-text","name":"body","label":"Body","isBody":true,"templates":[{"name":"Youtube","label":"Youtube Embed","fields":[{"type":"string","name":"embedSrc","label":"Embed URL","description":"⚠︎ Only YouTube embed URLs work - they look like this https://www.youtube.com/embed/Yoh2c5RUTiY","namespace":["doc","body","Youtube","embedSrc"],"searchable":true,"uid":false}],"namespace":["doc","body","Youtube"]},{"name":"GraphQLCodeBlock","label":"GraphQL Code Block","fields":[{"type":"string","name":"query","label":"Query","description":"Paste GraphQL query here. \"#\" are auto-inserted as spacing placeholders and should not be used.","ui":{"component":"textarea"},"namespace":["doc","body","GraphQLCodeBlock","query"],"searchable":true,"uid":false},{"type":"string","name":"response","label":"Response","description":"Paste GraphQL response data here. \"#\" are auto-inserted as spacing placeholders and should not be used.","ui":{"component":"textarea"},"namespace":["doc","body","GraphQLCodeBlock","response"],"searchable":true,"uid":false},{"type":"boolean","name":"preselectResponse","label":"Select Response by Default","description":"Select the response tab by default","namespace":["doc","body","GraphQLCodeBlock","preselectResponse"],"searchable":true,"uid":false}],"namespace":["doc","body","GraphQLCodeBlock"]},{"name":"WarningCallout","label":"Warning Callout","fields":[{"name":"body","label":"Body","type":"string","ui":{"component":"textarea"},"namespace":["doc","body","WarningCallout","body"],"searchable":true,"uid":false}],"namespace":["doc","body","WarningCallout"]},{"name":"Iframe","label":"Embeded an Iframe","fields":[{"name":"iframeSrc","type":"string","namespace":["doc","body","Iframe","iframeSrc"],"searchable":true,"uid":false},{"name":"height","type":"number","label":"Height","description":"The hight of the iframe (in px) ","namespace":["doc","body","Iframe","height"],"searchable":true,"uid":false}],"namespace":["doc","body","Iframe"]},{"name":"CloudinaryVideo","label":"Cloudinary Video","fields":[{"type":"string","name":"src","label":"Cloudinary URL","description":"Full URL with no file extension","namespace":["doc","body","CloudinaryVideo","src"],"searchable":true,"uid":false}],"namespace":["doc","body","CloudinaryVideo"]},{"name":"ImageAndText","label":"Image and Text","fields":[{"name":"docText","label":"docText","isBody":true,"type":"rich-text","description":"DO NOT USE THIS TEMPLATE WHILST YOU SEE THIS MESSAGE //TODO: #1967","namespace":["doc","body","ImageAndText","docText"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"name":"image","label":"image","type":"image","namespace":["doc","body","ImageAndText","image"],"searchable":false,"uid":false}],"namespace":["doc","body","ImageAndText"]},{"name":"SummaryTab","label":"Summary Tab","fields":[{"name":"heading","label":"Heading","type":"string","description":"DO NOT USE THIS TEMPLATE WHILST YOU SEE THIS MESSAGE //TODO: #1967","namespace":["doc","body","SummaryTab","heading"],"searchable":true,"uid":false},{"name":"text","label":"text","isBody":true,"type":"rich-text","namespace":["doc","body","SummaryTab","text"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["doc","body","SummaryTab"]}],"namespace":["doc","body"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["doc"]},{"name":"post","label":"Blog Posts","path":"content/blog","format":"mdx","fields":[{"type":"string","name":"title","label":"Title","required":true,"list":false,"ui":{},"namespace":["post","title"],"searchable":true,"uid":false},{"type":"string","name":"date","label":"Date Created","ui":{"component":"date"},"namespace":["post","date"],"searchable":true,"uid":false},{"type":"string","name":"last_edited","label":"Last Edited","ui":{"component":"date"},"namespace":["post","last_edited"],"searchable":true,"uid":false},{"type":"string","name":"author","label":"Author","namespace":["post","author"],"searchable":true,"uid":false},{"type":"reference","name":"prev","label":"Previous Post","description":"(Optional) link to an earlier post at the bottom of this one","collections":["post"],"namespace":["post","prev"],"searchable":true,"uid":false},{"type":"reference","name":"next","label":"Next Post","description":"(Optional) link to a later post at the bottom of this one","collections":["post"],"namespace":["post","next"],"searchable":true,"uid":false},{"type":"rich-text","name":"body","label":"Body","isBody":true,"parser":{"type":"mdx"},"templates":[{"name":"WarningCallout","label":"Warning Callout","fields":[{"name":"body","label":"Body","type":"string","ui":{"component":"textarea"},"namespace":["post","body","WarningCallout","body"],"searchable":true,"uid":false}],"namespace":["post","body","WarningCallout"]},{"name":"Youtube","label":"Youtube Embed","fields":[{"type":"string","name":"embedSrc","label":"Embed URL","description":"⚠︎ Only YouTube embed URLs work - they look like this https://www.youtube.com/embed/Yoh2c5RUTiY","namespace":["post","body","Youtube","embedSrc"],"searchable":true,"uid":false}],"namespace":["post","body","Youtube"]},{"name":"GraphQLCodeBlock","label":"GraphQL Code Block","fields":[{"type":"rich-text","name":"request","label":"Request","description":"Paste GraphQL request code here.","namespace":["post","body","GraphQLCodeBlock","request"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","name":"response","label":"Response","description":"Paste GraphQL response data here.","namespace":["post","body","GraphQLCodeBlock","response"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["post","body","GraphQLCodeBlock"]},{"name":"Iframe","label":"Embeded an Iframe","fields":[{"name":"iframeSrc","type":"string","namespace":["post","body","Iframe","iframeSrc"],"searchable":true,"uid":false},{"name":"height","type":"number","label":"Height","description":"The hight of the iframe (in px) ","namespace":["post","body","Iframe","height"],"searchable":true,"uid":false}],"namespace":["post","body","Iframe"]},{"name":"CreateAppCta","label":"\"Create Tina App\" Call-to-action","fields":[{"type":"string","name":"ctaText","label":"Button Text","namespace":["post","body","CreateAppCta","ctaText"],"searchable":true,"uid":false},{"type":"string","name":"cliText","label":"CLI Command Example","namespace":["post","body","CreateAppCta","cliText"],"searchable":true,"uid":false}],"namespace":["post","body","CreateAppCta"]},{"name":"Callout","label":"Callout","fields":[{"type":"string","name":"title","label":"Title","namespace":["post","body","Callout","title"],"searchable":true,"uid":false},{"type":"string","name":"description","label":"Description","namespace":["post","body","Callout","description"],"searchable":true,"uid":false},{"type":"string","name":"url","label":"URL","namespace":["post","body","Callout","url"],"searchable":true,"uid":false},{"type":"string","name":"buttonText","label":"Button Text","namespace":["post","body","Callout","buttonText"],"searchable":true,"uid":false}],"namespace":["post","body","Callout"]},{"name":"Codesandbox","label":"Codesandbox embed","fields":[{"type":"string","name":"embedSrc","label":"Embed URL","namespace":["post","body","Codesandbox","embedSrc"],"searchable":true,"uid":false},{"type":"string","name":"title","label":"A11y Title","namespace":["post","body","Codesandbox","title"],"searchable":true,"uid":false}],"namespace":["post","body","Codesandbox"]},{"name":"Diagram","label":"Diagram","fields":[{"type":"string","name":"src","namespace":["post","body","Diagram","src"],"searchable":true,"uid":false},{"type":"string","name":"alt","namespace":["post","body","Diagram","alt"],"searchable":true,"uid":false}],"namespace":["post","body","Diagram"]},{"name":"WideImage","label":"Wide Image","fields":[{"type":"image","name":"src","namespace":["post","body","WideImage","src"],"searchable":false,"uid":false},{"type":"string","name":"alt","namespace":["post","body","WideImage","alt"],"searchable":true,"uid":false}],"namespace":["post","body","WideImage"]},{"name":"CustomFieldComponentDemo","label":"Field Component Demo [do not use]","fields":[{"type":"string","name":"test","namespace":["post","body","CustomFieldComponentDemo","test"],"searchable":true,"uid":false}],"namespace":["post","body","CustomFieldComponentDemo"]},{"name":"CloudinaryVideo","label":"Cloudinary Video","fields":[{"type":"string","name":"src","label":"Cloudinary URL","description":"Full URL with no file extension","namespace":["post","body","CloudinaryVideo","src"],"searchable":true,"uid":false}],"namespace":["post","body","CloudinaryVideo"]},{"name":"Button","label":"Button","fields":[{"type":"string","name":"label","label":"Label","namespace":["post","body","Button","label"],"searchable":true,"uid":false},{"type":"string","name":"link","label":"Link","namespace":["post","body","Button","link"],"searchable":true,"uid":false}],"namespace":["post","body","Button"]}],"namespace":["post","body"],"searchable":true}],"namespace":["post"]},{"name":"examples","label":"Examples","path":"content/examples","format":"json","match":{"include":"index"},"fields":[{"type":"object","name":"examples","label":"Examples","list":true,"ui":{"defaultItem":{"label":"Tina Tailwind Starter","description":{"type":"root","children":[{"type":"p","children":[{"type":"text","text":"A full featured starter that uses tailwind and Tinacms"}]}]},"image":"https://res.cloudinary.com/forestry-demo/image/upload/v1645712511/tina-io/docs/your-blocks.gif","link":"https://github.com/tinacms/tina-cloud-starter"}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["examples","examples","label"],"searchable":true,"uid":false},{"type":"rich-text","label":"Description","name":"description","namespace":["examples","examples","description"],"searchable":true,"parser":{"type":"markdown"},"uid":false},{"type":"image","label":"Image","name":"image","namespace":["examples","examples","image"],"searchable":false,"uid":false},{"type":"string","label":"Link","name":"link","namespace":["examples","examples","link"],"searchable":true,"uid":false}],"namespace":["examples","examples"],"searchable":true,"uid":false}],"namespace":["examples"]},{"name":"meetingLinks","label":"Meeting Links","path":"content/meeting-links","format":"json","fields":[{"name":"bookingCard","label":"Booking Card","type":"object","list":true,"ui":{},"fields":[{"name":"name","label":"Name","type":"string","namespace":["meetingLinks","bookingCard","name"],"searchable":true,"uid":false},{"name":"description","label":"Description","type":"string","namespace":["meetingLinks","bookingCard","description"],"searchable":true,"uid":false},{"name":"image","label":"Image","type":"image","description":"Image headshot for a meeting card","namespace":["meetingLinks","bookingCard","image"],"searchable":false,"uid":false},{"name":"url","label":"URL","type":"string","description":"URL to a meeting link (i.e HubSpot)","namespace":["meetingLinks","bookingCard","url"],"searchable":true,"uid":false}],"namespace":["meetingLinks","bookingCard"],"searchable":true,"uid":false}],"namespace":["meetingLinks"]},{"name":"WhatsNewTinaCMS","label":"Whats new - TinaCMS","path":"content/whats-new-tinacms","format":"mdx","fields":[{"name":"versionNumber","label":"Version Number","type":"string","namespace":["WhatsNewTinaCMS","versionNumber"],"searchable":true,"uid":false},{"name":"dateReleased","label":"Date Released","type":"datetime","namespace":["WhatsNewTinaCMS","dateReleased"],"searchable":true,"uid":false},{"name":"body","label":"Body","type":"rich-text","isBody":true,"description":"The content of the release notes. Note that h1-h5 are the same size (i.e text-lg in tailwind).","namespace":["WhatsNewTinaCMS","body"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["WhatsNewTinaCMS"]},{"name":"WhatsNewTinaCloud","label":"Whats new - TinaCloud","path":"content/whats-new-tinacloud","format":"mdx","fields":[{"name":"versionNumber","label":"Version Number","type":"string","namespace":["WhatsNewTinaCloud","versionNumber"],"searchable":true,"uid":false},{"name":"dateReleased","label":"Date Released","type":"datetime","namespace":["WhatsNewTinaCloud","dateReleased"],"searchable":true,"uid":false},{"name":"body","label":"Body","type":"rich-text","isBody":true,"description":"The content of the release notes. Note that h1-h5 are the same size (i.e text-lg in tailwind).","namespace":["WhatsNewTinaCloud","body"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["WhatsNewTinaCloud"]},{"label":"Navigation Bar","name":"navigationBar","path":"content/navigationBar","format":"json","ui":{"allowedActions":{"create":false,"delete":false}},"fields":[{"name":"navItem","label":"Navigation Item","list":true,"type":"object","templates":[{"name":"stringItem","label":"String Item","ui":{},"fields":[{"name":"label","label":"Label","type":"string","namespace":["navigationBar","navItem","stringItem","label"],"searchable":true,"uid":false},{"name":"href","label":"href","type":"string","namespace":["navigationBar","navItem","stringItem","href"],"searchable":true,"uid":false}],"namespace":["navigationBar","navItem","stringItem"]},{"name":"groupOfStringItems","label":"Group Of String Items","list":true,"type":"object","ui":{},"fields":[{"name":"label","label":"Label","type":"string","namespace":["navigationBar","navItem","groupOfStringItems","label"],"searchable":true,"uid":false},{"name":"items","label":"Page or Submenu","type":"object","list":true,"ui":{},"fields":[{"name":"label","label":"Label","type":"string","namespace":["navigationBar","navItem","groupOfStringItems","items","label"]},{"name":"href","label":"href","type":"string","namespace":["navigationBar","navItem","groupOfStringItems","items","href"]}],"namespace":["navigationBar","navItem","groupOfStringItems","items"],"searchable":true,"uid":false}],"namespace":["navigationBar","navItem","groupOfStringItems"]},{"label":"Modal Button","name":"modalButton","type":"object","ui":{"defaultItem":{"variant":"default","label":"Secondary Action","icon":false,"size":"medium"}},"fields":[{"name":"label","label":"Label","type":"string","namespace":["navigationBar","navItem","modalButton","label"],"searchable":true,"uid":false},{"name":"icon","label":"Icon","type":"boolean","namespace":["navigationBar","navItem","modalButton","icon"],"searchable":true,"uid":false},{"name":"color","label":"Color","type":"string","options":[{"value":"default","label":"Seafoam"},{"value":"blue","label":"Blue"},{"value":"orange","label":"Orange"},{"value":"white","label":"White"},{"value":"ghost","label":"Ghost"},{"value":"command","label":"Command"}],"namespace":["navigationBar","navItem","modalButton","color"],"searchable":true,"uid":false},{"name":"size","label":"Size","type":"string","options":[{"value":"small","label":"Small"},{"value":"medium","label":"Medium"},{"value":"large","label":"Large"}],"namespace":["navigationBar","navItem","modalButton","size"],"searchable":true,"uid":false},{"name":"modal","label":"Modal","type":"string","options":["BookDemo.tsx","EmailForm.tsx"],"namespace":["navigationBar","navItem","modalButton","modal"],"searchable":true,"uid":false},{"name":"icon2","label":"Icon","type":"string","options":["FaCalendarDay","MdEmail"],"description":"If you want a new icon added please ask a developer :)","namespace":["navigationBar","navItem","modalButton","icon2"],"searchable":true,"uid":false}],"namespace":["navigationBar","navItem","modalButton"]}],"namespace":["navigationBar","navItem"],"searchable":true,"uid":false}],"namespace":["navigationBar"]},{"name":"docsTableOfContents","label":"Docs - Table of Contents","path":"content/docs-toc","format":"json","fields":[{"name":"supermenuGroup","label":"Supermenu Group","type":"object","list":true,"ui":{},"fields":[{"name":"title","label":"Name","type":"string","namespace":["docsTableOfContents","supermenuGroup","title"],"searchable":true,"uid":false},{"name":"items","label":"Page or Submenu","type":"object","list":true,"templates":[{"label":"Submenu","name":"items","ui":{},"fields":[{"name":"title","label":"Name","type":"string","namespace":["docsTableOfContents","supermenuGroup","items","items","title"],"searchable":true,"uid":false},{"name":"items","label":"Submenu Items","type":"object","list":true,"templates":[{"label":"Submenu","name":"items","ui":{},"fields":[{"name":"title","label":"Name","type":"string","namespace":["docsTableOfContents","supermenuGroup","items","items","items","items","title"]},{"name":"items","label":"Submenu Items","type":"object","list":true,"templates":[{"label":"Submenu","name":"items","ui":{},"fields":[{"name":"title","label":"Name","type":"string","namespace":["docsTableOfContents","supermenuGroup","items","items","items","items","items","items","title"]},{"name":"items","label":"Submenu Items","type":"object","list":true,"templates":[{"label":"Item","name":"item","ui":{},"fields":[{"name":"title","label":"Name","type":"string","namespace":["docsTableOfContents","supermenuGroup","items","items","items","items","items","items","items","item","title"]},{"name":"slug","label":"Page","type":"reference","collections":["doc"],"namespace":["docsTableOfContents","supermenuGroup","items","items","items","items","items","items","items","item","slug"]}],"namespace":["docsTableOfContents","supermenuGroup","items","items","items","items","items","items","items","item"]}],"namespace":["docsTableOfContents","supermenuGroup","items","items","items","items","items","items","items"]}],"namespace":["docsTableOfContents","supermenuGroup","items","items","items","items","items","items"]},{"label":"Item","name":"item","ui":{},"fields":[{"name":"title","label":"Name","type":"string","namespace":["docsTableOfContents","supermenuGroup","items","items","items","items","items","item","title"]},{"name":"slug","label":"Page","type":"reference","collections":["doc"],"namespace":["docsTableOfContents","supermenuGroup","items","items","items","items","items","item","slug"]}],"namespace":["docsTableOfContents","supermenuGroup","items","items","items","items","items","item"]}],"namespace":["docsTableOfContents","supermenuGroup","items","items","items","items","items"]}],"namespace":["docsTableOfContents","supermenuGroup","items","items","items","items"]},{"label":"Item","name":"item","ui":{},"fields":[{"name":"title","label":"Name","type":"string","namespace":["docsTableOfContents","supermenuGroup","items","items","items","item","title"]},{"name":"slug","label":"Page","type":"reference","collections":["doc"],"namespace":["docsTableOfContents","supermenuGroup","items","items","items","item","slug"]}],"namespace":["docsTableOfContents","supermenuGroup","items","items","items","item"]}],"namespace":["docsTableOfContents","supermenuGroup","items","items","items"],"searchable":true,"uid":false}],"namespace":["docsTableOfContents","supermenuGroup","items","items"]},{"label":"Item","name":"item","ui":{},"fields":[{"name":"title","label":"Name","type":"string","namespace":["docsTableOfContents","supermenuGroup","items","item","title"],"searchable":true,"uid":false},{"name":"slug","label":"Page","type":"reference","collections":["doc"],"namespace":["docsTableOfContents","supermenuGroup","items","item","slug"],"searchable":true,"uid":false}],"namespace":["docsTableOfContents","supermenuGroup","items","item"]}],"namespace":["docsTableOfContents","supermenuGroup","items"],"searchable":true,"uid":false}],"namespace":["docsTableOfContents","supermenuGroup"],"searchable":true,"uid":false}],"namespace":["docsTableOfContents"]}],"config":{"media":{}}},"lookup":{"DocumentConnection":{"type":"DocumentConnection","resolveType":"multiCollectionDocumentList","collections":["page","doc","post","examples","meetingLinks","WhatsNewTinaCMS","WhatsNewTinaCloud","navigationBar","docsTableOfContents"]},"Node":{"type":"Node","resolveType":"nodeDocument"},"DocumentNode":{"type":"DocumentNode","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"PageBlocksHeroMedia":{"type":"PageBlocksHeroMedia","resolveType":"unionData","typeMap":{"image":"PageBlocksHeroMediaImage","video":"PageBlocksHeroMediaVideo"}},"PageBlocksHeroButtons":{"type":"PageBlocksHeroButtons","resolveType":"unionData","typeMap":{"actions":"PageBlocksHeroButtonsActions","modalButton":"PageBlocksHeroButtonsModalButton","codeButton":"PageBlocksHeroButtonsCodeButton"}},"PageBlocksFeaturesFeaturesButtons":{"type":"PageBlocksFeaturesFeaturesButtons","resolveType":"unionData","typeMap":{"actions":"PageBlocksFeaturesFeaturesButtonsActions","modalButton":"PageBlocksFeaturesFeaturesButtonsModalButton","codeButton":"PageBlocksFeaturesFeaturesButtonsCodeButton"}},"PageBlocksFeaturesFeaturesMedia":{"type":"PageBlocksFeaturesFeaturesMedia","resolveType":"unionData","typeMap":{"image":"PageBlocksFeaturesFeaturesMediaImage","video":"PageBlocksFeaturesFeaturesMediaVideo","code":"PageBlocksFeaturesFeaturesMediaCode"}},"PageBlocksFlyingButtons":{"type":"PageBlocksFlyingButtons","resolveType":"unionData","typeMap":{"actions":"PageBlocksFlyingButtonsActions","modalButton":"PageBlocksFlyingButtonsModalButton","codeButton":"PageBlocksFlyingButtonsCodeButton"}},"PageBlocksPricingFreeTierButtons":{"type":"PageBlocksPricingFreeTierButtons","resolveType":"unionData","typeMap":{"actions":"PageBlocksPricingFreeTierButtonsActions","modalButton":"PageBlocksPricingFreeTierButtonsModalButton","codeButton":"PageBlocksPricingFreeTierButtonsCodeButton"}},"PageBlocksPricingPlansButtons":{"type":"PageBlocksPricingPlansButtons","resolveType":"unionData","typeMap":{"actions":"PageBlocksPricingPlansButtonsActions","modalButton":"PageBlocksPricingPlansButtonsModalButton","codeButton":"PageBlocksPricingPlansButtonsCodeButton"}},"PageBlocksMediaComponentMediaItem":{"type":"PageBlocksMediaComponentMediaItem","resolveType":"unionData","typeMap":{"cloudinaryMediaComponent":"PageBlocksMediaComponentMediaItemCloudinaryMediaComponent","youtubeMedia":"PageBlocksMediaComponentMediaItemYoutubeMedia"}},"PageBlocksTextMediaColumnComponentMediaColumnItem":{"type":"PageBlocksTextMediaColumnComponentMediaColumnItem","resolveType":"unionData","typeMap":{"cloudinaryMediaComponent":"PageBlocksTextMediaColumnComponentMediaColumnItemCloudinaryMediaComponent","youtubeMedia":"PageBlocksTextMediaColumnComponentMediaColumnItemYoutubeMedia"}},"PageBlocks":{"type":"PageBlocks","resolveType":"unionData","typeMap":{"hero":"PageBlocksHero","features":"PageBlocksFeatures","flying":"PageBlocksFlying","pricing":"PageBlocksPricing","faq":"PageBlocksFaq","content":"PageBlocksContent","showcase":"PageBlocksShowcase","columns":"PageBlocksColumns","story":"PageBlocksStory","featureGrid":"PageBlocksFeatureGrid","logoGrid":"PageBlocksLogoGrid","roadmapGrid":"PageBlocksRoadmapGrid","recentPosts":"PageBlocksRecentPosts","testimonials":"PageBlocksTestimonials","quote":"PageBlocksQuote","events":"PageBlocksEvents","CompareBox":"PageBlocksCompareBox","booking":"PageBlocksBooking","mediaComponent":"PageBlocksMediaComponent","textMediaColumnComponent":"PageBlocksTextMediaColumnComponent","tinaBanner":"PageBlocksTinaBanner","highlightsSection":"PageBlocksHighlightsSection","spacer":"PageBlocksSpacer","carouselFeature":"PageBlocksCarouselFeature"}},"Page":{"type":"Page","resolveType":"collectionDocument","collection":"page","createPage":"create","updatePage":"update"},"PageConnection":{"type":"PageConnection","resolveType":"collectionDocumentList","collection":"page"},"DocNext":{"type":"DocNext","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"DocPrevious":{"type":"DocPrevious","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"Doc":{"type":"Doc","resolveType":"collectionDocument","collection":"doc","createDoc":"create","updateDoc":"update"},"DocConnection":{"type":"DocConnection","resolveType":"collectionDocumentList","collection":"doc"},"PostPrev":{"type":"PostPrev","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"PostNext":{"type":"PostNext","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"Post":{"type":"Post","resolveType":"collectionDocument","collection":"post","createPost":"create","updatePost":"update"},"PostConnection":{"type":"PostConnection","resolveType":"collectionDocumentList","collection":"post"},"Examples":{"type":"Examples","resolveType":"collectionDocument","collection":"examples","createExamples":"create","updateExamples":"update"},"ExamplesConnection":{"type":"ExamplesConnection","resolveType":"collectionDocumentList","collection":"examples"},"MeetingLinks":{"type":"MeetingLinks","resolveType":"collectionDocument","collection":"meetingLinks","createMeetingLinks":"create","updateMeetingLinks":"update"},"MeetingLinksConnection":{"type":"MeetingLinksConnection","resolveType":"collectionDocumentList","collection":"meetingLinks"},"WhatsNewTinaCMS":{"type":"WhatsNewTinaCMS","resolveType":"collectionDocument","collection":"WhatsNewTinaCMS","createWhatsNewTinaCMS":"create","updateWhatsNewTinaCMS":"update"},"WhatsNewTinaCMSConnection":{"type":"WhatsNewTinaCMSConnection","resolveType":"collectionDocumentList","collection":"WhatsNewTinaCMS"},"WhatsNewTinaCloud":{"type":"WhatsNewTinaCloud","resolveType":"collectionDocument","collection":"WhatsNewTinaCloud","createWhatsNewTinaCloud":"create","updateWhatsNewTinaCloud":"update"},"WhatsNewTinaCloudConnection":{"type":"WhatsNewTinaCloudConnection","resolveType":"collectionDocumentList","collection":"WhatsNewTinaCloud"},"NavigationBarNavItem":{"type":"NavigationBarNavItem","resolveType":"unionData","typeMap":{"stringItem":"NavigationBarNavItemStringItem","groupOfStringItems":"NavigationBarNavItemGroupOfStringItems","modalButton":"NavigationBarNavItemModalButton"}},"NavigationBar":{"type":"NavigationBar","resolveType":"collectionDocument","collection":"navigationBar","createNavigationBar":"create","updateNavigationBar":"update"},"NavigationBarConnection":{"type":"NavigationBarConnection","resolveType":"collectionDocumentList","collection":"navigationBar"},"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsItemsItemsItemSlug":{"type":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsItemsItemsItemSlug","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsItemsItems":{"type":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsItemsItems","resolveType":"unionData","typeMap":{"item":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsItemsItemsItem"}},"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsItemSlug":{"type":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsItemSlug","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItems":{"type":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItems","resolveType":"unionData","typeMap":{"items":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsItems","item":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsItem"}},"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemSlug":{"type":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemSlug","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"DocsTableOfContentsSupermenuGroupItemsItemsItems":{"type":"DocsTableOfContentsSupermenuGroupItemsItemsItems","resolveType":"unionData","typeMap":{"items":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItems","item":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItem"}},"DocsTableOfContentsSupermenuGroupItemsItemSlug":{"type":"DocsTableOfContentsSupermenuGroupItemsItemSlug","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"DocsTableOfContentsSupermenuGroupItems":{"type":"DocsTableOfContentsSupermenuGroupItems","resolveType":"unionData","typeMap":{"items":"DocsTableOfContentsSupermenuGroupItemsItems","item":"DocsTableOfContentsSupermenuGroupItemsItem"}},"DocsTableOfContents":{"type":"DocsTableOfContents","resolveType":"collectionDocument","collection":"docsTableOfContents","createDocsTableOfContents":"create","updateDocsTableOfContents":"update"},"DocsTableOfContentsConnection":{"type":"DocsTableOfContentsConnection","resolveType":"collectionDocumentList","collection":"docsTableOfContents"}},"graphql":{"kind":"Document","definitions":[{"kind":"ScalarTypeDefinition","name":{"kind":"Name","value":"Reference"},"description":{"kind":"StringValue","value":"References another document, used as a foreign key"},"directives":[]},{"kind":"ScalarTypeDefinition","name":{"kind":"Name","value":"JSON"},"description":{"kind":"StringValue","value":""},"directives":[]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"SystemInfo"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"filename"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"basename"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"breadcrumbs"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"excludeExtension"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}],"type":{"kind":"NonNullType","type":{"kind":"ListType","type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"path"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"relativePath"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"extension"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"template"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"collection"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Collection"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Folder"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"name"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"path"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageInfo"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"hasPreviousPage"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"hasNextPage"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"startCursor"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"endCursor"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}]},{"kind":"InterfaceTypeDefinition","description":{"kind":"StringValue","value":""},"name":{"kind":"Name","value":"Node"},"interfaces":[],"directives":[],"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"id"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ID"}}}}]},{"kind":"InterfaceTypeDefinition","description":{"kind":"StringValue","value":""},"name":{"kind":"Name","value":"Document"},"interfaces":[],"directives":[],"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"id"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ID"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"_sys"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"SystemInfo"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"_values"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}}]},{"kind":"InterfaceTypeDefinition","description":{"kind":"StringValue","value":"A relay-compliant pagination connection"},"name":{"kind":"Name","value":"Connection"},"interfaces":[],"directives":[],"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"totalCount"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"pageInfo"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageInfo"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Query"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"getOptimizedQuery"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"queryString"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"collection"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"collection"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Collection"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"collections"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"ListType","type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Collection"}}}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"node"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"id"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Node"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"document"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"collection"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"DocumentNode"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"page"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Page"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"pageConnection"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"before"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"after"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"first"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"last"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sort"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"filter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageFilter"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageConnection"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"doc"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Doc"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"docConnection"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"before"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"after"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"first"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"last"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sort"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"filter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocFilter"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"DocConnection"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"post"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Post"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"postConnection"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"before"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"after"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"first"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"last"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sort"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"filter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PostFilter"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PostConnection"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"examples"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Examples"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"examplesConnection"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"before"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"after"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"first"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"last"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sort"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"filter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ExamplesFilter"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ExamplesConnection"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"meetingLinks"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"MeetingLinks"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"meetingLinksConnection"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"before"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"after"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"first"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"last"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sort"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"filter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"MeetingLinksFilter"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"MeetingLinksConnection"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"WhatsNewTinaCMS"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"WhatsNewTinaCMS"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"WhatsNewTinaCMSConnection"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"before"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"after"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"first"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"last"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sort"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"filter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"WhatsNewTinaCMSFilter"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"WhatsNewTinaCMSConnection"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"WhatsNewTinaCloud"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"WhatsNewTinaCloud"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"WhatsNewTinaCloudConnection"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"before"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"after"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"first"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"last"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sort"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"filter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"WhatsNewTinaCloudFilter"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"WhatsNewTinaCloudConnection"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"navigationBar"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"NavigationBar"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"navigationBarConnection"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"before"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"after"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"first"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"last"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sort"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"filter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NavigationBarFilter"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"NavigationBarConnection"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"docsTableOfContents"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContents"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"docsTableOfContentsConnection"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"before"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"after"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"first"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"last"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sort"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"filter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsFilter"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsConnection"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocumentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"page"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"doc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"post"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PostFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"examples"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ExamplesFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"meetingLinks"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"MeetingLinksFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"WhatsNewTinaCMS"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"WhatsNewTinaCMSFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"WhatsNewTinaCloud"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"WhatsNewTinaCloudFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"navigationBar"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NavigationBarFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"docsTableOfContents"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsFilter"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"DocumentConnectionEdges"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"cursor"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"node"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocumentNode"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[{"kind":"NamedType","name":{"kind":"Name","value":"Connection"}}],"directives":[],"name":{"kind":"Name","value":"DocumentConnection"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"pageInfo"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageInfo"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"totalCount"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"edges"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"DocumentConnectionEdges"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Collection"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"name"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"slug"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"path"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"format"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"matches"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"templates"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"fields"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"documents"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"before"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"after"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"first"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"last"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sort"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"filter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocumentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"folder"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"DocumentConnection"}}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"DocumentNode"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"Page"}},{"kind":"NamedType","name":{"kind":"Name","value":"Doc"}},{"kind":"NamedType","name":{"kind":"Name","value":"Post"}},{"kind":"NamedType","name":{"kind":"Name","value":"Examples"}},{"kind":"NamedType","name":{"kind":"Name","value":"MeetingLinks"}},{"kind":"NamedType","name":{"kind":"Name","value":"WhatsNewTinaCMS"}},{"kind":"NamedType","name":{"kind":"Name","value":"WhatsNewTinaCloud"}},{"kind":"NamedType","name":{"kind":"Name","value":"NavigationBar"}},{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContents"}},{"kind":"NamedType","name":{"kind":"Name","value":"Folder"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageSeo"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"hasCustomSuffix"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"description"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksHeroMediaImage"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"image"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksHeroMediaVideo"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"src"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"PageBlocksHeroMedia"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksHeroMediaImage"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksHeroMediaVideo"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksHeroButtonsActions"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"icon"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"variant"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"size"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"url"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksHeroButtonsModalButton"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"icon"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"color"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"size"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"modal"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksHeroButtonsCodeButton"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"PageBlocksHeroButtons"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksHeroButtonsActions"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksHeroButtonsModalButton"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksHeroButtonsCodeButton"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksHero"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"headline"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"text"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"media"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksHeroMedia"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"margin"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"spacing"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"smallerMobileBodyText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"buttons"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksHeroButtons"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesButtonsActions"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"icon"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"variant"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"size"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"url"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesButtonsModalButton"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"icon"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"color"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"size"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"modal"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesButtonsCodeButton"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesButtons"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesButtonsActions"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesButtonsModalButton"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesButtonsCodeButton"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesMediaImage"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"image"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesMediaVideo"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"src"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesMediaCode"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"file"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"code"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"language"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"scale"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesMedia"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesMediaImage"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesMediaVideo"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesMediaCode"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksFeaturesFeatures"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"headline"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"text"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"buttons"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesButtons"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"media"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesMedia"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"isReversed"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"imageBackground"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksFeatures"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"features"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFeaturesFeatures"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksFlyingButtonsActions"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"icon"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"variant"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"size"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"url"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksFlyingButtonsModalButton"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"icon"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"color"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"size"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"modal"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksFlyingButtonsCodeButton"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"PageBlocksFlyingButtons"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFlyingButtonsActions"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFlyingButtonsModalButton"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFlyingButtonsCodeButton"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksFlying"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"headline"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"text"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"buttons"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFlyingButtons"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksPricingFreeTierCardItem"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"name"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"icon"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"description"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksPricingFreeTierButtonsActions"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"icon"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"variant"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"size"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"url"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksPricingFreeTierButtonsModalButton"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"icon"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"color"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"size"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"modal"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksPricingFreeTierButtonsCodeButton"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"PageBlocksPricingFreeTierButtons"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksPricingFreeTierButtonsActions"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksPricingFreeTierButtonsModalButton"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksPricingFreeTierButtonsCodeButton"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksPricingFreeTier"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"name"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"description"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"price"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"annualPrice"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"annualDescription"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"interval"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"cardItem"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksPricingFreeTierCardItem"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"buttons"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksPricingFreeTierButtons"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"isStarred"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksPricingPlansCardItem"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"name"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"icon"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"description"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksPricingPlansButtonsActions"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"icon"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"variant"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"size"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"url"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksPricingPlansButtonsModalButton"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"icon"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"color"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"size"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"modal"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksPricingPlansButtonsCodeButton"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"PageBlocksPricingPlansButtons"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksPricingPlansButtonsActions"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksPricingPlansButtonsModalButton"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksPricingPlansButtonsCodeButton"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksPricingPlans"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"name"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"description"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"price"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"annualPrice"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"annualDescription"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"interval"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"cardItem"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksPricingPlansCardItem"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"buttons"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksPricingPlansButtons"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"isStarred"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksPricing"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"headline"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"freeTier"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksPricingFreeTier"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"intro"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"pillSwitchVisibileText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"pillSwitchToggleText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"plans"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksPricingPlans"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksFaqQuestions"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"question"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"answer"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksFaq"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"intro"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"questions"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFaqQuestions"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"color"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksContentOptions"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"narrow"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"color"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"align"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksContent"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"options"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksContentOptions"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"content"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksShowcaseItemsMedia"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"src"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksShowcaseItems"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"headline"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"text"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"url"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"media"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksShowcaseItemsMedia"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksShowcase"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"items"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksShowcaseItems"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksColumnsOptions"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"columns"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"narrow"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"color"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"align"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksColumns"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"options"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksColumnsOptions"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"columnOne"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"columnTwo"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksStory"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksFeatureGridItemsActions"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"icon"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"variant"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"size"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"url"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksFeatureGridItems"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"headline"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"text"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"url"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"actions"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFeatureGridItemsActions"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksFeatureGrid"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"items"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFeatureGridItems"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksLogoGridItems"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"name"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"logo"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"size"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksLogoGrid"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"items"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksLogoGridItems"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksRoadmapGridItemsActions"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"icon"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"variant"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"size"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"url"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksRoadmapGridItems"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"headline"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"status"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"content"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"actions"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksRoadmapGridItemsActions"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksRoadmapGridOptions"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"paddingTop"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"paddingBottom"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksRoadmapGrid"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"headline"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"items"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksRoadmapGridItems"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"options"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksRoadmapGridOptions"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksRecentPosts"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksTestimonialsTestimonials"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"name"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"username"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"avatar"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"date"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"testimonial"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksTestimonials"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"testimonials"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksTestimonialsTestimonials"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksQuote"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title2"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"subtext"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"logo"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksEventsCardItems"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"headline"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"startDate"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"startTime"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"endDate"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"endTime"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"timezone"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"location"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"image"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"markerLAT"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"markerLONG"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksEvents"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"cardItems"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksEventsCardItems"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksCompareBoxCriteriaItems"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"criteria"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"description"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksCompareBoxCompanies"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"headline"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"logoColour"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"logoWhite"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"active"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"isHidden"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"backgroundColor"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"criteria1"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"criteria2"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"criteria3"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"criteria4"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"criteria5"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"criteria6"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"criteria7"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"criteria8"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"criteria9"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksCompareBox"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"criteriaItems"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksCompareBoxCriteriaItems"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"companies"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksCompareBoxCompanies"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksBooking"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"description"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksMediaComponentMediaItemCloudinaryMediaComponent"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"media"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"thumbnail"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksMediaComponentMediaItemYoutubeMedia"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"embedUrl"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"PageBlocksMediaComponentMediaItem"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksMediaComponentMediaItemCloudinaryMediaComponent"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksMediaComponentMediaItemYoutubeMedia"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksMediaComponent"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"headline"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"mediaItem"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksMediaComponentMediaItem"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksTextMediaColumnComponentMediaColumnItemCloudinaryMediaComponent"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"media"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"thumbnail"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksTextMediaColumnComponentMediaColumnItemYoutubeMedia"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"embedUrl"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"PageBlocksTextMediaColumnComponentMediaColumnItem"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksTextMediaColumnComponentMediaColumnItemCloudinaryMediaComponent"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksTextMediaColumnComponentMediaColumnItemYoutubeMedia"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksTextMediaColumnComponent"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"isVideoOnLeft"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"body"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"mediaColumnItem"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksTextMediaColumnComponentMediaColumnItem"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksTinaBanner"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"backdrop"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"leftFig"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"rightFig"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"leftScreen"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"rightScreen"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"centerFig"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"llama"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksHighlightsSectionHighlightColumnHighlights"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"name"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"icon"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksHighlightsSectionHighlightColumn"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"heading"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"highlights"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksHighlightsSectionHighlightColumnHighlights"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksHighlightsSection"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"highlightColumn"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksHighlightsSectionHighlightColumn"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksSpacer"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"spacingPx"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"spacingPxMobile"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksCarouselFeatureItemsButton"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"icon"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"variant"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"size"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"url"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksCarouselFeatureItems"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"headline"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"text"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"icon2"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"videoSrc"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"button"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksCarouselFeatureItemsButton"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksCarouselFeature"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"blockHeadline"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"items"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksCarouselFeatureItems"}}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"PageBlocks"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksHero"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFeatures"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFlying"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksPricing"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFaq"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksContent"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksShowcase"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksColumns"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksStory"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFeatureGrid"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksLogoGrid"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksRoadmapGrid"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksRecentPosts"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksTestimonials"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksQuote"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksEvents"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksCompareBox"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksBooking"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksMediaComponent"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksTextMediaColumnComponent"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksTinaBanner"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksHighlightsSection"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksSpacer"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksCarouselFeature"}}]},{"kind":"ObjectTypeDefinition","interfaces":[{"kind":"NamedType","name":{"kind":"Name","value":"Node"}},{"kind":"NamedType","name":{"kind":"Name","value":"Document"}}],"directives":[],"name":{"kind":"Name","value":"Page"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"seo"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSeo"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"blocks"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocks"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"id"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ID"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"_sys"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"SystemInfo"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"_values"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"StringFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"startsWith"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eq"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"exists"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"in"},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"BooleanFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eq"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"exists"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSeoFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"hasCustomSuffix"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"description"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"startsWith"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eq"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"exists"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"in"},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksHeroMediaImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"image"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksHeroMediaVideoFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksHeroMediaFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"image"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksHeroMediaImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"video"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksHeroMediaVideoFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksHeroButtonsActionsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"variant"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksHeroButtonsModalButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"modal"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksHeroButtonsCodeButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksHeroButtonsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"actions"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksHeroButtonsActionsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"modalButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksHeroButtonsModalButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"codeButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksHeroButtonsCodeButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksHeroFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"media"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksHeroMediaFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"margin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"spacing"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"smallerMobileBodyText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttons"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksHeroButtonsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesButtonsActionsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"variant"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesButtonsModalButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"modal"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesButtonsCodeButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesButtonsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"actions"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesButtonsActionsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"modalButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesButtonsModalButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"codeButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesButtonsCodeButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesMediaImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"image"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesMediaVideoFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"NumberFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"lt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"lte"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"gte"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"gt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eq"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"exists"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"in"},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesMediaCodeFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"file"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"code"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"language"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"scale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesMediaFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"image"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesMediaImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"video"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesMediaVideoFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"code"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesMediaCodeFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttons"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesButtonsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"media"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesMediaFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"isReversed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imageBackground"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksFeaturesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"features"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksFlyingButtonsActionsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"variant"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksFlyingButtonsModalButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"modal"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksFlyingButtonsCodeButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksFlyingButtonsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"actions"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFlyingButtonsActionsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"modalButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFlyingButtonsModalButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"codeButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFlyingButtonsCodeButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksFlyingFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttons"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFlyingButtonsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"RichTextFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"startsWith"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eq"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"exists"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksPricingFreeTierCardItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"description"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksPricingFreeTierButtonsActionsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"variant"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksPricingFreeTierButtonsModalButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"modal"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksPricingFreeTierButtonsCodeButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksPricingFreeTierButtonsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"actions"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksPricingFreeTierButtonsActionsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"modalButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksPricingFreeTierButtonsModalButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"codeButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksPricingFreeTierButtonsCodeButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksPricingFreeTierFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"description"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"price"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"annualPrice"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"annualDescription"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"interval"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"cardItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksPricingFreeTierCardItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttons"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksPricingFreeTierButtonsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"isStarred"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksPricingPlansCardItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"description"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksPricingPlansButtonsActionsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"variant"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksPricingPlansButtonsModalButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"modal"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksPricingPlansButtonsCodeButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksPricingPlansButtonsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"actions"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksPricingPlansButtonsActionsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"modalButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksPricingPlansButtonsModalButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"codeButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksPricingPlansButtonsCodeButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksPricingPlansFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"description"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"price"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"annualPrice"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"annualDescription"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"interval"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"cardItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksPricingPlansCardItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttons"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksPricingPlansButtonsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"isStarred"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksPricingFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"freeTier"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksPricingFreeTierFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"intro"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"pillSwitchVisibileText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"pillSwitchToggleText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"plans"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksPricingPlansFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksFaqQuestionsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"question"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"answer"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksFaqFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"intro"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"questions"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFaqQuestionsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksContentOptionsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"narrow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"align"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksContentContentActionsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"variant"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksContentContentSocialFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"tina"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"discord"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"github"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"twitter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksContentContentNewsletterFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"style"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksContentContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"actions"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksContentContentActionsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"social"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksContentContentSocialFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"newsletter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksContentContentNewsletterFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"options"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksContentOptionsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksContentContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksShowcaseItemsMediaFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksShowcaseItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"media"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksShowcaseItemsMediaFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksShowcaseFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksShowcaseItemsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksColumnsOptionsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"columns"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"narrow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"align"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksColumnsColumnOneActionsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"variant"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksColumnsColumnOneSocialFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"tina"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"discord"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"github"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"twitter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksColumnsColumnOneNewsletterFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"style"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksColumnsColumnOneFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"actions"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksColumnsColumnOneActionsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"social"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksColumnsColumnOneSocialFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"newsletter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksColumnsColumnOneNewsletterFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksColumnsColumnTwoActionsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"variant"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksColumnsColumnTwoSocialFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"tina"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"discord"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"github"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"twitter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksColumnsColumnTwoNewsletterFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"style"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksColumnsColumnTwoFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"actions"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksColumnsColumnTwoActionsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"social"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksColumnsColumnTwoSocialFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"newsletter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksColumnsColumnTwoNewsletterFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksColumnsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"options"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksColumnsOptionsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"columnOne"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksColumnsColumnOneFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"columnTwo"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksColumnsColumnTwoFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksStoryFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksFeatureGridItemsActionsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"variant"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksFeatureGridItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"actions"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFeatureGridItemsActionsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksFeatureGridFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFeatureGridItemsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksLogoGridItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"logo"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksLogoGridFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksLogoGridItemsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksRoadmapGridItemsActionsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"variant"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksRoadmapGridItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"status"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"actions"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksRoadmapGridItemsActionsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksRoadmapGridOptionsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"paddingTop"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"paddingBottom"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksRoadmapGridFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksRoadmapGridItemsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"options"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksRoadmapGridOptionsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksRecentPostsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DatetimeFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"after"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"before"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eq"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"exists"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"in"},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksTestimonialsTestimonialsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"username"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"avatar"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"date"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DatetimeFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"testimonial"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksTestimonialsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"testimonials"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksTestimonialsTestimonialsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksQuoteFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title2"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subtext"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"logo"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksEventsCardItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"startDate"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DatetimeFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"startTime"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"endDate"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DatetimeFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"endTime"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"timezone"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"location"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"image"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"markerLAT"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"markerLONG"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksEventsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"cardItems"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksEventsCardItemsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksCompareBoxCriteriaItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"criteria"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"description"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksCompareBoxCompaniesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"logoColour"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"logoWhite"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"active"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"isHidden"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"criteria1"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"criteria2"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"criteria3"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"criteria4"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"criteria5"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"criteria6"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"criteria7"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"criteria8"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"criteria9"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksCompareBoxFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"criteriaItems"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksCompareBoxCriteriaItemsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"companies"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksCompareBoxCompaniesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksBookingFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"description"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksMediaComponentMediaItemCloudinaryMediaComponentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"media"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksMediaComponentMediaItemYoutubeMediaFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"embedUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksMediaComponentMediaItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"cloudinaryMediaComponent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksMediaComponentMediaItemCloudinaryMediaComponentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"youtubeMedia"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksMediaComponentMediaItemYoutubeMediaFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksMediaComponentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"mediaItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksMediaComponentMediaItemFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksTextMediaColumnComponentMediaColumnItemCloudinaryMediaComponentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"media"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksTextMediaColumnComponentMediaColumnItemYoutubeMediaFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"embedUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksTextMediaColumnComponentMediaColumnItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"cloudinaryMediaComponent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksTextMediaColumnComponentMediaColumnItemCloudinaryMediaComponentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"youtubeMedia"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksTextMediaColumnComponentMediaColumnItemYoutubeMediaFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksTextMediaColumnComponentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"isVideoOnLeft"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"body"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"mediaColumnItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksTextMediaColumnComponentMediaColumnItemFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksTinaBannerFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backdrop"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"leftFig"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"rightFig"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"leftScreen"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"rightScreen"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centerFig"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"llama"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksHighlightsSectionHighlightColumnHighlightsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksHighlightsSectionHighlightColumnFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"heading"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"highlights"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksHighlightsSectionHighlightColumnHighlightsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksHighlightsSectionFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"highlightColumn"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksHighlightsSectionHighlightColumnFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksSpacerFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"spacingPx"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"spacingPxMobile"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksCarouselFeatureItemsButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"variant"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksCarouselFeatureItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon2"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"button"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksCarouselFeatureItemsButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksCarouselFeatureFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"blockHeadline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksCarouselFeatureItemsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"hero"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksHeroFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"features"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFeaturesFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"flying"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFlyingFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"pricing"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksPricingFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"faq"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFaqFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showcase"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksShowcaseFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"columns"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksColumnsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"story"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksStoryFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"featureGrid"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFeatureGridFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"logoGrid"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksLogoGridFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"roadmapGrid"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksRoadmapGridFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"recentPosts"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksRecentPostsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"testimonials"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksTestimonialsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"quote"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksQuoteFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"events"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksEventsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CompareBox"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksCompareBoxFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"booking"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksBookingFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"mediaComponent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksMediaComponentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"textMediaColumnComponent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksTextMediaColumnComponentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"tinaBanner"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksTinaBannerFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"highlightsSection"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksHighlightsSectionFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"spacer"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksSpacerFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"carouselFeature"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksCarouselFeatureFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"seo"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSeoFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"blocks"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFilter"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageConnectionEdges"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"cursor"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"node"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[{"kind":"NamedType","name":{"kind":"Name","value":"Connection"}}],"directives":[],"name":{"kind":"Name","value":"PageConnection"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"pageInfo"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageInfo"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"totalCount"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"edges"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageConnectionEdges"}}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"DocNext"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"Doc"}},{"kind":"NamedType","name":{"kind":"Name","value":"Examples"}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"DocPrevious"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"Doc"}},{"kind":"NamedType","name":{"kind":"Name","value":"Examples"}}]},{"kind":"ObjectTypeDefinition","interfaces":[{"kind":"NamedType","name":{"kind":"Name","value":"Node"}},{"kind":"NamedType","name":{"kind":"Name","value":"Document"}}],"directives":[],"name":{"kind":"Name","value":"Doc"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"last_edited"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"next"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocNext"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"previous"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocPrevious"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"body"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"id"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ID"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"_sys"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"SystemInfo"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"_values"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocNextFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"doc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"examples"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ExamplesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocPreviousFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"doc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"examples"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ExamplesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocBodyYoutubeFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"embedSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocBodyGraphQLCodeBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"query"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"response"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"preselectResponse"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocBodyWarningCalloutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"body"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocBodyIframeFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iframeSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocBodyCloudinaryVideoFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocBodyImageAndTextFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"docText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"image"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocBodySummaryTabFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"heading"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Youtube"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocBodyYoutubeFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"GraphQLCodeBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocBodyGraphQLCodeBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"WarningCallout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocBodyWarningCalloutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Iframe"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocBodyIframeFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CloudinaryVideo"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocBodyCloudinaryVideoFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ImageAndText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocBodyImageAndTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"SummaryTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocBodySummaryTabFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"last_edited"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"next"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocNextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"previous"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocPreviousFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"body"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocBodyFilter"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"DocConnectionEdges"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"cursor"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"node"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Doc"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[{"kind":"NamedType","name":{"kind":"Name","value":"Connection"}}],"directives":[],"name":{"kind":"Name","value":"DocConnection"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"pageInfo"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageInfo"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"totalCount"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"edges"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"DocConnectionEdges"}}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"PostPrev"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"Post"}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"PostNext"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"Post"}}]},{"kind":"ObjectTypeDefinition","interfaces":[{"kind":"NamedType","name":{"kind":"Name","value":"Node"}},{"kind":"NamedType","name":{"kind":"Name","value":"Document"}}],"directives":[],"name":{"kind":"Name","value":"Post"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"date"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"last_edited"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"author"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"prev"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"PostPrev"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"next"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"PostNext"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"body"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"id"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ID"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"_sys"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"SystemInfo"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"_values"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PostPrevFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"post"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PostFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PostNextFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"post"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PostFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PostBodyWarningCalloutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"body"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PostBodyYoutubeFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"embedSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PostBodyGraphQLCodeBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"request"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"response"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PostBodyIframeFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iframeSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PostBodyCreateAppCtaFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ctaText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"cliText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PostBodyCalloutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"description"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PostBodyCodesandboxFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"embedSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PostBodyDiagramFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PostBodyWideImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PostBodyCustomFieldComponentDemoFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"test"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PostBodyCloudinaryVideoFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PostBodyButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PostBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"WarningCallout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PostBodyWarningCalloutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Youtube"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PostBodyYoutubeFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"GraphQLCodeBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PostBodyGraphQLCodeBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Iframe"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PostBodyIframeFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CreateAppCta"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PostBodyCreateAppCtaFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Callout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PostBodyCalloutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Codesandbox"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PostBodyCodesandboxFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Diagram"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PostBodyDiagramFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"WideImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PostBodyWideImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomFieldComponentDemo"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PostBodyCustomFieldComponentDemoFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CloudinaryVideo"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PostBodyCloudinaryVideoFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Button"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PostBodyButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PostFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"date"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"last_edited"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"author"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"prev"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PostPrevFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"next"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PostNextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"body"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PostBodyFilter"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PostConnectionEdges"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"cursor"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"node"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Post"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[{"kind":"NamedType","name":{"kind":"Name","value":"Connection"}}],"directives":[],"name":{"kind":"Name","value":"PostConnection"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"pageInfo"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageInfo"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"totalCount"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"edges"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PostConnectionEdges"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ExamplesExamples"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"description"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"image"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[{"kind":"NamedType","name":{"kind":"Name","value":"Node"}},{"kind":"NamedType","name":{"kind":"Name","value":"Document"}}],"directives":[],"name":{"kind":"Name","value":"Examples"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"examples"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ExamplesExamples"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"id"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ID"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"_sys"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"SystemInfo"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"_values"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ExamplesExamplesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"description"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"image"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ExamplesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"examples"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ExamplesExamplesFilter"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ExamplesConnectionEdges"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"cursor"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"node"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Examples"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[{"kind":"NamedType","name":{"kind":"Name","value":"Connection"}}],"directives":[],"name":{"kind":"Name","value":"ExamplesConnection"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"pageInfo"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageInfo"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"totalCount"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"edges"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ExamplesConnectionEdges"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"MeetingLinksBookingCard"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"name"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"description"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"image"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"url"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[{"kind":"NamedType","name":{"kind":"Name","value":"Node"}},{"kind":"NamedType","name":{"kind":"Name","value":"Document"}}],"directives":[],"name":{"kind":"Name","value":"MeetingLinks"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"bookingCard"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"MeetingLinksBookingCard"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"id"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ID"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"_sys"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"SystemInfo"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"_values"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"MeetingLinksBookingCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"description"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"image"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"MeetingLinksFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bookingCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"MeetingLinksBookingCardFilter"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"MeetingLinksConnectionEdges"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"cursor"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"node"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"MeetingLinks"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[{"kind":"NamedType","name":{"kind":"Name","value":"Connection"}}],"directives":[],"name":{"kind":"Name","value":"MeetingLinksConnection"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"pageInfo"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageInfo"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"totalCount"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"edges"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"MeetingLinksConnectionEdges"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[{"kind":"NamedType","name":{"kind":"Name","value":"Node"}},{"kind":"NamedType","name":{"kind":"Name","value":"Document"}}],"directives":[],"name":{"kind":"Name","value":"WhatsNewTinaCMS"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"versionNumber"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"dateReleased"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"body"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"id"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ID"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"_sys"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"SystemInfo"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"_values"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"WhatsNewTinaCMSFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"versionNumber"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"dateReleased"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DatetimeFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"body"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"WhatsNewTinaCMSConnectionEdges"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"cursor"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"node"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"WhatsNewTinaCMS"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[{"kind":"NamedType","name":{"kind":"Name","value":"Connection"}}],"directives":[],"name":{"kind":"Name","value":"WhatsNewTinaCMSConnection"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"pageInfo"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageInfo"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"totalCount"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"edges"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"WhatsNewTinaCMSConnectionEdges"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[{"kind":"NamedType","name":{"kind":"Name","value":"Node"}},{"kind":"NamedType","name":{"kind":"Name","value":"Document"}}],"directives":[],"name":{"kind":"Name","value":"WhatsNewTinaCloud"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"versionNumber"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"dateReleased"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"body"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"id"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ID"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"_sys"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"SystemInfo"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"_values"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"WhatsNewTinaCloudFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"versionNumber"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"dateReleased"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DatetimeFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"body"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"WhatsNewTinaCloudConnectionEdges"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"cursor"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"node"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"WhatsNewTinaCloud"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[{"kind":"NamedType","name":{"kind":"Name","value":"Connection"}}],"directives":[],"name":{"kind":"Name","value":"WhatsNewTinaCloudConnection"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"pageInfo"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageInfo"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"totalCount"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"edges"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"WhatsNewTinaCloudConnectionEdges"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"NavigationBarNavItemStringItem"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"href"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"NavigationBarNavItemGroupOfStringItemsItems"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"href"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"NavigationBarNavItemGroupOfStringItems"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"items"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"NavigationBarNavItemGroupOfStringItemsItems"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"NavigationBarNavItemModalButton"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"icon"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"color"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"size"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"modal"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"icon2"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"NavigationBarNavItem"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"NavigationBarNavItemStringItem"}},{"kind":"NamedType","name":{"kind":"Name","value":"NavigationBarNavItemGroupOfStringItems"}},{"kind":"NamedType","name":{"kind":"Name","value":"NavigationBarNavItemModalButton"}}]},{"kind":"ObjectTypeDefinition","interfaces":[{"kind":"NamedType","name":{"kind":"Name","value":"Node"}},{"kind":"NamedType","name":{"kind":"Name","value":"Document"}}],"directives":[],"name":{"kind":"Name","value":"NavigationBar"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"navItem"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"NavigationBarNavItem"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"id"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ID"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"_sys"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"SystemInfo"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"_values"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"NavigationBarNavItemStringItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"href"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"NavigationBarNavItemGroupOfStringItemsItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"href"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"NavigationBarNavItemGroupOfStringItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NavigationBarNavItemGroupOfStringItemsItemsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"NavigationBarNavItemModalButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"modal"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon2"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"NavigationBarNavItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"stringItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NavigationBarNavItemStringItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"groupOfStringItems"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NavigationBarNavItemGroupOfStringItemsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"modalButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NavigationBarNavItemModalButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"NavigationBarFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"navItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NavigationBarNavItemFilter"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"NavigationBarConnectionEdges"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"cursor"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"node"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"NavigationBar"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[{"kind":"NamedType","name":{"kind":"Name","value":"Connection"}}],"directives":[],"name":{"kind":"Name","value":"NavigationBarConnection"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"pageInfo"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageInfo"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"totalCount"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"edges"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"NavigationBarConnectionEdges"}}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsItemsItemsItemSlug"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"Doc"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsItemsItemsItem"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"slug"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsItemsItemsItemSlug"}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsItemsItems"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsItemsItemsItem"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsItems"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"items"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsItemsItems"}}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsItemSlug"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"Doc"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsItem"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"slug"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsItemSlug"}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItems"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsItems"}},{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsItem"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItems"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"items"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItems"}}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemSlug"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"Doc"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItem"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"slug"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemSlug"}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItems"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItems"}},{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItem"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItems"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"items"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItems"}}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemSlug"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"Doc"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItem"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"slug"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemSlug"}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItems"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItems"}},{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItem"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroup"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"items"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItems"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[{"kind":"NamedType","name":{"kind":"Name","value":"Node"}},{"kind":"NamedType","name":{"kind":"Name","value":"Document"}}],"directives":[],"name":{"kind":"Name","value":"DocsTableOfContents"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"supermenuGroup"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroup"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"id"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ID"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"_sys"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"SystemInfo"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"_values"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsItemsItemsItemSlugFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"doc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsItemsItemsItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"slug"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsItemsItemsItemSlugFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsItemsItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"item"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsItemsItemsItemFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsItemsItemsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsItemSlugFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"doc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"slug"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsItemSlugFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsItemsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"item"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsItemFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemSlugFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"doc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"slug"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemSlugFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"item"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemSlugFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"doc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"slug"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemSlugFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"item"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocsTableOfContentsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"supermenuGroup"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupFilter"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"DocsTableOfContentsConnectionEdges"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"cursor"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"node"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContents"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[{"kind":"NamedType","name":{"kind":"Name","value":"Connection"}}],"directives":[],"name":{"kind":"Name","value":"DocsTableOfContentsConnection"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"pageInfo"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageInfo"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"totalCount"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"edges"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsConnectionEdges"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Mutation"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"addPendingDocument"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"collection"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"template"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"DocumentNode"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"updateDocument"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"collection"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"params"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"DocumentUpdateMutation"}}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"DocumentNode"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"deleteDocument"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"collection"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"DocumentNode"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"createDocument"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"collection"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"params"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"DocumentMutation"}}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"DocumentNode"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"createFolder"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"collection"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"DocumentNode"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"updatePage"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"params"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageMutation"}}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Page"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"createPage"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"params"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageMutation"}}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Page"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"updateDoc"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"params"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"DocMutation"}}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Doc"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"createDoc"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"params"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"DocMutation"}}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Doc"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"updatePost"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"params"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PostMutation"}}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Post"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"createPost"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"params"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PostMutation"}}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Post"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"updateExamples"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"params"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ExamplesMutation"}}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Examples"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"createExamples"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"params"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ExamplesMutation"}}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Examples"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"updateMeetingLinks"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"params"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"MeetingLinksMutation"}}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"MeetingLinks"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"createMeetingLinks"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"params"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"MeetingLinksMutation"}}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"MeetingLinks"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"updateWhatsNewTinaCMS"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"params"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"WhatsNewTinaCMSMutation"}}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"WhatsNewTinaCMS"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"createWhatsNewTinaCMS"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"params"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"WhatsNewTinaCMSMutation"}}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"WhatsNewTinaCMS"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"updateWhatsNewTinaCloud"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"params"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"WhatsNewTinaCloudMutation"}}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"WhatsNewTinaCloud"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"createWhatsNewTinaCloud"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"params"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"WhatsNewTinaCloudMutation"}}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"WhatsNewTinaCloud"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"updateNavigationBar"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"params"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"NavigationBarMutation"}}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"NavigationBar"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"createNavigationBar"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"params"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"NavigationBarMutation"}}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"NavigationBar"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"updateDocsTableOfContents"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"params"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsMutation"}}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContents"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"createDocsTableOfContents"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"params"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsMutation"}}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContents"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocumentUpdateMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"page"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"doc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"post"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PostMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"examples"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ExamplesMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"meetingLinks"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"MeetingLinksMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"WhatsNewTinaCMS"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"WhatsNewTinaCMSMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"WhatsNewTinaCloud"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"WhatsNewTinaCloudMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"navigationBar"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NavigationBarMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"docsTableOfContents"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocumentMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"page"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"doc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"post"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PostMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"examples"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ExamplesMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"meetingLinks"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"MeetingLinksMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"WhatsNewTinaCMS"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"WhatsNewTinaCMSMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"WhatsNewTinaCloud"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"WhatsNewTinaCloudMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"navigationBar"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NavigationBarMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"docsTableOfContents"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsMutation"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSeoMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"hasCustomSuffix"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"description"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksHeroMediaImageMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"image"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksHeroMediaVideoMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksHeroMediaMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"image"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksHeroMediaImageMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"video"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksHeroMediaVideoMutation"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksHeroButtonsActionsMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"variant"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksHeroButtonsModalButtonMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"modal"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksHeroButtonsCodeButtonMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksHeroButtonsMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"actions"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksHeroButtonsActionsMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"modalButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksHeroButtonsModalButtonMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"codeButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksHeroButtonsCodeButtonMutation"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksHeroMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"media"},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksHeroMediaMutation"}}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"margin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"spacing"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"smallerMobileBodyText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttons"},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksHeroButtonsMutation"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesButtonsActionsMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"variant"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesButtonsModalButtonMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"modal"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesButtonsCodeButtonMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesButtonsMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"actions"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesButtonsActionsMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"modalButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesButtonsModalButtonMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"codeButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesButtonsCodeButtonMutation"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesMediaImageMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"image"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesMediaVideoMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesMediaCodeMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"file"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"code"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"language"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"scale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesMediaMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"image"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesMediaImageMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"video"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesMediaVideoMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"code"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesMediaCodeMutation"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttons"},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesButtonsMutation"}}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"media"},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesMediaMutation"}}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"isReversed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imageBackground"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksFeaturesMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"features"},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesMutation"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksFlyingButtonsActionsMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"variant"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksFlyingButtonsModalButtonMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"modal"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksFlyingButtonsCodeButtonMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksFlyingButtonsMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"actions"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFlyingButtonsActionsMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"modalButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFlyingButtonsModalButtonMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"codeButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFlyingButtonsCodeButtonMutation"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksFlyingMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttons"},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFlyingButtonsMutation"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksPricingFreeTierCardItemMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"description"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksPricingFreeTierButtonsActionsMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"variant"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksPricingFreeTierButtonsModalButtonMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"modal"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksPricingFreeTierButtonsCodeButtonMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksPricingFreeTierButtonsMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"actions"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksPricingFreeTierButtonsActionsMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"modalButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksPricingFreeTierButtonsModalButtonMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"codeButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksPricingFreeTierButtonsCodeButtonMutation"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksPricingFreeTierMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"description"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"price"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"annualPrice"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"annualDescription"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"interval"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"cardItem"},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksPricingFreeTierCardItemMutation"}}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttons"},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksPricingFreeTierButtonsMutation"}}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"isStarred"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksPricingPlansCardItemMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"description"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksPricingPlansButtonsActionsMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"variant"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksPricingPlansButtonsModalButtonMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"modal"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksPricingPlansButtonsCodeButtonMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksPricingPlansButtonsMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"actions"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksPricingPlansButtonsActionsMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"modalButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksPricingPlansButtonsModalButtonMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"codeButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksPricingPlansButtonsCodeButtonMutation"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksPricingPlansMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"description"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"price"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"annualPrice"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"annualDescription"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"interval"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"cardItem"},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksPricingPlansCardItemMutation"}}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttons"},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksPricingPlansButtonsMutation"}}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"isStarred"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksPricingMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"freeTier"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksPricingFreeTierMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"intro"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"pillSwitchVisibileText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"pillSwitchToggleText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"plans"},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksPricingPlansMutation"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksFaqQuestionsMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"question"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"answer"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksFaqMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"intro"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"questions"},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFaqQuestionsMutation"}}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksContentOptionsMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"narrow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"align"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksContentMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"options"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksContentOptionsMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksShowcaseItemsMediaMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksShowcaseItemsMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"media"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksShowcaseItemsMediaMutation"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksShowcaseMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksShowcaseItemsMutation"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksColumnsOptionsMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"columns"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"narrow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"align"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksColumnsMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"options"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksColumnsOptionsMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"columnOne"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"columnTwo"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksStoryMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksFeatureGridItemsActionsMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"variant"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksFeatureGridItemsMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"actions"},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFeatureGridItemsActionsMutation"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksFeatureGridMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFeatureGridItemsMutation"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksLogoGridItemsMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"logo"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksLogoGridMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksLogoGridItemsMutation"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksRoadmapGridItemsActionsMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"variant"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksRoadmapGridItemsMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"status"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"actions"},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksRoadmapGridItemsActionsMutation"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksRoadmapGridOptionsMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"paddingTop"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"paddingBottom"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksRoadmapGridMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksRoadmapGridItemsMutation"}}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"options"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksRoadmapGridOptionsMutation"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksRecentPostsMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksTestimonialsTestimonialsMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"username"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"avatar"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"date"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"testimonial"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksTestimonialsMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"testimonials"},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksTestimonialsTestimonialsMutation"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksQuoteMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title2"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subtext"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"logo"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksEventsCardItemsMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"startDate"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"startTime"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"endDate"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"endTime"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"timezone"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"location"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"image"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"markerLAT"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"markerLONG"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksEventsMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"cardItems"},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksEventsCardItemsMutation"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksCompareBoxCriteriaItemsMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"criteria"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"description"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksCompareBoxCompaniesMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"logoColour"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"logoWhite"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"active"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"isHidden"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"criteria1"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"criteria2"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"criteria3"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"criteria4"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"criteria5"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"criteria6"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"criteria7"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"criteria8"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"criteria9"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksCompareBoxMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"criteriaItems"},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksCompareBoxCriteriaItemsMutation"}}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"companies"},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksCompareBoxCompaniesMutation"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksBookingMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"description"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksMediaComponentMediaItemCloudinaryMediaComponentMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"media"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksMediaComponentMediaItemYoutubeMediaMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"embedUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksMediaComponentMediaItemMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"cloudinaryMediaComponent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksMediaComponentMediaItemCloudinaryMediaComponentMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"youtubeMedia"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksMediaComponentMediaItemYoutubeMediaMutation"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksMediaComponentMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"mediaItem"},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksMediaComponentMediaItemMutation"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksTextMediaColumnComponentMediaColumnItemCloudinaryMediaComponentMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"media"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksTextMediaColumnComponentMediaColumnItemYoutubeMediaMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"embedUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksTextMediaColumnComponentMediaColumnItemMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"cloudinaryMediaComponent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksTextMediaColumnComponentMediaColumnItemCloudinaryMediaComponentMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"youtubeMedia"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksTextMediaColumnComponentMediaColumnItemYoutubeMediaMutation"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksTextMediaColumnComponentMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"isVideoOnLeft"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"body"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"mediaColumnItem"},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksTextMediaColumnComponentMediaColumnItemMutation"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksTinaBannerMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backdrop"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"leftFig"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"rightFig"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"leftScreen"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"rightScreen"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centerFig"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"llama"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksHighlightsSectionHighlightColumnHighlightsMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksHighlightsSectionHighlightColumnMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"heading"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"highlights"},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksHighlightsSectionHighlightColumnHighlightsMutation"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksHighlightsSectionMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"highlightColumn"},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksHighlightsSectionHighlightColumnMutation"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksSpacerMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"spacingPx"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"spacingPxMobile"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksCarouselFeatureItemsButtonMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"variant"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksCarouselFeatureItemsMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon2"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"button"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksCarouselFeatureItemsButtonMutation"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksCarouselFeatureMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"blockHeadline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksCarouselFeatureItemsMutation"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"hero"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksHeroMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"features"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFeaturesMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"flying"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFlyingMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"pricing"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksPricingMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"faq"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFaqMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksContentMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showcase"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksShowcaseMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"columns"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksColumnsMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"story"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksStoryMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"featureGrid"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFeatureGridMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"logoGrid"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksLogoGridMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"roadmapGrid"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksRoadmapGridMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"recentPosts"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksRecentPostsMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"testimonials"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksTestimonialsMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"quote"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksQuoteMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"events"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksEventsMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CompareBox"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksCompareBoxMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"booking"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksBookingMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"mediaComponent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksMediaComponentMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"textMediaColumnComponent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksTextMediaColumnComponentMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"tinaBanner"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksTinaBannerMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"highlightsSection"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksHighlightsSectionMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"spacer"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksSpacerMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"carouselFeature"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksCarouselFeatureMutation"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"seo"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSeoMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"blocks"},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksMutation"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"last_edited"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"next"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"previous"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"body"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PostMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"date"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"last_edited"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"author"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"prev"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"next"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"body"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ExamplesExamplesMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"description"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"image"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ExamplesMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"examples"},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ExamplesExamplesMutation"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"MeetingLinksBookingCardMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"description"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"image"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"MeetingLinksMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bookingCard"},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"MeetingLinksBookingCardMutation"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"WhatsNewTinaCMSMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"versionNumber"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"dateReleased"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"body"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"WhatsNewTinaCloudMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"versionNumber"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"dateReleased"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"body"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"NavigationBarNavItemStringItemMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"href"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"NavigationBarNavItemGroupOfStringItemsItemsMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"href"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"NavigationBarNavItemGroupOfStringItemsMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"NavigationBarNavItemGroupOfStringItemsItemsMutation"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"NavigationBarNavItemModalButtonMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"modal"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon2"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"NavigationBarNavItemMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"stringItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NavigationBarNavItemStringItemMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"groupOfStringItems"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NavigationBarNavItemGroupOfStringItemsMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"modalButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NavigationBarNavItemModalButtonMutation"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"NavigationBarMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"navItem"},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"NavigationBarNavItemMutation"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsItemsItemsItemMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"slug"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsItemsItemsMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"item"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsItemsItemsItemMutation"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsItemsMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsItemsItemsMutation"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsItemMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"slug"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsItemsMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"item"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsItemMutation"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsMutation"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"slug"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"item"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemMutation"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsMutation"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"slug"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"item"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemMutation"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsMutation"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocsTableOfContentsMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"supermenuGroup"},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupMutation"}}}}]}]}} \ No newline at end of file +{"schema":{"version":{"fullVersion":"1.5.2","major":"1","minor":"5","patch":"2"},"meta":{"flags":["experimentalData"]},"collections":[{"label":"Pages","name":"page","path":"content/blocksPages","format":"json","ui":{},"fields":[{"type":"object","name":"seo","label":"SEO Information","fields":[{"type":"string","label":"Title","name":"title","description":"' | Tina' will be appended to the end of the value. If no title is provided, the default title in siteConfig.tsx is used.","namespace":["page","seo","title"],"searchable":true,"uid":false},{"type":"boolean","label":"Has Custom Title Suffix?","name":"hasCustomSuffix","ui":{"component":"toggle"},"description":"Set to true to remove the appended suffix ' | Tina'.","namespace":["page","seo","hasCustomSuffix"],"searchable":true,"uid":false},{"type":"string","label":" Description","name":"description","ui":{"component":"textarea"},"namespace":["page","seo","description"],"searchable":true,"uid":false}],"namespace":["page","seo"],"searchable":true,"uid":false},{"label":"Page Sections","name":"blocks","type":"object","list":true,"ui":{"visualSelector":true},"templates":[{"label":"Hero","name":"hero","ui":{"previewSrc":"/img/blocks/hero.png","defaultItem":{"headline":"Next Gen Content Management","text":"Tina is an open-source, Git-backed CMS with the ability to add visual editing to your NextJS site","actions":[{"variant":"orange","label":"Primary Action","icon":true,"url":"/"},{"variant":"","label":"Secondary Action","icon":false,"url":"/"}]}},"fields":[{"name":"headline","label":"Headline","type":"string","namespace":["page","blocks","hero","headline"],"searchable":true,"uid":false},{"name":"text","label":"Text","type":"string","namespace":["page","blocks","hero","text"],"searchable":true,"uid":false},{"name":"media","label":"Media","type":"object","list":true,"ui":{"min":0,"max":1},"templates":[{"name":"image","label":"Image","fields":[{"name":"image","label":"Image","type":"image","namespace":["page","blocks","hero","media","image","image"]}],"namespace":["page","blocks","hero","media","image"]},{"name":"video","label":"Video","fields":[{"name":"src","label":"Video Source","description":"This is the Cloudinary Public ID, for example \"tina-io/docs/quick-edit-demo\".","type":"string","namespace":["page","blocks","hero","media","video","src"]}],"namespace":["page","blocks","hero","media","video"]}],"namespace":["page","blocks","hero","media"],"searchable":true,"uid":false},{"name":"margin","description":"Default is px-8 py-12 lg:py-16","label":"Custom Margin","type":"string","namespace":["page","blocks","hero","margin"],"searchable":true,"uid":false},{"name":"spacing","description":"Default is gap-6","label":"Custom Spacing","type":"string","namespace":["page","blocks","hero","spacing"],"searchable":true,"uid":false},{"name":"smallerMobileBodyText","description":"Default text size on mobile is xl","label":"Mobile Text Size (off = xl, on = lg)","type":"boolean","namespace":["page","blocks","hero","smallerMobileBodyText"],"searchable":true,"uid":false},{"label":"Buttons","list":true,"name":"buttons","type":"object","ui":{"visualSelector":true},"templates":[{"label":"Actions","name":"actions","type":"object","list":true,"ui":{"defaultItem":{"variant":"default","label":"Secondary Action","icon":false,"size":"medium","url":"/"}},"fields":[{"name":"label","label":"Label","type":"string","namespace":["page","blocks","hero","buttons","actions","label"]},{"name":"icon","label":"Icon","type":"boolean","namespace":["page","blocks","hero","buttons","actions","icon"]},{"name":"variant","label":"Variant","type":"string","options":[{"value":"default","label":"Seafoam"},{"value":"blue","label":"Blue"},{"value":"orange","label":"Orange"},{"value":"white","label":"White"},{"value":"ghost","label":"Ghost"},{"value":"orangeWithBorder","label":"Orange with Border"},{"value":"ghostBlue","label":"Ghost Blue"}],"namespace":["page","blocks","hero","buttons","actions","variant"]},{"name":"size","label":"Size","type":"string","options":[{"value":"small","label":"Small"},{"value":"medium","label":"Medium"},{"value":"large","label":"Large"}],"namespace":["page","blocks","hero","buttons","actions","size"]},{"name":"url","label":"URL","type":"string","namespace":["page","blocks","hero","buttons","actions","url"]}],"namespace":["page","blocks","hero","buttons","actions"]},{"label":"Modal Button","name":"modalButton","type":"object","list":true,"ui":{"defaultItem":{"variant":"default","label":"Secondary Action","icon":false,"size":"medium"}},"fields":[{"name":"label","label":"Label","type":"string","namespace":["page","blocks","hero","buttons","modalButton","label"]},{"name":"icon","label":"Icon","type":"boolean","namespace":["page","blocks","hero","buttons","modalButton","icon"]},{"name":"color","label":"Color","type":"string","options":[{"value":"default","label":"Seafoam"},{"value":"blue","label":"Blue"},{"value":"orange","label":"Orange"},{"value":"white","label":"White"},{"value":"ghost","label":"Ghost"},{"value":"command","label":"Command"}],"namespace":["page","blocks","hero","buttons","modalButton","color"]},{"name":"size","label":"Size","type":"string","options":[{"value":"small","label":"Small"},{"value":"medium","label":"Medium"},{"value":"large","label":"Large"}],"namespace":["page","blocks","hero","buttons","modalButton","size"]},{"name":"modal","label":"Modal","type":"string","options":["BookDemo.tsx","EmailForm.tsx"],"namespace":["page","blocks","hero","buttons","modalButton","modal"]}],"namespace":["page","blocks","hero","buttons","modalButton"]},{"label":"Code Button","name":"codeButton","type":"object","list":true,"ui":{},"fields":[{"name":"label","label":"Label","type":"string","namespace":["page","blocks","hero","buttons","codeButton","label"]}],"namespace":["page","blocks","hero","buttons","codeButton"]}],"namespace":["page","blocks","hero","buttons"],"searchable":true,"uid":false}],"namespace":["page","blocks","hero"]},{"label":"Features","name":"features","ui":{"previewSrc":"/img/blocks/features.png"},"fields":[{"name":"features","label":"Feature Items","type":"object","list":true,"ui":{},"fields":[{"name":"headline","label":"Headline","type":"string","namespace":["page","blocks","features","features","headline"]},{"name":"text","label":"Text","ui":{"component":"textarea"},"type":"string","namespace":["page","blocks","features","features","text"]},{"label":"Buttons","list":true,"name":"buttons","type":"object","ui":{"visualSelector":true},"templates":[{"label":"Actions","name":"actions","type":"object","list":true,"ui":{"defaultItem":{"variant":"default","label":"Secondary Action","icon":false,"size":"medium","url":"/"}},"fields":[{"name":"label","label":"Label","type":"string","namespace":["page","blocks","features","features","buttons","actions","label"]},{"name":"icon","label":"Icon","type":"boolean","namespace":["page","blocks","features","features","buttons","actions","icon"]},{"name":"variant","label":"Variant","type":"string","options":[{"value":"default","label":"Seafoam"},{"value":"blue","label":"Blue"},{"value":"orange","label":"Orange"},{"value":"white","label":"White"},{"value":"ghost","label":"Ghost"},{"value":"orangeWithBorder","label":"Orange with Border"},{"value":"ghostBlue","label":"Ghost Blue"}],"namespace":["page","blocks","features","features","buttons","actions","variant"]},{"name":"size","label":"Size","type":"string","options":[{"value":"small","label":"Small"},{"value":"medium","label":"Medium"},{"value":"large","label":"Large"}],"namespace":["page","blocks","features","features","buttons","actions","size"]},{"name":"url","label":"URL","type":"string","namespace":["page","blocks","features","features","buttons","actions","url"]}],"namespace":["page","blocks","features","features","buttons","actions"]},{"label":"Modal Button","name":"modalButton","type":"object","list":true,"ui":{"defaultItem":{"variant":"default","label":"Secondary Action","icon":false,"size":"medium"}},"fields":[{"name":"label","label":"Label","type":"string","namespace":["page","blocks","features","features","buttons","modalButton","label"]},{"name":"icon","label":"Icon","type":"boolean","namespace":["page","blocks","features","features","buttons","modalButton","icon"]},{"name":"color","label":"Color","type":"string","options":[{"value":"default","label":"Seafoam"},{"value":"blue","label":"Blue"},{"value":"orange","label":"Orange"},{"value":"white","label":"White"},{"value":"ghost","label":"Ghost"},{"value":"command","label":"Command"}],"namespace":["page","blocks","features","features","buttons","modalButton","color"]},{"name":"size","label":"Size","type":"string","options":[{"value":"small","label":"Small"},{"value":"medium","label":"Medium"},{"value":"large","label":"Large"}],"namespace":["page","blocks","features","features","buttons","modalButton","size"]},{"name":"modal","label":"Modal","type":"string","options":["BookDemo.tsx","EmailForm.tsx"],"namespace":["page","blocks","features","features","buttons","modalButton","modal"]}],"namespace":["page","blocks","features","features","buttons","modalButton"]},{"label":"Code Button","name":"codeButton","type":"object","list":true,"ui":{},"fields":[{"name":"label","label":"Label","type":"string","namespace":["page","blocks","features","features","buttons","codeButton","label"]}],"namespace":["page","blocks","features","features","buttons","codeButton"]}],"namespace":["page","blocks","features","features","buttons"]},{"name":"media","label":"Media","type":"object","list":true,"ui":{"min":0,"max":1},"templates":[{"name":"image","label":"Image","fields":[{"name":"image","label":"Image","type":"image","namespace":["page","blocks","features","features","media","image","image"]}],"namespace":["page","blocks","features","features","media","image"]},{"name":"video","label":"Video","fields":[{"name":"src","label":"Video Source","description":"This is the Cloudinary Public ID, for example \"tina-io/docs/quick-edit-demo\".","type":"string","namespace":["page","blocks","features","features","media","video","src"]}],"namespace":["page","blocks","features","features","media","video"]},{"name":"code","label":"Code","ui":{"defaultItem":{"file":"index.js","code":"console.log(\"Hello World\")","language":"javascript","scale":1}},"fields":[{"name":"file","label":"Filename","type":"string","namespace":["page","blocks","features","features","media","code","file"]},{"name":"code","label":"Code","type":"string","ui":{"component":"textarea"},"namespace":["page","blocks","features","features","media","code","code"]},{"name":"language","label":"Language","type":"string","namespace":["page","blocks","features","features","media","code","language"]},{"name":"scale","label":"Text Scale","type":"number","namespace":["page","blocks","features","features","media","code","scale"]}],"namespace":["page","blocks","features","features","media","code"]}],"namespace":["page","blocks","features","features","media"]},{"name":"isReversed","label":"Text on Right?","description":"This is the position of the text, relative to the media. Off is left, and on is right.","type":"boolean","ui":{"component":"toggle"},"namespace":["page","blocks","features","features","isReversed"]},{"name":"imageBackground","label":"Image Background","description":"This will toggle the background and bordering of the media. This will only have visible changes if the media has a transparent background.","type":"boolean","ui":{"component":"toggle"},"namespace":["page","blocks","features","features","imageBackground"]}],"namespace":["page","blocks","features","features"],"searchable":true,"uid":false}],"namespace":["page","blocks","features"]},{"name":"flying","label":"Flying","ui":{"previewSrc":"/img/blocks/flying.png"},"fields":[{"name":"headline","label":"Headline","type":"string","namespace":["page","blocks","flying","headline"],"searchable":true,"uid":false},{"name":"text","label":"Text","ui":{"component":"textarea"},"type":"string","namespace":["page","blocks","flying","text"],"searchable":true,"uid":false},{"label":"Buttons","list":true,"name":"buttons","type":"object","ui":{"visualSelector":true},"templates":[{"label":"Actions","name":"actions","type":"object","list":true,"ui":{"defaultItem":{"variant":"default","label":"Secondary Action","icon":false,"size":"medium","url":"/"}},"fields":[{"name":"label","label":"Label","type":"string","namespace":["page","blocks","flying","buttons","actions","label"]},{"name":"icon","label":"Icon","type":"boolean","namespace":["page","blocks","flying","buttons","actions","icon"]},{"name":"variant","label":"Variant","type":"string","options":[{"value":"default","label":"Seafoam"},{"value":"blue","label":"Blue"},{"value":"orange","label":"Orange"},{"value":"white","label":"White"},{"value":"ghost","label":"Ghost"},{"value":"orangeWithBorder","label":"Orange with Border"},{"value":"ghostBlue","label":"Ghost Blue"}],"namespace":["page","blocks","flying","buttons","actions","variant"]},{"name":"size","label":"Size","type":"string","options":[{"value":"small","label":"Small"},{"value":"medium","label":"Medium"},{"value":"large","label":"Large"}],"namespace":["page","blocks","flying","buttons","actions","size"]},{"name":"url","label":"URL","type":"string","namespace":["page","blocks","flying","buttons","actions","url"]}],"namespace":["page","blocks","flying","buttons","actions"]},{"label":"Modal Button","name":"modalButton","type":"object","list":true,"ui":{"defaultItem":{"variant":"default","label":"Secondary Action","icon":false,"size":"medium"}},"fields":[{"name":"label","label":"Label","type":"string","namespace":["page","blocks","flying","buttons","modalButton","label"]},{"name":"icon","label":"Icon","type":"boolean","namespace":["page","blocks","flying","buttons","modalButton","icon"]},{"name":"color","label":"Color","type":"string","options":[{"value":"default","label":"Seafoam"},{"value":"blue","label":"Blue"},{"value":"orange","label":"Orange"},{"value":"white","label":"White"},{"value":"ghost","label":"Ghost"},{"value":"command","label":"Command"}],"namespace":["page","blocks","flying","buttons","modalButton","color"]},{"name":"size","label":"Size","type":"string","options":[{"value":"small","label":"Small"},{"value":"medium","label":"Medium"},{"value":"large","label":"Large"}],"namespace":["page","blocks","flying","buttons","modalButton","size"]},{"name":"modal","label":"Modal","type":"string","options":["BookDemo.tsx","EmailForm.tsx"],"namespace":["page","blocks","flying","buttons","modalButton","modal"]}],"namespace":["page","blocks","flying","buttons","modalButton"]},{"label":"Code Button","name":"codeButton","type":"object","list":true,"ui":{},"fields":[{"name":"label","label":"Label","type":"string","namespace":["page","blocks","flying","buttons","codeButton","label"]}],"namespace":["page","blocks","flying","buttons","codeButton"]}],"namespace":["page","blocks","flying","buttons"],"searchable":true,"uid":false}],"namespace":["page","blocks","flying"]},{"name":"pricing","label":"Pricing","ui":{"previewSrc":"/img/blocks/pricing.png","defaultItem":{"intro":"**No surprises. **Predictable pricing for every project. Complete control of your content, forever.\n\nTina’s source code is open-source. Your content lives in accessible formats right in your Git repository.\n"}},"fields":[{"name":"headline","label":"Headline","type":"string","namespace":["page","blocks","pricing","headline"],"searchable":true,"uid":false},{"name":"freeTier","label":"Free Tier","type":"object","fields":[{"name":"name","label":"Name","type":"string","namespace":["page","blocks","pricing","freeTier","name"]},{"name":"description","label":"Description","type":"rich-text","namespace":["page","blocks","pricing","freeTier","description"]},{"name":"price","label":"Monthly Price","type":"string","namespace":["page","blocks","pricing","freeTier","price"]},{"name":"annualPrice","label":"Annual Price","type":"string","namespace":["page","blocks","pricing","freeTier","annualPrice"]},{"name":"annualDescription","label":"Annual Description","type":"string","namespace":["page","blocks","pricing","freeTier","annualDescription"]},{"name":"interval","label":"Interval","type":"string","namespace":["page","blocks","pricing","freeTier","interval"]},{"name":"cardItem","label":"Card Item","type":"object","list":true,"ui":{},"fields":[{"name":"name","label":"Name","type":"string","namespace":["page","blocks","pricing","freeTier","cardItem","name"]},{"name":"icon","label":"Icon","type":"string","description":"Can't find the icon you want? ask a developer to add it","ui":{},"namespace":["page","blocks","pricing","freeTier","cardItem","icon"]},{"name":"description","label":"Description","type":"string","namespace":["page","blocks","pricing","freeTier","cardItem","description"]}],"namespace":["page","blocks","pricing","freeTier","cardItem"]},{"label":"Buttons","list":true,"name":"buttons","type":"object","ui":{"visualSelector":true},"templates":[{"label":"Actions","name":"actions","type":"object","list":true,"ui":{"defaultItem":{"variant":"default","label":"Secondary Action","icon":false,"size":"medium","url":"/"}},"fields":[{"name":"label","label":"Label","type":"string","namespace":["page","blocks","pricing","plans","buttons","actions","label"]},{"name":"icon","label":"Icon","type":"boolean","namespace":["page","blocks","pricing","plans","buttons","actions","icon"]},{"name":"variant","label":"Variant","type":"string","options":[{"value":"default","label":"Seafoam"},{"value":"blue","label":"Blue"},{"value":"orange","label":"Orange"},{"value":"white","label":"White"},{"value":"ghost","label":"Ghost"},{"value":"orangeWithBorder","label":"Orange with Border"},{"value":"ghostBlue","label":"Ghost Blue"}],"namespace":["page","blocks","pricing","plans","buttons","actions","variant"]},{"name":"size","label":"Size","type":"string","options":[{"value":"small","label":"Small"},{"value":"medium","label":"Medium"},{"value":"large","label":"Large"}],"namespace":["page","blocks","pricing","plans","buttons","actions","size"]},{"name":"url","label":"URL","type":"string","namespace":["page","blocks","pricing","plans","buttons","actions","url"]}],"namespace":["page","blocks","pricing","freeTier","buttons","actions"]},{"label":"Modal Button","name":"modalButton","type":"object","list":true,"ui":{"defaultItem":{"variant":"default","label":"Secondary Action","icon":false,"size":"medium"}},"fields":[{"name":"label","label":"Label","type":"string","namespace":["page","blocks","pricing","plans","buttons","modalButton","label"]},{"name":"icon","label":"Icon","type":"boolean","namespace":["page","blocks","pricing","plans","buttons","modalButton","icon"]},{"name":"color","label":"Color","type":"string","options":[{"value":"default","label":"Seafoam"},{"value":"blue","label":"Blue"},{"value":"orange","label":"Orange"},{"value":"white","label":"White"},{"value":"ghost","label":"Ghost"},{"value":"command","label":"Command"}],"namespace":["page","blocks","pricing","plans","buttons","modalButton","color"]},{"name":"size","label":"Size","type":"string","options":[{"value":"small","label":"Small"},{"value":"medium","label":"Medium"},{"value":"large","label":"Large"}],"namespace":["page","blocks","pricing","plans","buttons","modalButton","size"]},{"name":"modal","label":"Modal","type":"string","options":["BookDemo.tsx","EmailForm.tsx"],"namespace":["page","blocks","pricing","plans","buttons","modalButton","modal"]}],"namespace":["page","blocks","pricing","freeTier","buttons","modalButton"]},{"label":"Code Button","name":"codeButton","type":"object","list":true,"ui":{},"fields":[{"name":"label","label":"Label","type":"string","namespace":["page","blocks","pricing","plans","buttons","codeButton","label"]}],"namespace":["page","blocks","pricing","freeTier","buttons","codeButton"]}],"namespace":["page","blocks","pricing","freeTier","buttons"]},{"name":"isStarred","label":"Is Starred?","type":"boolean","description":"Enabling this will add a star to the pricing block","namespace":["page","blocks","pricing","freeTier","isStarred"]}],"namespace":["page","blocks","pricing","freeTier"],"searchable":true,"uid":false},{"name":"intro","label":"Intro Text","type":"rich-text","namespace":["page","blocks","pricing","intro"],"searchable":true,"parser":{"type":"markdown"},"uid":false},{"name":"pillSwitchVisibileText","label":"Pill Switch Visible Text","type":"rich-text","description":"this is the text displayed regardless of the switch","namespace":["page","blocks","pricing","pillSwitchVisibileText"],"searchable":true,"parser":{"type":"markdown"},"uid":false},{"name":"pillSwitchToggleText","label":"Pill Switch Toggle Text","type":"rich-text","description":"this is the text displayed depending on the toggle","namespace":["page","blocks","pricing","pillSwitchToggleText"],"searchable":true,"parser":{"type":"markdown"},"uid":false},{"name":"plans","label":"Pricing Plans","type":"object","list":true,"fields":[{"name":"name","label":"Name","type":"string","namespace":["page","blocks","pricing","plans","name"]},{"name":"description","label":"Description","type":"rich-text","namespace":["page","blocks","pricing","plans","description"]},{"name":"price","label":"Monthly Price","type":"string","namespace":["page","blocks","pricing","plans","price"]},{"name":"annualPrice","label":"Annual Price","type":"string","namespace":["page","blocks","pricing","plans","annualPrice"]},{"name":"annualDescription","label":"Annual Description","type":"string","namespace":["page","blocks","pricing","plans","annualDescription"]},{"name":"interval","label":"Interval","type":"string","namespace":["page","blocks","pricing","plans","interval"]},{"name":"cardItem","label":"Card Item","type":"object","list":true,"ui":{},"fields":[{"name":"name","label":"Name","type":"string","namespace":["page","blocks","pricing","plans","cardItem","name"]},{"name":"icon","label":"Icon","type":"string","description":"Can't find the icon you want? ask a developer to add it","ui":{},"namespace":["page","blocks","pricing","plans","cardItem","icon"]},{"name":"description","label":"Description","type":"string","namespace":["page","blocks","pricing","plans","cardItem","description"]}],"namespace":["page","blocks","pricing","plans","cardItem"]},{"label":"Buttons","list":true,"name":"buttons","type":"object","ui":{"visualSelector":true},"templates":[{"label":"Actions","name":"actions","type":"object","list":true,"ui":{"defaultItem":{"variant":"default","label":"Secondary Action","icon":false,"size":"medium","url":"/"}},"fields":[{"name":"label","label":"Label","type":"string","namespace":["page","blocks","pricing","plans","buttons","actions","label"]},{"name":"icon","label":"Icon","type":"boolean","namespace":["page","blocks","pricing","plans","buttons","actions","icon"]},{"name":"variant","label":"Variant","type":"string","options":[{"value":"default","label":"Seafoam"},{"value":"blue","label":"Blue"},{"value":"orange","label":"Orange"},{"value":"white","label":"White"},{"value":"ghost","label":"Ghost"},{"value":"orangeWithBorder","label":"Orange with Border"},{"value":"ghostBlue","label":"Ghost Blue"}],"namespace":["page","blocks","pricing","plans","buttons","actions","variant"]},{"name":"size","label":"Size","type":"string","options":[{"value":"small","label":"Small"},{"value":"medium","label":"Medium"},{"value":"large","label":"Large"}],"namespace":["page","blocks","pricing","plans","buttons","actions","size"]},{"name":"url","label":"URL","type":"string","namespace":["page","blocks","pricing","plans","buttons","actions","url"]}],"namespace":["page","blocks","pricing","plans","buttons","actions"]},{"label":"Modal Button","name":"modalButton","type":"object","list":true,"ui":{"defaultItem":{"variant":"default","label":"Secondary Action","icon":false,"size":"medium"}},"fields":[{"name":"label","label":"Label","type":"string","namespace":["page","blocks","pricing","plans","buttons","modalButton","label"]},{"name":"icon","label":"Icon","type":"boolean","namespace":["page","blocks","pricing","plans","buttons","modalButton","icon"]},{"name":"color","label":"Color","type":"string","options":[{"value":"default","label":"Seafoam"},{"value":"blue","label":"Blue"},{"value":"orange","label":"Orange"},{"value":"white","label":"White"},{"value":"ghost","label":"Ghost"},{"value":"command","label":"Command"}],"namespace":["page","blocks","pricing","plans","buttons","modalButton","color"]},{"name":"size","label":"Size","type":"string","options":[{"value":"small","label":"Small"},{"value":"medium","label":"Medium"},{"value":"large","label":"Large"}],"namespace":["page","blocks","pricing","plans","buttons","modalButton","size"]},{"name":"modal","label":"Modal","type":"string","options":["BookDemo.tsx","EmailForm.tsx"],"namespace":["page","blocks","pricing","plans","buttons","modalButton","modal"]}],"namespace":["page","blocks","pricing","plans","buttons","modalButton"]},{"label":"Code Button","name":"codeButton","type":"object","list":true,"ui":{},"fields":[{"name":"label","label":"Label","type":"string","namespace":["page","blocks","pricing","plans","buttons","codeButton","label"]}],"namespace":["page","blocks","pricing","plans","buttons","codeButton"]}],"namespace":["page","blocks","pricing","plans","buttons"]},{"name":"isStarred","label":"Is Starred?","type":"boolean","description":"Enabling this will add a star to the pricing block","namespace":["page","blocks","pricing","plans","isStarred"]}],"ui":{"defaultItem":{"name":"Pricing Tier","price":"$99","interval":"month"}},"namespace":["page","blocks","pricing","plans"],"searchable":true,"uid":false}],"namespace":["page","blocks","pricing"]},{"label":"FAQ","name":"faq","ui":{"previewSrc":"/img/blocks/faq.png","defaultItem":{"title":"Frequently Asked Questions","questions":[{"question":"What is Tina?","answer":"Tina is a Git-backed headless content management system that enables developers and content creators to collaborate seamlessly. With Tina, developers can create a custom visual editing experience that is perfectly tailored to their site.\n"}],"color":"seafoam"}},"fields":[{"name":"title","label":"Title","type":"string","namespace":["page","blocks","faq","title"],"searchable":true,"uid":false},{"name":"intro","label":"Introduction","type":"rich-text","namespace":["page","blocks","faq","intro"],"searchable":true,"parser":{"type":"markdown"},"uid":false},{"name":"questions","label":"Questions","type":"object","list":true,"fields":[{"name":"question","label":"Question","type":"string","namespace":["page","blocks","faq","questions","question"]},{"name":"answer","label":"Answer","type":"rich-text","namespace":["page","blocks","faq","questions","answer"]}],"namespace":["page","blocks","faq","questions"],"searchable":true,"uid":false},{"name":"color","label":"Color","type":"string","options":[{"label":"Gradient","value":"gradient"},{"label":"White","value":"white"}],"namespace":["page","blocks","faq","color"],"searchable":true,"uid":false}],"namespace":["page","blocks","faq"]},{"label":"Content","name":"content","ui":{"previewSrc":"/img/blocks/content.png"},"fields":[{"name":"options","label":"Options","type":"object","fields":[{"name":"narrow","label":"Narrow","type":"boolean","namespace":["page","blocks","content","options","narrow"]},{"name":"color","label":"Color","type":"string","options":[{"label":"Seafoam","value":"seafoam"},{"label":"White","value":"white"}],"namespace":["page","blocks","content","options","color"]},{"name":"align","label":"Align Content","type":"string","options":[{"label":"Left","value":"left"},{"label":"Center","value":"center"},{"label":"Right","value":"right"}],"namespace":["page","blocks","content","options","align"]}],"namespace":["page","blocks","content","options"],"searchable":true,"uid":false},{"name":"content","label":"Content","type":"rich-text","parser":{"type":"mdx"},"templates":[{"label":"Actions","name":"actions","type":"object","list":true,"ui":{"defaultItem":{"variant":"default","label":"Secondary Action","icon":false,"size":"medium","url":"/"}},"fields":[{"name":"label","label":"Label","type":"string","namespace":["page","blocks","content","content","actions","label"]},{"name":"icon","label":"Icon","type":"boolean","namespace":["page","blocks","content","content","actions","icon"]},{"name":"variant","label":"Variant","type":"string","options":[{"value":"default","label":"Seafoam"},{"value":"blue","label":"Blue"},{"value":"orange","label":"Orange"},{"value":"white","label":"White"},{"value":"ghost","label":"Ghost"},{"value":"orangeWithBorder","label":"Orange with Border"},{"value":"ghostBlue","label":"Ghost Blue"}],"namespace":["page","blocks","content","content","actions","variant"]},{"name":"size","label":"Size","type":"string","options":[{"value":"small","label":"Small"},{"value":"medium","label":"Medium"},{"value":"large","label":"Large"}],"namespace":["page","blocks","content","content","actions","size"]},{"name":"url","label":"URL","type":"string","namespace":["page","blocks","content","content","actions","url"]}],"namespace":["page","blocks","content","content","actions"]},{"name":"social","label":"Social Links","ui":{"defaultItem":{"tina":"https://github.com/tinacms/tinacms/discussions","discord":"https://discord.com/invite/zumN63Ybpf","github":"https://github.com/tinacms/tinacms","twitter":"https://twitter.com/tinacms"}},"fields":[{"type":"string","name":"tina","label":"Tina","namespace":["page","blocks","content","content","social","tina"]},{"type":"string","name":"discord","label":"Discord","namespace":["page","blocks","content","content","social","discord"]},{"type":"string","name":"github","label":"GitHub","namespace":["page","blocks","content","content","social","github"]},{"type":"string","name":"twitter","label":"Twitter","namespace":["page","blocks","content","content","social","twitter"]}],"namespace":["page","blocks","content","content","social"]},{"name":"newsletter","label":"Newsletter Signup","ui":{"defaultItem":{"style":"default"}},"fields":[{"name":"style","label":"Style","type":"string","options":[{"label":"Default","value":"default"},{"label":"Small","value":"small"}],"namespace":["page","blocks","content","content","newsletter","style"]}],"namespace":["page","blocks","content","content","newsletter"]}],"namespace":["page","blocks","content","content"],"searchable":true}],"namespace":["page","blocks","content"]},{"label":"Showcase","name":"showcase","ui":{"previewSrc":"/img/blocks/features.png"},"fields":[{"name":"items","label":"Showcase Items","type":"object","list":true,"ui":{},"fields":[{"name":"headline","label":"Headline","type":"string","namespace":["page","blocks","showcase","items","headline"]},{"name":"text","label":"Text","ui":{"component":"textarea"},"type":"string","namespace":["page","blocks","showcase","items","text"]},{"name":"url","label":"URL","type":"string","namespace":["page","blocks","showcase","items","url"]},{"name":"media","label":"Media","type":"object","fields":[{"name":"src","label":"Image Source","type":"image","namespace":["page","blocks","showcase","items","media","src"]}],"namespace":["page","blocks","showcase","items","media"]}],"namespace":["page","blocks","showcase","items"],"searchable":true,"uid":false}],"namespace":["page","blocks","showcase"]},{"label":"Columns","name":"columns","ui":{"previewSrc":"/img/blocks/columns.png"},"fields":[{"name":"options","label":"Options","type":"object","fields":[{"name":"columns","label":"Column Sizes","type":"string","options":[{"label":"Default","value":"default"},{"label":"Not Default","value":"notDefault"}],"namespace":["page","blocks","columns","options","columns"]},{"name":"narrow","label":"Narrow","type":"boolean","namespace":["page","blocks","columns","options","narrow"]},{"name":"color","label":"Color","type":"string","options":[{"label":"Seafoam","value":"seafoam"},{"label":"White","value":"white"}],"namespace":["page","blocks","columns","options","color"]},{"name":"align","label":"Align Content","type":"string","options":[{"label":"Left","value":"left"},{"label":"Center","value":"center"},{"label":"Right","value":"right"}],"namespace":["page","blocks","columns","options","align"]}],"namespace":["page","blocks","columns","options"],"searchable":true,"uid":false},{"name":"columnOne","label":"Column One","type":"rich-text","parser":{"type":"mdx"},"templates":[{"label":"Actions","name":"actions","type":"object","list":true,"ui":{"defaultItem":{"variant":"default","label":"Secondary Action","icon":false,"size":"medium","url":"/"}},"fields":[{"name":"label","label":"Label","type":"string","namespace":["page","blocks","columns","columnOne","actions","label"]},{"name":"icon","label":"Icon","type":"boolean","namespace":["page","blocks","columns","columnOne","actions","icon"]},{"name":"variant","label":"Variant","type":"string","options":[{"value":"default","label":"Seafoam"},{"value":"blue","label":"Blue"},{"value":"orange","label":"Orange"},{"value":"white","label":"White"},{"value":"ghost","label":"Ghost"},{"value":"orangeWithBorder","label":"Orange with Border"},{"value":"ghostBlue","label":"Ghost Blue"}],"namespace":["page","blocks","columns","columnOne","actions","variant"]},{"name":"size","label":"Size","type":"string","options":[{"value":"small","label":"Small"},{"value":"medium","label":"Medium"},{"value":"large","label":"Large"}],"namespace":["page","blocks","columns","columnOne","actions","size"]},{"name":"url","label":"URL","type":"string","namespace":["page","blocks","columns","columnOne","actions","url"]}],"namespace":["page","blocks","columns","columnOne","actions"]},{"name":"social","label":"Social Links","ui":{"defaultItem":{"tina":"https://github.com/tinacms/tinacms/discussions","discord":"https://discord.com/invite/zumN63Ybpf","github":"https://github.com/tinacms/tinacms","twitter":"https://twitter.com/tinacms"}},"fields":[{"type":"string","name":"tina","label":"Tina","namespace":["page","blocks","columns","columnOne","social","tina"]},{"type":"string","name":"discord","label":"Discord","namespace":["page","blocks","columns","columnOne","social","discord"]},{"type":"string","name":"github","label":"GitHub","namespace":["page","blocks","columns","columnOne","social","github"]},{"type":"string","name":"twitter","label":"Twitter","namespace":["page","blocks","columns","columnOne","social","twitter"]}],"namespace":["page","blocks","columns","columnOne","social"]},{"name":"newsletter","label":"Newsletter Signup","ui":{"defaultItem":{"style":"default"}},"fields":[{"name":"style","label":"Style","type":"string","options":[{"label":"Default","value":"default"},{"label":"Small","value":"small"}],"namespace":["page","blocks","columns","columnOne","newsletter","style"]}],"namespace":["page","blocks","columns","columnOne","newsletter"]}],"namespace":["page","blocks","columns","columnOne"],"searchable":true},{"name":"columnTwo","label":"Column Two","type":"rich-text","parser":{"type":"mdx"},"templates":[{"label":"Actions","name":"actions","type":"object","list":true,"ui":{"defaultItem":{"variant":"default","label":"Secondary Action","icon":false,"size":"medium","url":"/"}},"fields":[{"name":"label","label":"Label","type":"string","namespace":["page","blocks","columns","columnTwo","actions","label"]},{"name":"icon","label":"Icon","type":"boolean","namespace":["page","blocks","columns","columnTwo","actions","icon"]},{"name":"variant","label":"Variant","type":"string","options":[{"value":"default","label":"Seafoam"},{"value":"blue","label":"Blue"},{"value":"orange","label":"Orange"},{"value":"white","label":"White"},{"value":"ghost","label":"Ghost"},{"value":"orangeWithBorder","label":"Orange with Border"},{"value":"ghostBlue","label":"Ghost Blue"}],"namespace":["page","blocks","columns","columnTwo","actions","variant"]},{"name":"size","label":"Size","type":"string","options":[{"value":"small","label":"Small"},{"value":"medium","label":"Medium"},{"value":"large","label":"Large"}],"namespace":["page","blocks","columns","columnTwo","actions","size"]},{"name":"url","label":"URL","type":"string","namespace":["page","blocks","columns","columnTwo","actions","url"]}],"namespace":["page","blocks","columns","columnTwo","actions"]},{"name":"social","label":"Social Links","ui":{"defaultItem":{"tina":"https://github.com/tinacms/tinacms/discussions","discord":"https://discord.com/invite/zumN63Ybpf","github":"https://github.com/tinacms/tinacms","twitter":"https://twitter.com/tinacms"}},"fields":[{"type":"string","name":"tina","label":"Tina","namespace":["page","blocks","columns","columnTwo","social","tina"]},{"type":"string","name":"discord","label":"Discord","namespace":["page","blocks","columns","columnTwo","social","discord"]},{"type":"string","name":"github","label":"GitHub","namespace":["page","blocks","columns","columnTwo","social","github"]},{"type":"string","name":"twitter","label":"Twitter","namespace":["page","blocks","columns","columnTwo","social","twitter"]}],"namespace":["page","blocks","columns","columnTwo","social"]},{"name":"newsletter","label":"Newsletter Signup","ui":{"defaultItem":{"style":"default"}},"fields":[{"name":"style","label":"Style","type":"string","options":[{"label":"Default","value":"default"},{"label":"Small","value":"small"}],"namespace":["page","blocks","columns","columnTwo","newsletter","style"]}],"namespace":["page","blocks","columns","columnTwo","newsletter"]}],"namespace":["page","blocks","columns","columnTwo"],"searchable":true}],"namespace":["page","blocks","columns"]},{"label":"Story","name":"story","fields":[{"label":"Title","name":"title","type":"string","namespace":["page","blocks","story","title"],"searchable":true,"uid":false}],"namespace":["page","blocks","story"]},{"label":"Feature Grid","name":"featureGrid","ui":{"previewSrc":"/img/blocks/feature-grid.png"},"fields":[{"name":"items","label":"Feature Items","type":"object","list":true,"ui":{},"fields":[{"name":"headline","label":"Headline","type":"string","namespace":["page","blocks","featureGrid","items","headline"]},{"name":"text","label":"Text","ui":{"component":"textarea"},"type":"string","namespace":["page","blocks","featureGrid","items","text"]},{"name":"url","label":"URL","type":"string","namespace":["page","blocks","featureGrid","items","url"]},{"label":"Actions","name":"actions","type":"object","list":true,"ui":{"defaultItem":{"variant":"default","label":"Secondary Action","icon":false,"size":"medium","url":"/"}},"fields":[{"name":"label","label":"Label","type":"string","namespace":["page","blocks","featureGrid","items","actions","label"]},{"name":"icon","label":"Icon","type":"boolean","namespace":["page","blocks","featureGrid","items","actions","icon"]},{"name":"variant","label":"Variant","type":"string","options":[{"value":"default","label":"Seafoam"},{"value":"blue","label":"Blue"},{"value":"orange","label":"Orange"},{"value":"white","label":"White"},{"value":"ghost","label":"Ghost"},{"value":"orangeWithBorder","label":"Orange with Border"},{"value":"ghostBlue","label":"Ghost Blue"}],"namespace":["page","blocks","featureGrid","items","actions","variant"]},{"name":"size","label":"Size","type":"string","options":[{"value":"small","label":"Small"},{"value":"medium","label":"Medium"},{"value":"large","label":"Large"}],"namespace":["page","blocks","featureGrid","items","actions","size"]},{"name":"url","label":"URL","type":"string","namespace":["page","blocks","featureGrid","items","actions","url"]}],"namespace":["page","blocks","featureGrid","items","actions"]}],"namespace":["page","blocks","featureGrid","items"],"searchable":true,"uid":false}],"namespace":["page","blocks","featureGrid"]},{"label":"Logo Grid","name":"logoGrid","ui":{"previewSrc":"/img/blocks/logo-grid.png"},"fields":[{"label":"Title","name":"title","type":"string","namespace":["page","blocks","logoGrid","title"],"searchable":true,"uid":false},{"label":"Link","name":"link","type":"string","namespace":["page","blocks","logoGrid","link"],"searchable":true,"uid":false},{"name":"items","label":"Logos","type":"object","list":true,"ui":{},"fields":[{"name":"name","label":"Name","type":"string","namespace":["page","blocks","logoGrid","items","name"]},{"name":"link","label":"Link","type":"string","description":"The URL to link to when the logo is clicked. Should be either (1) an internal link (e.g. /showcase#unity) or (2) an external link (e.g. https://ndcconferences.com/).","namespace":["page","blocks","logoGrid","items","link"]},{"name":"logo","label":"Logo Image","type":"image","namespace":["page","blocks","logoGrid","items","logo"]},{"name":"size","label":"Size","type":"number","namespace":["page","blocks","logoGrid","items","size"]}],"namespace":["page","blocks","logoGrid","items"],"searchable":true,"uid":false}],"namespace":["page","blocks","logoGrid"]},{"label":"Roadmap Grid","name":"roadmapGrid","ui":{"previewSrc":"/img/blocks/roadmap.png"},"fields":[{"name":"headline","label":"Headline","type":"string","namespace":["page","blocks","roadmapGrid","headline"],"searchable":true,"uid":false},{"name":"items","label":"Roadmap Items","type":"object","list":true,"ui":{},"fields":[{"name":"headline","label":"Headline","type":"string","namespace":["page","blocks","roadmapGrid","items","headline"]},{"name":"status","label":"Status","type":"string","namespace":["page","blocks","roadmapGrid","items","status"]},{"name":"content","label":"Content","type":"rich-text","namespace":["page","blocks","roadmapGrid","items","content"]},{"label":"Actions","name":"actions","type":"object","list":true,"ui":{"defaultItem":{"variant":"default","label":"Secondary Action","icon":false,"size":"medium","url":"/"}},"fields":[{"name":"label","label":"Label","type":"string","namespace":["page","blocks","roadmapGrid","items","actions","label"]},{"name":"icon","label":"Icon","type":"boolean","namespace":["page","blocks","roadmapGrid","items","actions","icon"]},{"name":"variant","label":"Variant","type":"string","options":[{"value":"default","label":"Seafoam"},{"value":"blue","label":"Blue"},{"value":"orange","label":"Orange"},{"value":"white","label":"White"},{"value":"ghost","label":"Ghost"},{"value":"orangeWithBorder","label":"Orange with Border"},{"value":"ghostBlue","label":"Ghost Blue"}],"namespace":["page","blocks","roadmapGrid","items","actions","variant"]},{"name":"size","label":"Size","type":"string","options":[{"value":"small","label":"Small"},{"value":"medium","label":"Medium"},{"value":"large","label":"Large"}],"namespace":["page","blocks","roadmapGrid","items","actions","size"]},{"name":"url","label":"URL","type":"string","namespace":["page","blocks","roadmapGrid","items","actions","url"]}],"namespace":["page","blocks","roadmapGrid","items","actions"]}],"namespace":["page","blocks","roadmapGrid","items"],"searchable":true,"uid":false},{"name":"options","label":"Options","type":"object","fields":[{"name":"paddingTop","label":"Top Padding","type":"boolean","namespace":["page","blocks","roadmapGrid","options","paddingTop"]},{"name":"paddingBottom","label":"Bottom Padding","type":"boolean","namespace":["page","blocks","roadmapGrid","options","paddingBottom"]}],"namespace":["page","blocks","roadmapGrid","options"],"searchable":true,"uid":false}],"namespace":["page","blocks","roadmapGrid"]},{"name":"recentPosts","label":"Recent Posts","ui":{"previewSrc":"/img/blocks/recent-posts.png"},"fields":[{"name":"title","label":"Title","type":"string","namespace":["page","blocks","recentPosts","title"],"searchable":true,"uid":false}],"namespace":["page","blocks","recentPosts"]},{"label":"Testimonials","name":"testimonials","ui":{"previewSrc":"/img/blocks/testimonials.png"},"fields":[{"name":"testimonials","label":"Testimonials","type":"object","list":true,"ui":{},"fields":[{"name":"name","label":"Name","type":"string","namespace":["page","blocks","testimonials","testimonials","name"]},{"name":"username","label":"Username","type":"string","namespace":["page","blocks","testimonials","testimonials","username"]},{"name":"avatar","label":"Avatar","type":"image","namespace":["page","blocks","testimonials","testimonials","avatar"]},{"name":"date","label":"Date","type":"datetime","ui":{"dateFormat":"MMMM DD YYYY"},"namespace":["page","blocks","testimonials","testimonials","date"]},{"name":"testimonial","label":"Testimonial","type":"rich-text","namespace":["page","blocks","testimonials","testimonials","testimonial"]},{"name":"link","label":"Link","type":"string","namespace":["page","blocks","testimonials","testimonials","link"]}],"namespace":["page","blocks","testimonials","testimonials"],"searchable":true,"uid":false}],"namespace":["page","blocks","testimonials"]},{"label":"Quote","name":"quote","ui":{},"fields":[{"label":"Title","name":"title2","ui":{"component":"textarea"},"type":"string","namespace":["page","blocks","quote","title2"],"searchable":true,"uid":false},{"label":"Sub Text","name":"subtext","ui":{"component":"textarea"},"type":"string","namespace":["page","blocks","quote","subtext"],"searchable":true,"uid":false},{"label":"logo","name":"logo","type":"image","namespace":["page","blocks","quote","logo"],"searchable":false,"uid":false}],"namespace":["page","blocks","quote"]},{"label":"Events","name":"events","ui":{"previewSrc":"/img/blocks/events.png"},"fields":[{"name":"title","label":"Title","type":"string","namespace":["page","blocks","events","title"],"searchable":true,"uid":false},{"name":"cardItems","label":"Card Items","type":"object","list":true,"ui":{},"fields":[{"name":"headline","label":"Headline","type":"string","namespace":["page","blocks","events","cardItems","headline"]},{"name":"startDate","label":"Start Date","type":"datetime","description":"Enter date in the timezone of the event.","ui":{"utc":true},"namespace":["page","blocks","events","cardItems","startDate"]},{"name":"startTime","label":"Start Time","type":"number","description":"Enter start time in the timezone of the event. (e.g. if the event starts at 9:00am, enter '9')","ui":{"step":1},"namespace":["page","blocks","events","cardItems","startTime"]},{"name":"endDate","label":"End Date","type":"datetime","description":"Note this field is not mandatory. Leave blank for a 1 day event. Enter date in the timezone of the event.","ui":{"utc":true},"namespace":["page","blocks","events","cardItems","endDate"]},{"name":"endTime","label":"End Time","type":"string","description":"This is locked to midnight on the end date of the event.","ui":{},"namespace":["page","blocks","events","cardItems","endTime"]},{"name":"timezone","label":"Timezone","type":"number","description":"Please select the timezone the event is being held in. GMT and UTC are analagous.","ui":{"component":"select","options":[{"value":14,"label":"GMT +14:00"},{"value":13.5,"label":"GMT +13:30"},{"value":13,"label":"GMT +13:00"},{"value":12.5,"label":"GMT +12:30"},{"value":12,"label":"GMT +12:00"},{"value":11.5,"label":"GMT +11:30"},{"value":11,"label":"GMT +11:00"},{"value":10.5,"label":"GMT +10:30"},{"value":10,"label":"GMT +10:00"},{"value":9.5,"label":"GMT +9:30"},{"value":9,"label":"GMT +9:00"},{"value":8.5,"label":"GMT +8:30"},{"value":8,"label":"GMT +8:00"},{"value":7.5,"label":"GMT +7:30"},{"value":7,"label":"GMT +7:00"},{"value":6.5,"label":"GMT +6:30"},{"value":6,"label":"GMT +6:00"},{"value":5.5,"label":"GMT +5:30"},{"value":5,"label":"GMT +5:00"},{"value":4.5,"label":"GMT +4:30"},{"value":4,"label":"GMT +4:00"},{"value":3.5,"label":"GMT +3:30"},{"value":3,"label":"GMT +3:00"},{"value":2.5,"label":"GMT +2:30"},{"value":2,"label":"GMT +2:00"},{"value":1.5,"label":"GMT +1:30"},{"value":1,"label":"GMT +1:00"},{"value":0.5,"label":"GMT +0:30"},{"value":0,"label":"GMT +0:00"},{"value":-0.5,"label":"GMT -0:30"},{"value":-1,"label":"GMT -1:00"},{"value":-1.5,"label":"GMT -1:30"},{"value":-2,"label":"GMT -2:00"},{"value":-2.5,"label":"GMT -2:30"},{"value":-3,"label":"GMT -3:00"},{"value":-3.5,"label":"GMT -3:30"},{"value":-4,"label":"GMT -4:00"},{"value":-4.5,"label":"GMT -4:30"},{"value":-5,"label":"GMT -5:00"},{"value":-5.5,"label":"GMT -5:30"},{"value":-6,"label":"GMT -6:00"},{"value":-6.5,"label":"GMT -6:30"},{"value":-7,"label":"GMT -7:00"},{"value":-7.5,"label":"GMT -7:30"},{"value":-8,"label":"GMT -8:00"},{"value":-8.5,"label":"GMT -8:30"},{"value":-9,"label":"GMT -9:00"},{"value":-9.5,"label":"GMT -9:30"},{"value":-10,"label":"GMT -10:00"},{"value":-10.5,"label":"GMT -10:30"},{"value":-11,"label":"GMT -11:00"},{"value":-11.5,"label":"GMT -11:30"},{"value":-12,"label":"GMT -12:00"}]},"namespace":["page","blocks","events","cardItems","timezone"]},{"name":"location","label":"Location","type":"string","namespace":["page","blocks","events","cardItems","location"]},{"name":"image","label":"Image","type":"image","namespace":["page","blocks","events","cardItems","image"]},{"name":"link","label":"URL","type":"string","namespace":["page","blocks","events","cardItems","link"]},{"name":"markerLAT","label":"Marker Latitude","type":"number","description":"Note this field corresponds to the Latitude position of the marker on the globe.","namespace":["page","blocks","events","cardItems","markerLAT"]},{"name":"markerLONG","label":"Marker Longitude","type":"number","description":"Note this field corresponds to the Longitude position of the marker on the globe.","namespace":["page","blocks","events","cardItems","markerLONG"]}],"namespace":["page","blocks","events","cardItems"],"searchable":true,"uid":false}],"namespace":["page","blocks","events"]},{"label":"Compare Box","name":"CompareBox","fields":[{"name":"criteriaItems","label":"Criteria","type":"object","list":true,"ui":{},"fields":[{"name":"criteria","label":"Criteria","type":"string","namespace":["page","blocks","CompareBox","criteriaItems","criteria"]},{"name":"description","label":"Description","ui":{"component":"textarea"},"type":"string","description":"The text inside the description will NOT be displayed anywhere, this is just to elaborate on the criteria itself for our own users.","namespace":["page","blocks","CompareBox","criteriaItems","description"]}],"namespace":["page","blocks","CompareBox","criteriaItems"],"searchable":true,"uid":false},{"name":"companies","label":"Company","type":"object","list":true,"ui":{},"fields":[{"name":"headline","label":"Headline","type":"string","namespace":["page","blocks","CompareBox","companies","headline"]},{"name":"logoColour","label":"Logo Link (Colour)","type":"string","namespace":["page","blocks","CompareBox","companies","logoColour"]},{"name":"logoWhite","label":"Logo Link (White)","type":"string","namespace":["page","blocks","CompareBox","companies","logoWhite"]},{"name":"active","label":"Active","type":"boolean","description":"Toggle to highlight which company is BY DEFAULT active","namespace":["page","blocks","CompareBox","companies","active"]},{"name":"isHidden","label":"Hidden","type":"boolean","description":"Toggle will hide the company item from the list of clickable companies - it will also ensure it cannot be turned off.","namespace":["page","blocks","CompareBox","companies","isHidden"]},{"name":"backgroundColor","label":"Background Color","type":"string","ui":{"component":"color"},"description":"Choose a background color for the company","namespace":["page","blocks","CompareBox","companies","backgroundColor"]},{"name":"criteria1","label":"Criteria 1","type":"boolean","namespace":["page","blocks","CompareBox","companies","criteria1"]},{"name":"criteria2","label":"Criteria 2","type":"boolean","namespace":["page","blocks","CompareBox","companies","criteria2"]},{"name":"criteria3","label":"Criteria 3","type":"boolean","namespace":["page","blocks","CompareBox","companies","criteria3"]},{"name":"criteria4","label":"Criteria 4","type":"boolean","namespace":["page","blocks","CompareBox","companies","criteria4"]},{"name":"criteria5","label":"Criteria 5","type":"boolean","namespace":["page","blocks","CompareBox","companies","criteria5"]},{"name":"criteria6","label":"Criteria 6","type":"boolean","namespace":["page","blocks","CompareBox","companies","criteria6"]},{"name":"criteria7","label":"Criteria 7","type":"boolean","namespace":["page","blocks","CompareBox","companies","criteria7"]},{"name":"criteria8","label":"Criteria 8","type":"boolean","namespace":["page","blocks","CompareBox","companies","criteria8"]},{"name":"criteria9","label":"Criteria 9","type":"boolean","namespace":["page","blocks","CompareBox","companies","criteria9"]}],"namespace":["page","blocks","CompareBox","companies"],"searchable":true,"uid":false}],"namespace":["page","blocks","CompareBox"]},{"label":"Booking","name":"booking","fields":[{"name":"title","label":"Title","type":"string","namespace":["page","blocks","booking","title"],"searchable":true,"uid":false},{"name":"description","label":"Description","type":"string","namespace":["page","blocks","booking","description"],"searchable":true,"uid":false}],"namespace":["page","blocks","booking"]},{"label":"Media Component","name":"mediaComponent","fields":[{"name":"headline","label":"Headline","type":"string","namespace":["page","blocks","mediaComponent","headline"],"searchable":true,"uid":false},{"name":"mediaItem","label":"Media Item","type":"object","list":true,"templates":[{"label":"Cloudinary Media Component","name":"cloudinaryMediaComponent","fields":[{"name":"media","label":"media","type":"image","namespace":["page","blocks","mediaComponent","mediaItem","cloudinaryMediaComponent","media"]},{"name":"thumbnail","label":"thumbnail","type":"image","namespace":["page","blocks","mediaComponent","mediaItem","cloudinaryMediaComponent","thumbnail"]}],"namespace":["page","blocks","mediaComponent","mediaItem","cloudinaryMediaComponent"]},{"label":"Youtube Media","name":"youtubeMedia","fields":[{"name":"embedUrl","label":"YouTube Embed Url","type":"string","description":"⚠️ This will only work for YouTube embed urls, they look like https://www.youtube.com/embed/{{ ID }}","namespace":["page","blocks","mediaComponent","mediaItem","youtubeMedia","embedUrl"]}],"namespace":["page","blocks","mediaComponent","mediaItem","youtubeMedia"]}],"namespace":["page","blocks","mediaComponent","mediaItem"],"searchable":true,"uid":false}],"namespace":["page","blocks","mediaComponent"]},{"label":"Text and Media Column Component","name":"textMediaColumnComponent","fields":[{"name":"isVideoOnLeft","label":"Video on Left?","type":"boolean","ui":{"component":"toggle"},"namespace":["page","blocks","textMediaColumnComponent","isVideoOnLeft"],"searchable":true,"uid":false},{"name":"body","label":"Body","type":"rich-text","isBody":true,"namespace":["page","blocks","textMediaColumnComponent","body"],"searchable":true,"parser":{"type":"markdown"},"uid":false},{"name":"mediaColumnItem","label":"Media Item","type":"object","list":true,"templates":[{"label":"Cloudinary Media Component","name":"cloudinaryMediaComponent","fields":[{"name":"media","label":"media","type":"image","namespace":["page","blocks","textMediaColumnComponent","mediaColumnItem","cloudinaryMediaComponent","media"]},{"name":"thumbnail","label":"thumbnail","type":"image","namespace":["page","blocks","textMediaColumnComponent","mediaColumnItem","cloudinaryMediaComponent","thumbnail"]}],"namespace":["page","blocks","textMediaColumnComponent","mediaColumnItem","cloudinaryMediaComponent"]},{"label":"Youtube Media","name":"youtubeMedia","fields":[{"name":"embedUrl","label":"YouTube Embed Url","type":"string","description":"⚠️ This will only work for YouTube embed urls, they look like https://www.youtube.com/embed/{{ ID }}","namespace":["page","blocks","textMediaColumnComponent","mediaColumnItem","youtubeMedia","embedUrl"]}],"namespace":["page","blocks","textMediaColumnComponent","mediaColumnItem","youtubeMedia"]}],"namespace":["page","blocks","textMediaColumnComponent","mediaColumnItem"],"searchable":true,"uid":false}],"namespace":["page","blocks","textMediaColumnComponent"]},{"label":"Tina Banner","name":"tinaBanner","fields":[{"name":"backdrop","label":"Backdrop","type":"image","namespace":["page","blocks","tinaBanner","backdrop"],"searchable":false,"uid":false},{"name":"leftFig","label":"Left Figure","type":"image","namespace":["page","blocks","tinaBanner","leftFig"],"searchable":false,"uid":false},{"name":"rightFig","label":"Right Figure","type":"image","namespace":["page","blocks","tinaBanner","rightFig"],"searchable":false,"uid":false},{"name":"leftScreen","label":"Left Screen","type":"image","namespace":["page","blocks","tinaBanner","leftScreen"],"searchable":false,"uid":false},{"name":"rightScreen","label":"Right Screen","type":"image","namespace":["page","blocks","tinaBanner","rightScreen"],"searchable":false,"uid":false},{"name":"centerFig","label":"Center Figure","type":"image","namespace":["page","blocks","tinaBanner","centerFig"],"searchable":false,"uid":false},{"name":"llama","label":"Llama","type":"image","namespace":["page","blocks","tinaBanner","llama"],"searchable":false,"uid":false}],"namespace":["page","blocks","tinaBanner"]},{"label":"Highlights Section","name":"highlightsSection","fields":[{"name":"highlightColumn","label":"Highlight Column","type":"object","list":true,"ui":{"max":3},"fields":[{"name":"heading","label":"Heading","type":"string","namespace":["page","blocks","highlightsSection","highlightColumn","heading"]},{"name":"highlights","label":"Highlights","type":"object","list":true,"fields":[{"name":"name","label":"Name","type":"string","namespace":["page","blocks","highlightsSection","highlightColumn","highlights","name"]},{"name":"icon","label":"Icon","type":"string","description":"Can't find the icon you want? ask a developer to add it","ui":{},"namespace":["page","blocks","highlightsSection","highlightColumn","highlights","icon"]}],"ui":{},"namespace":["page","blocks","highlightsSection","highlightColumn","highlights"]}],"namespace":["page","blocks","highlightsSection","highlightColumn"],"searchable":true,"uid":false}],"namespace":["page","blocks","highlightsSection"]},{"label":"Spacer","name":"spacer","fields":[{"name":"spacingPx","label":"Spacing Value","description":"This is the spacing in pixels provided by the spacer.","type":"number","namespace":["page","blocks","spacer","spacingPx"],"searchable":true,"uid":false},{"name":"spacingPxMobile","label":"Mobile Spacing Value","description":"This is the spacing in pixels provided by the spacer on small screens.","type":"number","namespace":["page","blocks","spacer","spacingPxMobile"],"searchable":true,"uid":false}],"namespace":["page","blocks","spacer"]},{"label":"Carousel Feature","name":"carouselFeature","ui":{"previewSrc":"/img/blocks/feature-grid.png"},"fields":[{"name":"blockHeadline","label":"Block Headline","type":"string","namespace":["page","blocks","carouselFeature","blockHeadline"],"searchable":true,"uid":false},{"name":"items","label":"Carousel Feature","type":"object","list":true,"ui":{},"fields":[{"name":"headline","label":"Headline","type":"string","namespace":["page","blocks","carouselFeature","items","headline"]},{"name":"text","label":"Text","ui":{"component":"textarea"},"type":"string","namespace":["page","blocks","carouselFeature","items","text"]},{"name":"icon2","label":"Icon","type":"string","description":"Can't find the icon you want? ask a developer to add it","ui":{},"namespace":["page","blocks","carouselFeature","items","icon2"]},{"name":"videoSrc","label":"Video Source","type":"image","namespace":["page","blocks","carouselFeature","items","videoSrc"]},{"name":"button","label":"Button","type":"object","fields":[{"name":"label","label":"Label","type":"string","namespace":["page","blocks","carouselFeature","items","button","label"]},{"name":"icon","label":"Icon","type":"boolean","namespace":["page","blocks","carouselFeature","items","button","icon"]},{"name":"variant","label":"Variant","type":"string","options":[{"value":"default","label":"Seafoam"},{"value":"blue","label":"Blue"},{"value":"orange","label":"Orange"},{"value":"white","label":"White"},{"value":"ghost","label":"Ghost"},{"value":"orangeWithBorder","label":"Orange with Border"},{"value":"ghostBlue","label":"Ghost Blue"}],"namespace":["page","blocks","carouselFeature","items","button","variant"]},{"name":"size","label":"Size","type":"string","options":[{"value":"small","label":"Small"},{"value":"medium","label":"Medium"},{"value":"large","label":"Large"}],"namespace":["page","blocks","carouselFeature","items","button","size"]},{"name":"url","label":"URL","type":"string","namespace":["page","blocks","carouselFeature","items","button","url"]}],"namespace":["page","blocks","carouselFeature","items","button"]}],"namespace":["page","blocks","carouselFeature","items"],"searchable":true,"uid":false}],"namespace":["page","blocks","carouselFeature"]}],"namespace":["page","blocks"],"searchable":true,"uid":false}],"namespace":["page"]},{"name":"doc","label":"Docs","path":"content/docs","format":"mdx","ui":{},"fields":[{"name":"title","label":"Title","type":"string","namespace":["doc","title"],"searchable":true,"uid":false},{"type":"string","name":"last_edited","label":"Last Edited","ui":{"component":"hidden"},"namespace":["doc","last_edited"],"searchable":true,"uid":false},{"name":"next","label":"Next page","type":"reference","collections":["doc","examples"],"namespace":["doc","next"],"searchable":true,"uid":false},{"name":"previous","label":"Previous page","type":"reference","collections":["doc","examples"],"namespace":["doc","previous"],"searchable":true,"uid":false},{"type":"rich-text","name":"body","label":"Body","isBody":true,"templates":[{"name":"Youtube","label":"Youtube Embed","fields":[{"type":"string","name":"embedSrc","label":"Embed URL","description":"⚠︎ Only YouTube embed URLs work - they look like this https://www.youtube.com/embed/Yoh2c5RUTiY","namespace":["doc","body","Youtube","embedSrc"],"searchable":true,"uid":false}],"namespace":["doc","body","Youtube"]},{"name":"GraphQLCodeBlock","label":"GraphQL Code Block","fields":[{"type":"string","name":"query","label":"Query","description":"Paste GraphQL query here. \"#\" are auto-inserted as spacing placeholders and should not be used.","ui":{"component":"textarea"},"namespace":["doc","body","GraphQLCodeBlock","query"],"searchable":true,"uid":false},{"type":"string","name":"response","label":"Response","description":"Paste GraphQL response data here. \"#\" are auto-inserted as spacing placeholders and should not be used.","ui":{"component":"textarea"},"namespace":["doc","body","GraphQLCodeBlock","response"],"searchable":true,"uid":false},{"type":"boolean","name":"preselectResponse","label":"Select Response by Default","description":"Select the response tab by default","namespace":["doc","body","GraphQLCodeBlock","preselectResponse"],"searchable":true,"uid":false}],"namespace":["doc","body","GraphQLCodeBlock"]},{"name":"WarningCallout","label":"Warning Callout","fields":[{"name":"body","label":"Body","type":"string","ui":{"component":"textarea"},"namespace":["doc","body","WarningCallout","body"],"searchable":true,"uid":false}],"namespace":["doc","body","WarningCallout"]},{"name":"Iframe","label":"Embeded an Iframe","fields":[{"name":"iframeSrc","type":"string","namespace":["doc","body","Iframe","iframeSrc"],"searchable":true,"uid":false},{"name":"height","type":"number","label":"Height","description":"The hight of the iframe (in px) ","namespace":["doc","body","Iframe","height"],"searchable":true,"uid":false}],"namespace":["doc","body","Iframe"]},{"name":"CloudinaryVideo","label":"Cloudinary Video","fields":[{"type":"string","name":"src","label":"Cloudinary URL","description":"Full URL with no file extension","namespace":["doc","body","CloudinaryVideo","src"],"searchable":true,"uid":false}],"namespace":["doc","body","CloudinaryVideo"]},{"name":"WebmEmbed","label":"Webm Embed","fields":[{"type":"string","name":"embedSrc","label":"Embed SRC","namespace":["doc","body","WebmEmbed","embedSrc"],"searchable":true,"uid":false},{"type":"string","name":"width","label":"width","namespace":["doc","body","WebmEmbed","width"],"searchable":true,"uid":false}],"namespace":["doc","body","WebmEmbed"]},{"name":"ImageAndText","label":"Image and Text","fields":[{"name":"docText","label":"docText","isBody":true,"type":"rich-text","description":"DO NOT USE THIS TEMPLATE WHILST YOU SEE THIS MESSAGE //TODO: #1967","namespace":["doc","body","ImageAndText","docText"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"name":"image","label":"image","type":"image","namespace":["doc","body","ImageAndText","image"],"searchable":false,"uid":false}],"namespace":["doc","body","ImageAndText"]},{"name":"SummaryTab","label":"Summary Tab","fields":[{"name":"heading","label":"Heading","type":"string","description":"DO NOT USE THIS TEMPLATE WHILST YOU SEE THIS MESSAGE //TODO: #1967","namespace":["doc","body","SummaryTab","heading"],"searchable":true,"uid":false},{"name":"text","label":"text","isBody":true,"type":"rich-text","namespace":["doc","body","SummaryTab","text"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["doc","body","SummaryTab"]}],"namespace":["doc","body"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["doc"]},{"name":"post","label":"Blog Posts","path":"content/blog","format":"mdx","fields":[{"type":"string","name":"title","label":"Title","required":true,"list":false,"ui":{},"namespace":["post","title"],"searchable":true,"uid":false},{"type":"string","name":"date","label":"Date Created","ui":{"component":"date"},"namespace":["post","date"],"searchable":true,"uid":false},{"type":"string","name":"last_edited","label":"Last Edited","ui":{"component":"date"},"namespace":["post","last_edited"],"searchable":true,"uid":false},{"type":"string","name":"author","label":"Author","namespace":["post","author"],"searchable":true,"uid":false},{"type":"reference","name":"prev","label":"Previous Post","description":"(Optional) link to an earlier post at the bottom of this one","collections":["post"],"namespace":["post","prev"],"searchable":true,"uid":false},{"type":"reference","name":"next","label":"Next Post","description":"(Optional) link to a later post at the bottom of this one","collections":["post"],"namespace":["post","next"],"searchable":true,"uid":false},{"type":"rich-text","name":"body","label":"Body","isBody":true,"parser":{"type":"mdx"},"templates":[{"name":"WarningCallout","label":"Warning Callout","fields":[{"name":"body","label":"Body","type":"string","ui":{"component":"textarea"},"namespace":["post","body","WarningCallout","body"],"searchable":true,"uid":false}],"namespace":["post","body","WarningCallout"]},{"name":"Youtube","label":"Youtube Embed","fields":[{"type":"string","name":"embedSrc","label":"Embed URL","description":"⚠︎ Only YouTube embed URLs work - they look like this https://www.youtube.com/embed/Yoh2c5RUTiY","namespace":["post","body","Youtube","embedSrc"],"searchable":true,"uid":false}],"namespace":["post","body","Youtube"]},{"name":"WebmEmbed","label":"Webm Embed","fields":[{"type":"string","name":"embedSrc","label":"Embed SRC","namespace":["post","body","WebmEmbed","embedSrc"],"searchable":true,"uid":false},{"type":"string","name":"width","label":"width","namespace":["post","body","WebmEmbed","width"],"searchable":true,"uid":false}],"namespace":["post","body","WebmEmbed"]},{"name":"GraphQLCodeBlock","label":"GraphQL Code Block","fields":[{"type":"rich-text","name":"request","label":"Request","description":"Paste GraphQL request code here.","namespace":["post","body","GraphQLCodeBlock","request"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","name":"response","label":"Response","description":"Paste GraphQL response data here.","namespace":["post","body","GraphQLCodeBlock","response"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["post","body","GraphQLCodeBlock"]},{"name":"Iframe","label":"Embeded an Iframe","fields":[{"name":"iframeSrc","type":"string","namespace":["post","body","Iframe","iframeSrc"],"searchable":true,"uid":false},{"name":"height","type":"number","label":"Height","description":"The hight of the iframe (in px) ","namespace":["post","body","Iframe","height"],"searchable":true,"uid":false}],"namespace":["post","body","Iframe"]},{"name":"CreateAppCta","label":"\"Create Tina App\" Call-to-action","fields":[{"type":"string","name":"ctaText","label":"Button Text","namespace":["post","body","CreateAppCta","ctaText"],"searchable":true,"uid":false},{"type":"string","name":"cliText","label":"CLI Command Example","namespace":["post","body","CreateAppCta","cliText"],"searchable":true,"uid":false}],"namespace":["post","body","CreateAppCta"]},{"name":"Callout","label":"Callout","fields":[{"type":"string","name":"title","label":"Title","namespace":["post","body","Callout","title"],"searchable":true,"uid":false},{"type":"string","name":"description","label":"Description","namespace":["post","body","Callout","description"],"searchable":true,"uid":false},{"type":"string","name":"url","label":"URL","namespace":["post","body","Callout","url"],"searchable":true,"uid":false},{"type":"string","name":"buttonText","label":"Button Text","namespace":["post","body","Callout","buttonText"],"searchable":true,"uid":false}],"namespace":["post","body","Callout"]},{"name":"Codesandbox","label":"Codesandbox embed","fields":[{"type":"string","name":"embedSrc","label":"Embed URL","namespace":["post","body","Codesandbox","embedSrc"],"searchable":true,"uid":false},{"type":"string","name":"title","label":"A11y Title","namespace":["post","body","Codesandbox","title"],"searchable":true,"uid":false}],"namespace":["post","body","Codesandbox"]},{"name":"Diagram","label":"Diagram","fields":[{"type":"string","name":"src","namespace":["post","body","Diagram","src"],"searchable":true,"uid":false},{"type":"string","name":"alt","namespace":["post","body","Diagram","alt"],"searchable":true,"uid":false}],"namespace":["post","body","Diagram"]},{"name":"WideImage","label":"Wide Image","fields":[{"type":"image","name":"src","namespace":["post","body","WideImage","src"],"searchable":false,"uid":false},{"type":"string","name":"alt","namespace":["post","body","WideImage","alt"],"searchable":true,"uid":false}],"namespace":["post","body","WideImage"]},{"name":"CustomFieldComponentDemo","label":"Field Component Demo [do not use]","fields":[{"type":"string","name":"test","namespace":["post","body","CustomFieldComponentDemo","test"],"searchable":true,"uid":false}],"namespace":["post","body","CustomFieldComponentDemo"]},{"name":"CloudinaryVideo","label":"Cloudinary Video","fields":[{"type":"string","name":"src","label":"Cloudinary URL","description":"Full URL with no file extension","namespace":["post","body","CloudinaryVideo","src"],"searchable":true,"uid":false}],"namespace":["post","body","CloudinaryVideo"]},{"name":"Button","label":"Button","fields":[{"type":"string","name":"label","label":"Label","namespace":["post","body","Button","label"],"searchable":true,"uid":false},{"type":"string","name":"link","label":"Link","namespace":["post","body","Button","link"],"searchable":true,"uid":false}],"namespace":["post","body","Button"]}],"namespace":["post","body"],"searchable":true}],"namespace":["post"]},{"name":"examples","label":"Examples","path":"content/examples","format":"json","match":{"include":"index"},"fields":[{"type":"object","name":"examples","label":"Examples","list":true,"ui":{"defaultItem":{"label":"Tina Tailwind Starter","description":{"type":"root","children":[{"type":"p","children":[{"type":"text","text":"A full featured starter that uses tailwind and Tinacms"}]}]},"image":"/img/docs/your-blocks.webm","link":"https://github.com/tinacms/tina-cloud-starter"}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["examples","examples","label"],"searchable":true,"uid":false},{"type":"rich-text","label":"Description","name":"description","namespace":["examples","examples","description"],"searchable":true,"parser":{"type":"markdown"},"uid":false},{"type":"image","label":"Image","name":"image","namespace":["examples","examples","image"],"searchable":false,"uid":false},{"type":"string","label":"Link","name":"link","namespace":["examples","examples","link"],"searchable":true,"uid":false}],"namespace":["examples","examples"],"searchable":true,"uid":false}],"namespace":["examples"]},{"name":"meetingLinks","label":"Meeting Links","path":"content/meeting-links","format":"json","fields":[{"name":"bookingCard","label":"Booking Card","type":"object","list":true,"ui":{},"fields":[{"name":"name","label":"Name","type":"string","namespace":["meetingLinks","bookingCard","name"],"searchable":true,"uid":false},{"name":"description","label":"Description","type":"string","namespace":["meetingLinks","bookingCard","description"],"searchable":true,"uid":false},{"name":"image","label":"Image","type":"image","description":"Image headshot for a meeting card","namespace":["meetingLinks","bookingCard","image"],"searchable":false,"uid":false},{"name":"url","label":"URL","type":"string","description":"URL to a meeting link (i.e HubSpot)","namespace":["meetingLinks","bookingCard","url"],"searchable":true,"uid":false}],"namespace":["meetingLinks","bookingCard"],"searchable":true,"uid":false}],"namespace":["meetingLinks"]},{"name":"WhatsNewTinaCMS","label":"Whats new - TinaCMS","path":"content/whats-new-tinacms","format":"mdx","fields":[{"name":"versionNumber","label":"Version Number","type":"string","namespace":["WhatsNewTinaCMS","versionNumber"],"searchable":true,"uid":false},{"name":"dateReleased","label":"Date Released","type":"datetime","namespace":["WhatsNewTinaCMS","dateReleased"],"searchable":true,"uid":false},{"name":"body","label":"Body","type":"rich-text","isBody":true,"description":"The content of the release notes. Note that h1-h5 are the same size (i.e text-lg in tailwind).","namespace":["WhatsNewTinaCMS","body"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["WhatsNewTinaCMS"]},{"name":"WhatsNewTinaCloud","label":"Whats new - TinaCloud","path":"content/whats-new-tinacloud","format":"mdx","fields":[{"name":"versionNumber","label":"Version Number","type":"string","namespace":["WhatsNewTinaCloud","versionNumber"],"searchable":true,"uid":false},{"name":"dateReleased","label":"Date Released","type":"datetime","namespace":["WhatsNewTinaCloud","dateReleased"],"searchable":true,"uid":false},{"name":"body","label":"Body","type":"rich-text","isBody":true,"description":"The content of the release notes. Note that h1-h5 are the same size (i.e text-lg in tailwind).","namespace":["WhatsNewTinaCloud","body"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["WhatsNewTinaCloud"]},{"label":"Navigation Bar","name":"navigationBar","path":"content/navigationBar","format":"json","ui":{"allowedActions":{"create":false,"delete":false}},"fields":[{"name":"navItem","label":"Navigation Item","list":true,"type":"object","templates":[{"name":"stringItem","label":"String Item","ui":{},"fields":[{"name":"label","label":"Label","type":"string","namespace":["navigationBar","navItem","stringItem","label"],"searchable":true,"uid":false},{"name":"href","label":"href","type":"string","namespace":["navigationBar","navItem","stringItem","href"],"searchable":true,"uid":false}],"namespace":["navigationBar","navItem","stringItem"]},{"name":"groupOfStringItems","label":"Group Of String Items","list":true,"type":"object","ui":{},"fields":[{"name":"label","label":"Label","type":"string","namespace":["navigationBar","navItem","groupOfStringItems","label"],"searchable":true,"uid":false},{"name":"items","label":"Page or Submenu","type":"object","list":true,"ui":{},"fields":[{"name":"label","label":"Label","type":"string","namespace":["navigationBar","navItem","groupOfStringItems","items","label"]},{"name":"href","label":"href","type":"string","namespace":["navigationBar","navItem","groupOfStringItems","items","href"]}],"namespace":["navigationBar","navItem","groupOfStringItems","items"],"searchable":true,"uid":false}],"namespace":["navigationBar","navItem","groupOfStringItems"]},{"label":"Modal Button","name":"modalButton","type":"object","ui":{"defaultItem":{"variant":"default","label":"Secondary Action","icon":false,"size":"medium"}},"fields":[{"name":"label","label":"Label","type":"string","namespace":["navigationBar","navItem","modalButton","label"],"searchable":true,"uid":false},{"name":"icon","label":"Icon","type":"boolean","namespace":["navigationBar","navItem","modalButton","icon"],"searchable":true,"uid":false},{"name":"color","label":"Color","type":"string","options":[{"value":"default","label":"Seafoam"},{"value":"blue","label":"Blue"},{"value":"orange","label":"Orange"},{"value":"white","label":"White"},{"value":"ghost","label":"Ghost"},{"value":"command","label":"Command"}],"namespace":["navigationBar","navItem","modalButton","color"],"searchable":true,"uid":false},{"name":"size","label":"Size","type":"string","options":[{"value":"small","label":"Small"},{"value":"medium","label":"Medium"},{"value":"large","label":"Large"}],"namespace":["navigationBar","navItem","modalButton","size"],"searchable":true,"uid":false},{"name":"modal","label":"Modal","type":"string","options":["BookDemo.tsx","EmailForm.tsx"],"namespace":["navigationBar","navItem","modalButton","modal"],"searchable":true,"uid":false},{"name":"icon2","label":"Icon","type":"string","options":["FaCalendarDay","MdEmail"],"description":"If you want a new icon added please ask a developer :)","namespace":["navigationBar","navItem","modalButton","icon2"],"searchable":true,"uid":false}],"namespace":["navigationBar","navItem","modalButton"]}],"namespace":["navigationBar","navItem"],"searchable":true,"uid":false}],"namespace":["navigationBar"]},{"name":"docsTableOfContents","label":"Docs - Table of Contents","path":"content/docs-toc","format":"json","fields":[{"name":"supermenuGroup","label":"Supermenu Group","type":"object","list":true,"ui":{},"fields":[{"name":"title","label":"Name","type":"string","namespace":["docsTableOfContents","supermenuGroup","title"],"searchable":true,"uid":false},{"name":"items","label":"Page or Submenu","type":"object","list":true,"templates":[{"label":"Submenu","name":"items","ui":{},"fields":[{"name":"title","label":"Name","type":"string","namespace":["docsTableOfContents","supermenuGroup","items","items","title"],"searchable":true,"uid":false},{"name":"items","label":"Submenu Items","type":"object","list":true,"templates":[{"label":"Submenu","name":"items","ui":{},"fields":[{"name":"title","label":"Name","type":"string","namespace":["docsTableOfContents","supermenuGroup","items","items","items","items","title"]},{"name":"items","label":"Submenu Items","type":"object","list":true,"templates":[{"label":"Submenu","name":"items","ui":{},"fields":[{"name":"title","label":"Name","type":"string","namespace":["docsTableOfContents","supermenuGroup","items","items","items","items","items","items","title"]},{"name":"items","label":"Submenu Items","type":"object","list":true,"templates":[{"label":"Item","name":"item","ui":{},"fields":[{"name":"title","label":"Name","type":"string","namespace":["docsTableOfContents","supermenuGroup","items","items","items","items","items","items","items","item","title"]},{"name":"slug","label":"Page","type":"reference","collections":["doc"],"namespace":["docsTableOfContents","supermenuGroup","items","items","items","items","items","items","items","item","slug"]}],"namespace":["docsTableOfContents","supermenuGroup","items","items","items","items","items","items","items","item"]}],"namespace":["docsTableOfContents","supermenuGroup","items","items","items","items","items","items","items"]}],"namespace":["docsTableOfContents","supermenuGroup","items","items","items","items","items","items"]},{"label":"Item","name":"item","ui":{},"fields":[{"name":"title","label":"Name","type":"string","namespace":["docsTableOfContents","supermenuGroup","items","items","items","items","items","item","title"]},{"name":"slug","label":"Page","type":"reference","collections":["doc"],"namespace":["docsTableOfContents","supermenuGroup","items","items","items","items","items","item","slug"]}],"namespace":["docsTableOfContents","supermenuGroup","items","items","items","items","items","item"]}],"namespace":["docsTableOfContents","supermenuGroup","items","items","items","items","items"]}],"namespace":["docsTableOfContents","supermenuGroup","items","items","items","items"]},{"label":"Item","name":"item","ui":{},"fields":[{"name":"title","label":"Name","type":"string","namespace":["docsTableOfContents","supermenuGroup","items","items","items","item","title"]},{"name":"slug","label":"Page","type":"reference","collections":["doc"],"namespace":["docsTableOfContents","supermenuGroup","items","items","items","item","slug"]}],"namespace":["docsTableOfContents","supermenuGroup","items","items","items","item"]}],"namespace":["docsTableOfContents","supermenuGroup","items","items","items"],"searchable":true,"uid":false}],"namespace":["docsTableOfContents","supermenuGroup","items","items"]},{"label":"Item","name":"item","ui":{},"fields":[{"name":"title","label":"Name","type":"string","namespace":["docsTableOfContents","supermenuGroup","items","item","title"],"searchable":true,"uid":false},{"name":"slug","label":"Page","type":"reference","collections":["doc"],"namespace":["docsTableOfContents","supermenuGroup","items","item","slug"],"searchable":true,"uid":false}],"namespace":["docsTableOfContents","supermenuGroup","items","item"]}],"namespace":["docsTableOfContents","supermenuGroup","items"],"searchable":true,"uid":false}],"namespace":["docsTableOfContents","supermenuGroup"],"searchable":true,"uid":false}],"namespace":["docsTableOfContents"]}],"config":{"media":{"tina":{"publicFolder":"public","mediaRoot":""}}}},"lookup":{"DocumentConnection":{"type":"DocumentConnection","resolveType":"multiCollectionDocumentList","collections":["page","doc","post","examples","meetingLinks","WhatsNewTinaCMS","WhatsNewTinaCloud","navigationBar","docsTableOfContents"]},"Node":{"type":"Node","resolveType":"nodeDocument"},"DocumentNode":{"type":"DocumentNode","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"PageBlocksHeroMedia":{"type":"PageBlocksHeroMedia","resolveType":"unionData","typeMap":{"image":"PageBlocksHeroMediaImage","video":"PageBlocksHeroMediaVideo"}},"PageBlocksHeroButtons":{"type":"PageBlocksHeroButtons","resolveType":"unionData","typeMap":{"actions":"PageBlocksHeroButtonsActions","modalButton":"PageBlocksHeroButtonsModalButton","codeButton":"PageBlocksHeroButtonsCodeButton"}},"PageBlocksFeaturesFeaturesButtons":{"type":"PageBlocksFeaturesFeaturesButtons","resolveType":"unionData","typeMap":{"actions":"PageBlocksFeaturesFeaturesButtonsActions","modalButton":"PageBlocksFeaturesFeaturesButtonsModalButton","codeButton":"PageBlocksFeaturesFeaturesButtonsCodeButton"}},"PageBlocksFeaturesFeaturesMedia":{"type":"PageBlocksFeaturesFeaturesMedia","resolveType":"unionData","typeMap":{"image":"PageBlocksFeaturesFeaturesMediaImage","video":"PageBlocksFeaturesFeaturesMediaVideo","code":"PageBlocksFeaturesFeaturesMediaCode"}},"PageBlocksFlyingButtons":{"type":"PageBlocksFlyingButtons","resolveType":"unionData","typeMap":{"actions":"PageBlocksFlyingButtonsActions","modalButton":"PageBlocksFlyingButtonsModalButton","codeButton":"PageBlocksFlyingButtonsCodeButton"}},"PageBlocksPricingFreeTierButtons":{"type":"PageBlocksPricingFreeTierButtons","resolveType":"unionData","typeMap":{"actions":"PageBlocksPricingFreeTierButtonsActions","modalButton":"PageBlocksPricingFreeTierButtonsModalButton","codeButton":"PageBlocksPricingFreeTierButtonsCodeButton"}},"PageBlocksPricingPlansButtons":{"type":"PageBlocksPricingPlansButtons","resolveType":"unionData","typeMap":{"actions":"PageBlocksPricingPlansButtonsActions","modalButton":"PageBlocksPricingPlansButtonsModalButton","codeButton":"PageBlocksPricingPlansButtonsCodeButton"}},"PageBlocksMediaComponentMediaItem":{"type":"PageBlocksMediaComponentMediaItem","resolveType":"unionData","typeMap":{"cloudinaryMediaComponent":"PageBlocksMediaComponentMediaItemCloudinaryMediaComponent","youtubeMedia":"PageBlocksMediaComponentMediaItemYoutubeMedia"}},"PageBlocksTextMediaColumnComponentMediaColumnItem":{"type":"PageBlocksTextMediaColumnComponentMediaColumnItem","resolveType":"unionData","typeMap":{"cloudinaryMediaComponent":"PageBlocksTextMediaColumnComponentMediaColumnItemCloudinaryMediaComponent","youtubeMedia":"PageBlocksTextMediaColumnComponentMediaColumnItemYoutubeMedia"}},"PageBlocks":{"type":"PageBlocks","resolveType":"unionData","typeMap":{"hero":"PageBlocksHero","features":"PageBlocksFeatures","flying":"PageBlocksFlying","pricing":"PageBlocksPricing","faq":"PageBlocksFaq","content":"PageBlocksContent","showcase":"PageBlocksShowcase","columns":"PageBlocksColumns","story":"PageBlocksStory","featureGrid":"PageBlocksFeatureGrid","logoGrid":"PageBlocksLogoGrid","roadmapGrid":"PageBlocksRoadmapGrid","recentPosts":"PageBlocksRecentPosts","testimonials":"PageBlocksTestimonials","quote":"PageBlocksQuote","events":"PageBlocksEvents","CompareBox":"PageBlocksCompareBox","booking":"PageBlocksBooking","mediaComponent":"PageBlocksMediaComponent","textMediaColumnComponent":"PageBlocksTextMediaColumnComponent","tinaBanner":"PageBlocksTinaBanner","highlightsSection":"PageBlocksHighlightsSection","spacer":"PageBlocksSpacer","carouselFeature":"PageBlocksCarouselFeature"}},"Page":{"type":"Page","resolveType":"collectionDocument","collection":"page","createPage":"create","updatePage":"update"},"PageConnection":{"type":"PageConnection","resolveType":"collectionDocumentList","collection":"page"},"DocNext":{"type":"DocNext","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"DocPrevious":{"type":"DocPrevious","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"Doc":{"type":"Doc","resolveType":"collectionDocument","collection":"doc","createDoc":"create","updateDoc":"update"},"DocConnection":{"type":"DocConnection","resolveType":"collectionDocumentList","collection":"doc"},"PostPrev":{"type":"PostPrev","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"PostNext":{"type":"PostNext","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"Post":{"type":"Post","resolveType":"collectionDocument","collection":"post","createPost":"create","updatePost":"update"},"PostConnection":{"type":"PostConnection","resolveType":"collectionDocumentList","collection":"post"},"Examples":{"type":"Examples","resolveType":"collectionDocument","collection":"examples","createExamples":"create","updateExamples":"update"},"ExamplesConnection":{"type":"ExamplesConnection","resolveType":"collectionDocumentList","collection":"examples"},"MeetingLinks":{"type":"MeetingLinks","resolveType":"collectionDocument","collection":"meetingLinks","createMeetingLinks":"create","updateMeetingLinks":"update"},"MeetingLinksConnection":{"type":"MeetingLinksConnection","resolveType":"collectionDocumentList","collection":"meetingLinks"},"WhatsNewTinaCMS":{"type":"WhatsNewTinaCMS","resolveType":"collectionDocument","collection":"WhatsNewTinaCMS","createWhatsNewTinaCMS":"create","updateWhatsNewTinaCMS":"update"},"WhatsNewTinaCMSConnection":{"type":"WhatsNewTinaCMSConnection","resolveType":"collectionDocumentList","collection":"WhatsNewTinaCMS"},"WhatsNewTinaCloud":{"type":"WhatsNewTinaCloud","resolveType":"collectionDocument","collection":"WhatsNewTinaCloud","createWhatsNewTinaCloud":"create","updateWhatsNewTinaCloud":"update"},"WhatsNewTinaCloudConnection":{"type":"WhatsNewTinaCloudConnection","resolveType":"collectionDocumentList","collection":"WhatsNewTinaCloud"},"NavigationBarNavItem":{"type":"NavigationBarNavItem","resolveType":"unionData","typeMap":{"stringItem":"NavigationBarNavItemStringItem","groupOfStringItems":"NavigationBarNavItemGroupOfStringItems","modalButton":"NavigationBarNavItemModalButton"}},"NavigationBar":{"type":"NavigationBar","resolveType":"collectionDocument","collection":"navigationBar","createNavigationBar":"create","updateNavigationBar":"update"},"NavigationBarConnection":{"type":"NavigationBarConnection","resolveType":"collectionDocumentList","collection":"navigationBar"},"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsItemsItemsItemSlug":{"type":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsItemsItemsItemSlug","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsItemsItems":{"type":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsItemsItems","resolveType":"unionData","typeMap":{"item":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsItemsItemsItem"}},"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsItemSlug":{"type":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsItemSlug","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItems":{"type":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItems","resolveType":"unionData","typeMap":{"items":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsItems","item":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsItem"}},"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemSlug":{"type":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemSlug","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"DocsTableOfContentsSupermenuGroupItemsItemsItems":{"type":"DocsTableOfContentsSupermenuGroupItemsItemsItems","resolveType":"unionData","typeMap":{"items":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItems","item":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItem"}},"DocsTableOfContentsSupermenuGroupItemsItemSlug":{"type":"DocsTableOfContentsSupermenuGroupItemsItemSlug","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"DocsTableOfContentsSupermenuGroupItems":{"type":"DocsTableOfContentsSupermenuGroupItems","resolveType":"unionData","typeMap":{"items":"DocsTableOfContentsSupermenuGroupItemsItems","item":"DocsTableOfContentsSupermenuGroupItemsItem"}},"DocsTableOfContents":{"type":"DocsTableOfContents","resolveType":"collectionDocument","collection":"docsTableOfContents","createDocsTableOfContents":"create","updateDocsTableOfContents":"update"},"DocsTableOfContentsConnection":{"type":"DocsTableOfContentsConnection","resolveType":"collectionDocumentList","collection":"docsTableOfContents"}},"graphql":{"kind":"Document","definitions":[{"kind":"ScalarTypeDefinition","name":{"kind":"Name","value":"Reference"},"description":{"kind":"StringValue","value":"References another document, used as a foreign key"},"directives":[]},{"kind":"ScalarTypeDefinition","name":{"kind":"Name","value":"JSON"},"description":{"kind":"StringValue","value":""},"directives":[]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"SystemInfo"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"filename"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"basename"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"breadcrumbs"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"excludeExtension"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}],"type":{"kind":"NonNullType","type":{"kind":"ListType","type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"path"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"relativePath"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"extension"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"template"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"collection"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Collection"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Folder"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"name"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"path"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageInfo"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"hasPreviousPage"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"hasNextPage"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"startCursor"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"endCursor"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}]},{"kind":"InterfaceTypeDefinition","description":{"kind":"StringValue","value":""},"name":{"kind":"Name","value":"Node"},"interfaces":[],"directives":[],"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"id"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ID"}}}}]},{"kind":"InterfaceTypeDefinition","description":{"kind":"StringValue","value":""},"name":{"kind":"Name","value":"Document"},"interfaces":[],"directives":[],"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"id"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ID"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"_sys"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"SystemInfo"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"_values"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}}]},{"kind":"InterfaceTypeDefinition","description":{"kind":"StringValue","value":"A relay-compliant pagination connection"},"name":{"kind":"Name","value":"Connection"},"interfaces":[],"directives":[],"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"totalCount"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"pageInfo"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageInfo"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Query"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"getOptimizedQuery"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"queryString"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"collection"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"collection"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Collection"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"collections"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"ListType","type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Collection"}}}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"node"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"id"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Node"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"document"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"collection"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"DocumentNode"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"page"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Page"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"pageConnection"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"before"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"after"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"first"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"last"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sort"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"filter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageFilter"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageConnection"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"doc"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Doc"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"docConnection"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"before"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"after"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"first"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"last"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sort"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"filter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocFilter"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"DocConnection"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"post"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Post"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"postConnection"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"before"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"after"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"first"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"last"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sort"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"filter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PostFilter"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PostConnection"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"examples"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Examples"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"examplesConnection"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"before"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"after"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"first"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"last"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sort"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"filter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ExamplesFilter"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ExamplesConnection"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"meetingLinks"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"MeetingLinks"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"meetingLinksConnection"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"before"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"after"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"first"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"last"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sort"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"filter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"MeetingLinksFilter"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"MeetingLinksConnection"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"WhatsNewTinaCMS"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"WhatsNewTinaCMS"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"WhatsNewTinaCMSConnection"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"before"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"after"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"first"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"last"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sort"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"filter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"WhatsNewTinaCMSFilter"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"WhatsNewTinaCMSConnection"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"WhatsNewTinaCloud"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"WhatsNewTinaCloud"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"WhatsNewTinaCloudConnection"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"before"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"after"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"first"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"last"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sort"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"filter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"WhatsNewTinaCloudFilter"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"WhatsNewTinaCloudConnection"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"navigationBar"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"NavigationBar"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"navigationBarConnection"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"before"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"after"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"first"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"last"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sort"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"filter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NavigationBarFilter"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"NavigationBarConnection"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"docsTableOfContents"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContents"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"docsTableOfContentsConnection"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"before"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"after"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"first"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"last"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sort"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"filter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsFilter"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsConnection"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocumentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"page"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"doc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"post"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PostFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"examples"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ExamplesFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"meetingLinks"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"MeetingLinksFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"WhatsNewTinaCMS"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"WhatsNewTinaCMSFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"WhatsNewTinaCloud"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"WhatsNewTinaCloudFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"navigationBar"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NavigationBarFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"docsTableOfContents"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsFilter"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"DocumentConnectionEdges"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"cursor"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"node"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocumentNode"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[{"kind":"NamedType","name":{"kind":"Name","value":"Connection"}}],"directives":[],"name":{"kind":"Name","value":"DocumentConnection"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"pageInfo"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageInfo"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"totalCount"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"edges"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"DocumentConnectionEdges"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Collection"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"name"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"slug"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"path"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"format"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"matches"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"templates"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"fields"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"documents"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"before"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"after"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"first"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"last"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sort"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"filter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocumentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"folder"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"DocumentConnection"}}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"DocumentNode"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"Page"}},{"kind":"NamedType","name":{"kind":"Name","value":"Doc"}},{"kind":"NamedType","name":{"kind":"Name","value":"Post"}},{"kind":"NamedType","name":{"kind":"Name","value":"Examples"}},{"kind":"NamedType","name":{"kind":"Name","value":"MeetingLinks"}},{"kind":"NamedType","name":{"kind":"Name","value":"WhatsNewTinaCMS"}},{"kind":"NamedType","name":{"kind":"Name","value":"WhatsNewTinaCloud"}},{"kind":"NamedType","name":{"kind":"Name","value":"NavigationBar"}},{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContents"}},{"kind":"NamedType","name":{"kind":"Name","value":"Folder"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageSeo"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"hasCustomSuffix"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"description"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksHeroMediaImage"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"image"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksHeroMediaVideo"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"src"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"PageBlocksHeroMedia"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksHeroMediaImage"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksHeroMediaVideo"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksHeroButtonsActions"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"icon"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"variant"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"size"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"url"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksHeroButtonsModalButton"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"icon"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"color"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"size"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"modal"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksHeroButtonsCodeButton"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"PageBlocksHeroButtons"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksHeroButtonsActions"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksHeroButtonsModalButton"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksHeroButtonsCodeButton"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksHero"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"headline"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"text"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"media"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksHeroMedia"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"margin"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"spacing"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"smallerMobileBodyText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"buttons"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksHeroButtons"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesButtonsActions"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"icon"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"variant"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"size"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"url"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesButtonsModalButton"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"icon"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"color"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"size"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"modal"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesButtonsCodeButton"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesButtons"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesButtonsActions"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesButtonsModalButton"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesButtonsCodeButton"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesMediaImage"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"image"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesMediaVideo"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"src"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesMediaCode"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"file"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"code"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"language"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"scale"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesMedia"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesMediaImage"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesMediaVideo"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesMediaCode"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksFeaturesFeatures"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"headline"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"text"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"buttons"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesButtons"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"media"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesMedia"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"isReversed"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"imageBackground"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksFeatures"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"features"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFeaturesFeatures"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksFlyingButtonsActions"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"icon"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"variant"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"size"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"url"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksFlyingButtonsModalButton"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"icon"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"color"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"size"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"modal"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksFlyingButtonsCodeButton"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"PageBlocksFlyingButtons"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFlyingButtonsActions"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFlyingButtonsModalButton"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFlyingButtonsCodeButton"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksFlying"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"headline"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"text"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"buttons"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFlyingButtons"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksPricingFreeTierCardItem"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"name"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"icon"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"description"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksPricingFreeTierButtonsActions"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"icon"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"variant"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"size"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"url"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksPricingFreeTierButtonsModalButton"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"icon"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"color"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"size"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"modal"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksPricingFreeTierButtonsCodeButton"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"PageBlocksPricingFreeTierButtons"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksPricingFreeTierButtonsActions"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksPricingFreeTierButtonsModalButton"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksPricingFreeTierButtonsCodeButton"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksPricingFreeTier"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"name"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"description"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"price"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"annualPrice"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"annualDescription"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"interval"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"cardItem"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksPricingFreeTierCardItem"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"buttons"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksPricingFreeTierButtons"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"isStarred"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksPricingPlansCardItem"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"name"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"icon"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"description"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksPricingPlansButtonsActions"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"icon"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"variant"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"size"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"url"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksPricingPlansButtonsModalButton"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"icon"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"color"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"size"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"modal"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksPricingPlansButtonsCodeButton"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"PageBlocksPricingPlansButtons"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksPricingPlansButtonsActions"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksPricingPlansButtonsModalButton"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksPricingPlansButtonsCodeButton"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksPricingPlans"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"name"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"description"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"price"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"annualPrice"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"annualDescription"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"interval"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"cardItem"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksPricingPlansCardItem"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"buttons"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksPricingPlansButtons"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"isStarred"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksPricing"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"headline"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"freeTier"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksPricingFreeTier"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"intro"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"pillSwitchVisibileText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"pillSwitchToggleText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"plans"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksPricingPlans"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksFaqQuestions"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"question"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"answer"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksFaq"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"intro"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"questions"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFaqQuestions"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"color"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksContentOptions"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"narrow"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"color"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"align"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksContent"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"options"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksContentOptions"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"content"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksShowcaseItemsMedia"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"src"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksShowcaseItems"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"headline"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"text"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"url"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"media"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksShowcaseItemsMedia"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksShowcase"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"items"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksShowcaseItems"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksColumnsOptions"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"columns"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"narrow"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"color"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"align"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksColumns"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"options"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksColumnsOptions"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"columnOne"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"columnTwo"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksStory"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksFeatureGridItemsActions"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"icon"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"variant"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"size"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"url"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksFeatureGridItems"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"headline"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"text"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"url"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"actions"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFeatureGridItemsActions"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksFeatureGrid"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"items"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFeatureGridItems"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksLogoGridItems"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"name"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"logo"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"size"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksLogoGrid"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"items"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksLogoGridItems"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksRoadmapGridItemsActions"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"icon"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"variant"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"size"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"url"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksRoadmapGridItems"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"headline"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"status"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"content"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"actions"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksRoadmapGridItemsActions"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksRoadmapGridOptions"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"paddingTop"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"paddingBottom"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksRoadmapGrid"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"headline"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"items"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksRoadmapGridItems"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"options"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksRoadmapGridOptions"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksRecentPosts"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksTestimonialsTestimonials"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"name"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"username"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"avatar"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"date"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"testimonial"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksTestimonials"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"testimonials"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksTestimonialsTestimonials"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksQuote"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title2"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"subtext"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"logo"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksEventsCardItems"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"headline"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"startDate"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"startTime"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"endDate"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"endTime"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"timezone"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"location"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"image"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"markerLAT"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"markerLONG"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksEvents"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"cardItems"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksEventsCardItems"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksCompareBoxCriteriaItems"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"criteria"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"description"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksCompareBoxCompanies"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"headline"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"logoColour"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"logoWhite"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"active"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"isHidden"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"backgroundColor"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"criteria1"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"criteria2"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"criteria3"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"criteria4"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"criteria5"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"criteria6"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"criteria7"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"criteria8"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"criteria9"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksCompareBox"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"criteriaItems"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksCompareBoxCriteriaItems"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"companies"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksCompareBoxCompanies"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksBooking"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"description"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksMediaComponentMediaItemCloudinaryMediaComponent"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"media"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"thumbnail"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksMediaComponentMediaItemYoutubeMedia"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"embedUrl"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"PageBlocksMediaComponentMediaItem"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksMediaComponentMediaItemCloudinaryMediaComponent"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksMediaComponentMediaItemYoutubeMedia"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksMediaComponent"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"headline"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"mediaItem"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksMediaComponentMediaItem"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksTextMediaColumnComponentMediaColumnItemCloudinaryMediaComponent"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"media"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"thumbnail"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksTextMediaColumnComponentMediaColumnItemYoutubeMedia"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"embedUrl"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"PageBlocksTextMediaColumnComponentMediaColumnItem"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksTextMediaColumnComponentMediaColumnItemCloudinaryMediaComponent"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksTextMediaColumnComponentMediaColumnItemYoutubeMedia"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksTextMediaColumnComponent"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"isVideoOnLeft"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"body"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"mediaColumnItem"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksTextMediaColumnComponentMediaColumnItem"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksTinaBanner"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"backdrop"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"leftFig"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"rightFig"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"leftScreen"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"rightScreen"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"centerFig"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"llama"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksHighlightsSectionHighlightColumnHighlights"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"name"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"icon"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksHighlightsSectionHighlightColumn"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"heading"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"highlights"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksHighlightsSectionHighlightColumnHighlights"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksHighlightsSection"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"highlightColumn"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksHighlightsSectionHighlightColumn"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksSpacer"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"spacingPx"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"spacingPxMobile"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksCarouselFeatureItemsButton"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"icon"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"variant"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"size"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"url"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksCarouselFeatureItems"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"headline"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"text"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"icon2"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"videoSrc"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"button"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksCarouselFeatureItemsButton"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBlocksCarouselFeature"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"blockHeadline"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"items"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksCarouselFeatureItems"}}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"PageBlocks"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksHero"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFeatures"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFlying"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksPricing"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFaq"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksContent"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksShowcase"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksColumns"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksStory"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFeatureGrid"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksLogoGrid"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksRoadmapGrid"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksRecentPosts"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksTestimonials"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksQuote"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksEvents"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksCompareBox"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksBooking"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksMediaComponent"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksTextMediaColumnComponent"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksTinaBanner"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksHighlightsSection"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksSpacer"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksCarouselFeature"}}]},{"kind":"ObjectTypeDefinition","interfaces":[{"kind":"NamedType","name":{"kind":"Name","value":"Node"}},{"kind":"NamedType","name":{"kind":"Name","value":"Document"}}],"directives":[],"name":{"kind":"Name","value":"Page"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"seo"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSeo"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"blocks"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocks"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"id"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ID"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"_sys"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"SystemInfo"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"_values"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"StringFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"startsWith"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eq"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"exists"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"in"},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"BooleanFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eq"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"exists"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSeoFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"hasCustomSuffix"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"description"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"startsWith"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eq"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"exists"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"in"},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksHeroMediaImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"image"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksHeroMediaVideoFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksHeroMediaFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"image"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksHeroMediaImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"video"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksHeroMediaVideoFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksHeroButtonsActionsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"variant"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksHeroButtonsModalButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"modal"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksHeroButtonsCodeButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksHeroButtonsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"actions"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksHeroButtonsActionsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"modalButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksHeroButtonsModalButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"codeButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksHeroButtonsCodeButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksHeroFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"media"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksHeroMediaFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"margin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"spacing"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"smallerMobileBodyText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttons"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksHeroButtonsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesButtonsActionsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"variant"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesButtonsModalButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"modal"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesButtonsCodeButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesButtonsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"actions"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesButtonsActionsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"modalButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesButtonsModalButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"codeButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesButtonsCodeButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesMediaImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"image"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesMediaVideoFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"NumberFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"lt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"lte"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"gte"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"gt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eq"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"exists"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"in"},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesMediaCodeFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"file"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"code"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"language"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"scale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesMediaFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"image"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesMediaImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"video"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesMediaVideoFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"code"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesMediaCodeFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttons"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesButtonsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"media"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesMediaFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"isReversed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imageBackground"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksFeaturesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"features"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksFlyingButtonsActionsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"variant"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksFlyingButtonsModalButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"modal"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksFlyingButtonsCodeButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksFlyingButtonsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"actions"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFlyingButtonsActionsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"modalButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFlyingButtonsModalButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"codeButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFlyingButtonsCodeButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksFlyingFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttons"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFlyingButtonsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"RichTextFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"startsWith"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eq"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"exists"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksPricingFreeTierCardItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"description"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksPricingFreeTierButtonsActionsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"variant"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksPricingFreeTierButtonsModalButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"modal"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksPricingFreeTierButtonsCodeButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksPricingFreeTierButtonsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"actions"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksPricingFreeTierButtonsActionsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"modalButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksPricingFreeTierButtonsModalButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"codeButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksPricingFreeTierButtonsCodeButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksPricingFreeTierFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"description"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"price"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"annualPrice"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"annualDescription"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"interval"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"cardItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksPricingFreeTierCardItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttons"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksPricingFreeTierButtonsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"isStarred"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksPricingPlansCardItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"description"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksPricingPlansButtonsActionsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"variant"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksPricingPlansButtonsModalButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"modal"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksPricingPlansButtonsCodeButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksPricingPlansButtonsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"actions"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksPricingPlansButtonsActionsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"modalButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksPricingPlansButtonsModalButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"codeButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksPricingPlansButtonsCodeButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksPricingPlansFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"description"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"price"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"annualPrice"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"annualDescription"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"interval"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"cardItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksPricingPlansCardItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttons"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksPricingPlansButtonsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"isStarred"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksPricingFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"freeTier"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksPricingFreeTierFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"intro"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"pillSwitchVisibileText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"pillSwitchToggleText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"plans"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksPricingPlansFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksFaqQuestionsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"question"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"answer"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksFaqFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"intro"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"questions"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFaqQuestionsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksContentOptionsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"narrow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"align"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksContentContentActionsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"variant"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksContentContentSocialFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"tina"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"discord"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"github"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"twitter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksContentContentNewsletterFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"style"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksContentContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"actions"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksContentContentActionsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"social"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksContentContentSocialFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"newsletter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksContentContentNewsletterFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"options"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksContentOptionsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksContentContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksShowcaseItemsMediaFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksShowcaseItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"media"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksShowcaseItemsMediaFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksShowcaseFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksShowcaseItemsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksColumnsOptionsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"columns"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"narrow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"align"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksColumnsColumnOneActionsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"variant"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksColumnsColumnOneSocialFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"tina"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"discord"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"github"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"twitter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksColumnsColumnOneNewsletterFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"style"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksColumnsColumnOneFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"actions"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksColumnsColumnOneActionsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"social"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksColumnsColumnOneSocialFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"newsletter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksColumnsColumnOneNewsletterFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksColumnsColumnTwoActionsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"variant"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksColumnsColumnTwoSocialFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"tina"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"discord"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"github"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"twitter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksColumnsColumnTwoNewsletterFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"style"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksColumnsColumnTwoFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"actions"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksColumnsColumnTwoActionsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"social"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksColumnsColumnTwoSocialFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"newsletter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksColumnsColumnTwoNewsletterFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksColumnsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"options"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksColumnsOptionsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"columnOne"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksColumnsColumnOneFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"columnTwo"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksColumnsColumnTwoFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksStoryFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksFeatureGridItemsActionsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"variant"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksFeatureGridItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"actions"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFeatureGridItemsActionsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksFeatureGridFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFeatureGridItemsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksLogoGridItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"logo"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksLogoGridFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksLogoGridItemsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksRoadmapGridItemsActionsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"variant"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksRoadmapGridItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"status"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"actions"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksRoadmapGridItemsActionsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksRoadmapGridOptionsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"paddingTop"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"paddingBottom"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksRoadmapGridFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksRoadmapGridItemsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"options"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksRoadmapGridOptionsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksRecentPostsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DatetimeFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"after"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"before"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eq"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"exists"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"in"},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksTestimonialsTestimonialsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"username"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"avatar"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"date"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DatetimeFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"testimonial"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksTestimonialsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"testimonials"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksTestimonialsTestimonialsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksQuoteFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title2"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subtext"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"logo"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksEventsCardItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"startDate"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DatetimeFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"startTime"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"endDate"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DatetimeFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"endTime"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"timezone"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"location"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"image"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"markerLAT"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"markerLONG"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksEventsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"cardItems"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksEventsCardItemsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksCompareBoxCriteriaItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"criteria"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"description"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksCompareBoxCompaniesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"logoColour"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"logoWhite"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"active"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"isHidden"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"criteria1"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"criteria2"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"criteria3"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"criteria4"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"criteria5"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"criteria6"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"criteria7"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"criteria8"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"criteria9"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksCompareBoxFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"criteriaItems"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksCompareBoxCriteriaItemsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"companies"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksCompareBoxCompaniesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksBookingFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"description"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksMediaComponentMediaItemCloudinaryMediaComponentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"media"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksMediaComponentMediaItemYoutubeMediaFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"embedUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksMediaComponentMediaItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"cloudinaryMediaComponent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksMediaComponentMediaItemCloudinaryMediaComponentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"youtubeMedia"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksMediaComponentMediaItemYoutubeMediaFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksMediaComponentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"mediaItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksMediaComponentMediaItemFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksTextMediaColumnComponentMediaColumnItemCloudinaryMediaComponentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"media"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksTextMediaColumnComponentMediaColumnItemYoutubeMediaFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"embedUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksTextMediaColumnComponentMediaColumnItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"cloudinaryMediaComponent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksTextMediaColumnComponentMediaColumnItemCloudinaryMediaComponentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"youtubeMedia"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksTextMediaColumnComponentMediaColumnItemYoutubeMediaFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksTextMediaColumnComponentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"isVideoOnLeft"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"body"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"mediaColumnItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksTextMediaColumnComponentMediaColumnItemFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksTinaBannerFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backdrop"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"leftFig"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"rightFig"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"leftScreen"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"rightScreen"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centerFig"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"llama"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksHighlightsSectionHighlightColumnHighlightsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksHighlightsSectionHighlightColumnFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"heading"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"highlights"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksHighlightsSectionHighlightColumnHighlightsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksHighlightsSectionFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"highlightColumn"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksHighlightsSectionHighlightColumnFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksSpacerFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"spacingPx"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"spacingPxMobile"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksCarouselFeatureItemsButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"variant"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksCarouselFeatureItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon2"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"button"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksCarouselFeatureItemsButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksCarouselFeatureFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"blockHeadline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksCarouselFeatureItemsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"hero"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksHeroFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"features"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFeaturesFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"flying"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFlyingFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"pricing"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksPricingFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"faq"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFaqFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showcase"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksShowcaseFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"columns"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksColumnsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"story"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksStoryFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"featureGrid"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFeatureGridFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"logoGrid"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksLogoGridFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"roadmapGrid"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksRoadmapGridFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"recentPosts"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksRecentPostsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"testimonials"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksTestimonialsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"quote"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksQuoteFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"events"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksEventsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CompareBox"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksCompareBoxFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"booking"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksBookingFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"mediaComponent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksMediaComponentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"textMediaColumnComponent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksTextMediaColumnComponentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"tinaBanner"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksTinaBannerFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"highlightsSection"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksHighlightsSectionFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"spacer"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksSpacerFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"carouselFeature"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksCarouselFeatureFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"seo"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSeoFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"blocks"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFilter"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageConnectionEdges"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"cursor"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"node"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[{"kind":"NamedType","name":{"kind":"Name","value":"Connection"}}],"directives":[],"name":{"kind":"Name","value":"PageConnection"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"pageInfo"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageInfo"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"totalCount"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"edges"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageConnectionEdges"}}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"DocNext"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"Doc"}},{"kind":"NamedType","name":{"kind":"Name","value":"Examples"}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"DocPrevious"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"Doc"}},{"kind":"NamedType","name":{"kind":"Name","value":"Examples"}}]},{"kind":"ObjectTypeDefinition","interfaces":[{"kind":"NamedType","name":{"kind":"Name","value":"Node"}},{"kind":"NamedType","name":{"kind":"Name","value":"Document"}}],"directives":[],"name":{"kind":"Name","value":"Doc"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"last_edited"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"next"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocNext"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"previous"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocPrevious"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"body"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"id"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ID"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"_sys"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"SystemInfo"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"_values"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocNextFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"doc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"examples"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ExamplesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocPreviousFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"doc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"examples"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ExamplesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocBodyYoutubeFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"embedSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocBodyGraphQLCodeBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"query"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"response"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"preselectResponse"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocBodyWarningCalloutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"body"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocBodyIframeFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iframeSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocBodyCloudinaryVideoFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocBodyWebmEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"embedSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocBodyImageAndTextFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"docText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"image"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocBodySummaryTabFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"heading"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Youtube"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocBodyYoutubeFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"GraphQLCodeBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocBodyGraphQLCodeBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"WarningCallout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocBodyWarningCalloutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Iframe"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocBodyIframeFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CloudinaryVideo"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocBodyCloudinaryVideoFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"WebmEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocBodyWebmEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ImageAndText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocBodyImageAndTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"SummaryTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocBodySummaryTabFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"last_edited"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"next"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocNextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"previous"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocPreviousFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"body"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocBodyFilter"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"DocConnectionEdges"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"cursor"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"node"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Doc"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[{"kind":"NamedType","name":{"kind":"Name","value":"Connection"}}],"directives":[],"name":{"kind":"Name","value":"DocConnection"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"pageInfo"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageInfo"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"totalCount"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"edges"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"DocConnectionEdges"}}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"PostPrev"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"Post"}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"PostNext"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"Post"}}]},{"kind":"ObjectTypeDefinition","interfaces":[{"kind":"NamedType","name":{"kind":"Name","value":"Node"}},{"kind":"NamedType","name":{"kind":"Name","value":"Document"}}],"directives":[],"name":{"kind":"Name","value":"Post"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"date"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"last_edited"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"author"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"prev"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"PostPrev"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"next"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"PostNext"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"body"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"id"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ID"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"_sys"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"SystemInfo"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"_values"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PostPrevFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"post"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PostFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PostNextFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"post"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PostFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PostBodyWarningCalloutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"body"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PostBodyYoutubeFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"embedSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PostBodyWebmEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"embedSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PostBodyGraphQLCodeBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"request"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"response"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PostBodyIframeFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iframeSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PostBodyCreateAppCtaFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ctaText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"cliText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PostBodyCalloutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"description"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PostBodyCodesandboxFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"embedSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PostBodyDiagramFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PostBodyWideImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PostBodyCustomFieldComponentDemoFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"test"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PostBodyCloudinaryVideoFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PostBodyButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PostBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"WarningCallout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PostBodyWarningCalloutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Youtube"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PostBodyYoutubeFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"WebmEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PostBodyWebmEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"GraphQLCodeBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PostBodyGraphQLCodeBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Iframe"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PostBodyIframeFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CreateAppCta"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PostBodyCreateAppCtaFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Callout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PostBodyCalloutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Codesandbox"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PostBodyCodesandboxFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Diagram"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PostBodyDiagramFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"WideImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PostBodyWideImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomFieldComponentDemo"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PostBodyCustomFieldComponentDemoFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CloudinaryVideo"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PostBodyCloudinaryVideoFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Button"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PostBodyButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PostFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"date"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"last_edited"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"author"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"prev"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PostPrevFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"next"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PostNextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"body"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PostBodyFilter"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PostConnectionEdges"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"cursor"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"node"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Post"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[{"kind":"NamedType","name":{"kind":"Name","value":"Connection"}}],"directives":[],"name":{"kind":"Name","value":"PostConnection"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"pageInfo"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageInfo"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"totalCount"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"edges"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PostConnectionEdges"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ExamplesExamples"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"description"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"image"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[{"kind":"NamedType","name":{"kind":"Name","value":"Node"}},{"kind":"NamedType","name":{"kind":"Name","value":"Document"}}],"directives":[],"name":{"kind":"Name","value":"Examples"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"examples"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ExamplesExamples"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"id"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ID"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"_sys"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"SystemInfo"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"_values"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ExamplesExamplesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"description"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"image"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ExamplesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"examples"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ExamplesExamplesFilter"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ExamplesConnectionEdges"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"cursor"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"node"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Examples"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[{"kind":"NamedType","name":{"kind":"Name","value":"Connection"}}],"directives":[],"name":{"kind":"Name","value":"ExamplesConnection"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"pageInfo"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageInfo"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"totalCount"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"edges"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ExamplesConnectionEdges"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"MeetingLinksBookingCard"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"name"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"description"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"image"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"url"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[{"kind":"NamedType","name":{"kind":"Name","value":"Node"}},{"kind":"NamedType","name":{"kind":"Name","value":"Document"}}],"directives":[],"name":{"kind":"Name","value":"MeetingLinks"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"bookingCard"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"MeetingLinksBookingCard"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"id"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ID"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"_sys"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"SystemInfo"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"_values"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"MeetingLinksBookingCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"description"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"image"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"MeetingLinksFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bookingCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"MeetingLinksBookingCardFilter"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"MeetingLinksConnectionEdges"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"cursor"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"node"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"MeetingLinks"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[{"kind":"NamedType","name":{"kind":"Name","value":"Connection"}}],"directives":[],"name":{"kind":"Name","value":"MeetingLinksConnection"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"pageInfo"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageInfo"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"totalCount"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"edges"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"MeetingLinksConnectionEdges"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[{"kind":"NamedType","name":{"kind":"Name","value":"Node"}},{"kind":"NamedType","name":{"kind":"Name","value":"Document"}}],"directives":[],"name":{"kind":"Name","value":"WhatsNewTinaCMS"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"versionNumber"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"dateReleased"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"body"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"id"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ID"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"_sys"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"SystemInfo"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"_values"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"WhatsNewTinaCMSFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"versionNumber"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"dateReleased"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DatetimeFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"body"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"WhatsNewTinaCMSConnectionEdges"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"cursor"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"node"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"WhatsNewTinaCMS"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[{"kind":"NamedType","name":{"kind":"Name","value":"Connection"}}],"directives":[],"name":{"kind":"Name","value":"WhatsNewTinaCMSConnection"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"pageInfo"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageInfo"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"totalCount"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"edges"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"WhatsNewTinaCMSConnectionEdges"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[{"kind":"NamedType","name":{"kind":"Name","value":"Node"}},{"kind":"NamedType","name":{"kind":"Name","value":"Document"}}],"directives":[],"name":{"kind":"Name","value":"WhatsNewTinaCloud"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"versionNumber"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"dateReleased"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"body"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"id"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ID"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"_sys"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"SystemInfo"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"_values"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"WhatsNewTinaCloudFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"versionNumber"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"dateReleased"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DatetimeFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"body"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"WhatsNewTinaCloudConnectionEdges"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"cursor"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"node"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"WhatsNewTinaCloud"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[{"kind":"NamedType","name":{"kind":"Name","value":"Connection"}}],"directives":[],"name":{"kind":"Name","value":"WhatsNewTinaCloudConnection"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"pageInfo"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageInfo"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"totalCount"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"edges"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"WhatsNewTinaCloudConnectionEdges"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"NavigationBarNavItemStringItem"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"href"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"NavigationBarNavItemGroupOfStringItemsItems"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"href"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"NavigationBarNavItemGroupOfStringItems"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"items"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"NavigationBarNavItemGroupOfStringItemsItems"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"NavigationBarNavItemModalButton"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"icon"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"color"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"size"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"modal"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"icon2"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"NavigationBarNavItem"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"NavigationBarNavItemStringItem"}},{"kind":"NamedType","name":{"kind":"Name","value":"NavigationBarNavItemGroupOfStringItems"}},{"kind":"NamedType","name":{"kind":"Name","value":"NavigationBarNavItemModalButton"}}]},{"kind":"ObjectTypeDefinition","interfaces":[{"kind":"NamedType","name":{"kind":"Name","value":"Node"}},{"kind":"NamedType","name":{"kind":"Name","value":"Document"}}],"directives":[],"name":{"kind":"Name","value":"NavigationBar"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"navItem"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"NavigationBarNavItem"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"id"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ID"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"_sys"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"SystemInfo"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"_values"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"NavigationBarNavItemStringItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"href"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"NavigationBarNavItemGroupOfStringItemsItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"href"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"NavigationBarNavItemGroupOfStringItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NavigationBarNavItemGroupOfStringItemsItemsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"NavigationBarNavItemModalButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"modal"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon2"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"NavigationBarNavItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"stringItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NavigationBarNavItemStringItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"groupOfStringItems"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NavigationBarNavItemGroupOfStringItemsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"modalButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NavigationBarNavItemModalButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"NavigationBarFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"navItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NavigationBarNavItemFilter"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"NavigationBarConnectionEdges"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"cursor"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"node"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"NavigationBar"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[{"kind":"NamedType","name":{"kind":"Name","value":"Connection"}}],"directives":[],"name":{"kind":"Name","value":"NavigationBarConnection"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"pageInfo"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageInfo"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"totalCount"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"edges"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"NavigationBarConnectionEdges"}}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsItemsItemsItemSlug"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"Doc"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsItemsItemsItem"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"slug"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsItemsItemsItemSlug"}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsItemsItems"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsItemsItemsItem"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsItems"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"items"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsItemsItems"}}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsItemSlug"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"Doc"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsItem"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"slug"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsItemSlug"}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItems"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsItems"}},{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsItem"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItems"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"items"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItems"}}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemSlug"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"Doc"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItem"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"slug"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemSlug"}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItems"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItems"}},{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItem"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItems"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"items"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItems"}}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemSlug"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"Doc"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItem"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"slug"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemSlug"}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItems"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItems"}},{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItem"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroup"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"items"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItems"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[{"kind":"NamedType","name":{"kind":"Name","value":"Node"}},{"kind":"NamedType","name":{"kind":"Name","value":"Document"}}],"directives":[],"name":{"kind":"Name","value":"DocsTableOfContents"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"supermenuGroup"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroup"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"id"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ID"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"_sys"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"SystemInfo"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"_values"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsItemsItemsItemSlugFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"doc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsItemsItemsItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"slug"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsItemsItemsItemSlugFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsItemsItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"item"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsItemsItemsItemFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsItemsItemsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsItemSlugFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"doc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"slug"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsItemSlugFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsItemsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"item"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsItemFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemSlugFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"doc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"slug"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemSlugFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"item"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemSlugFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"doc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"slug"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemSlugFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"item"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocsTableOfContentsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"supermenuGroup"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupFilter"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"DocsTableOfContentsConnectionEdges"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"cursor"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"node"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContents"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[{"kind":"NamedType","name":{"kind":"Name","value":"Connection"}}],"directives":[],"name":{"kind":"Name","value":"DocsTableOfContentsConnection"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"pageInfo"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageInfo"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"totalCount"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"edges"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsConnectionEdges"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Mutation"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"addPendingDocument"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"collection"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"template"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"DocumentNode"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"updateDocument"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"collection"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"params"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"DocumentUpdateMutation"}}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"DocumentNode"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"deleteDocument"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"collection"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"DocumentNode"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"createDocument"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"collection"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"params"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"DocumentMutation"}}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"DocumentNode"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"createFolder"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"collection"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"DocumentNode"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"updatePage"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"params"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageMutation"}}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Page"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"createPage"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"params"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageMutation"}}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Page"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"updateDoc"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"params"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"DocMutation"}}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Doc"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"createDoc"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"params"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"DocMutation"}}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Doc"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"updatePost"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"params"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PostMutation"}}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Post"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"createPost"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"params"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PostMutation"}}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Post"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"updateExamples"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"params"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ExamplesMutation"}}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Examples"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"createExamples"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"params"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ExamplesMutation"}}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Examples"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"updateMeetingLinks"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"params"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"MeetingLinksMutation"}}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"MeetingLinks"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"createMeetingLinks"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"params"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"MeetingLinksMutation"}}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"MeetingLinks"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"updateWhatsNewTinaCMS"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"params"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"WhatsNewTinaCMSMutation"}}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"WhatsNewTinaCMS"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"createWhatsNewTinaCMS"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"params"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"WhatsNewTinaCMSMutation"}}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"WhatsNewTinaCMS"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"updateWhatsNewTinaCloud"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"params"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"WhatsNewTinaCloudMutation"}}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"WhatsNewTinaCloud"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"createWhatsNewTinaCloud"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"params"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"WhatsNewTinaCloudMutation"}}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"WhatsNewTinaCloud"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"updateNavigationBar"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"params"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"NavigationBarMutation"}}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"NavigationBar"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"createNavigationBar"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"params"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"NavigationBarMutation"}}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"NavigationBar"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"updateDocsTableOfContents"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"params"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsMutation"}}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContents"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"createDocsTableOfContents"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"params"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsMutation"}}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContents"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocumentUpdateMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"page"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"doc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"post"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PostMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"examples"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ExamplesMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"meetingLinks"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"MeetingLinksMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"WhatsNewTinaCMS"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"WhatsNewTinaCMSMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"WhatsNewTinaCloud"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"WhatsNewTinaCloudMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"navigationBar"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NavigationBarMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"docsTableOfContents"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocumentMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"page"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"doc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"post"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PostMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"examples"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ExamplesMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"meetingLinks"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"MeetingLinksMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"WhatsNewTinaCMS"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"WhatsNewTinaCMSMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"WhatsNewTinaCloud"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"WhatsNewTinaCloudMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"navigationBar"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NavigationBarMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"docsTableOfContents"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsMutation"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSeoMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"hasCustomSuffix"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"description"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksHeroMediaImageMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"image"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksHeroMediaVideoMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksHeroMediaMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"image"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksHeroMediaImageMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"video"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksHeroMediaVideoMutation"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksHeroButtonsActionsMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"variant"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksHeroButtonsModalButtonMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"modal"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksHeroButtonsCodeButtonMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksHeroButtonsMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"actions"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksHeroButtonsActionsMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"modalButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksHeroButtonsModalButtonMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"codeButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksHeroButtonsCodeButtonMutation"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksHeroMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"media"},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksHeroMediaMutation"}}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"margin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"spacing"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"smallerMobileBodyText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttons"},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksHeroButtonsMutation"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesButtonsActionsMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"variant"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesButtonsModalButtonMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"modal"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesButtonsCodeButtonMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesButtonsMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"actions"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesButtonsActionsMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"modalButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesButtonsModalButtonMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"codeButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesButtonsCodeButtonMutation"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesMediaImageMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"image"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesMediaVideoMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesMediaCodeMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"file"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"code"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"language"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"scale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesMediaMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"image"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesMediaImageMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"video"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesMediaVideoMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"code"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesMediaCodeMutation"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttons"},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesButtonsMutation"}}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"media"},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesMediaMutation"}}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"isReversed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imageBackground"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksFeaturesMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"features"},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFeaturesFeaturesMutation"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksFlyingButtonsActionsMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"variant"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksFlyingButtonsModalButtonMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"modal"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksFlyingButtonsCodeButtonMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksFlyingButtonsMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"actions"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFlyingButtonsActionsMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"modalButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFlyingButtonsModalButtonMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"codeButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFlyingButtonsCodeButtonMutation"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksFlyingMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttons"},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFlyingButtonsMutation"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksPricingFreeTierCardItemMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"description"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksPricingFreeTierButtonsActionsMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"variant"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksPricingFreeTierButtonsModalButtonMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"modal"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksPricingFreeTierButtonsCodeButtonMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksPricingFreeTierButtonsMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"actions"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksPricingFreeTierButtonsActionsMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"modalButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksPricingFreeTierButtonsModalButtonMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"codeButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksPricingFreeTierButtonsCodeButtonMutation"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksPricingFreeTierMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"description"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"price"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"annualPrice"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"annualDescription"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"interval"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"cardItem"},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksPricingFreeTierCardItemMutation"}}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttons"},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksPricingFreeTierButtonsMutation"}}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"isStarred"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksPricingPlansCardItemMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"description"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksPricingPlansButtonsActionsMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"variant"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksPricingPlansButtonsModalButtonMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"modal"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksPricingPlansButtonsCodeButtonMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksPricingPlansButtonsMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"actions"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksPricingPlansButtonsActionsMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"modalButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksPricingPlansButtonsModalButtonMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"codeButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksPricingPlansButtonsCodeButtonMutation"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksPricingPlansMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"description"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"price"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"annualPrice"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"annualDescription"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"interval"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"cardItem"},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksPricingPlansCardItemMutation"}}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttons"},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksPricingPlansButtonsMutation"}}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"isStarred"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksPricingMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"freeTier"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksPricingFreeTierMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"intro"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"pillSwitchVisibileText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"pillSwitchToggleText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"plans"},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksPricingPlansMutation"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksFaqQuestionsMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"question"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"answer"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksFaqMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"intro"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"questions"},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFaqQuestionsMutation"}}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksContentOptionsMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"narrow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"align"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksContentMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"options"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksContentOptionsMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksShowcaseItemsMediaMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksShowcaseItemsMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"media"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksShowcaseItemsMediaMutation"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksShowcaseMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksShowcaseItemsMutation"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksColumnsOptionsMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"columns"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"narrow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"align"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksColumnsMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"options"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksColumnsOptionsMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"columnOne"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"columnTwo"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksStoryMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksFeatureGridItemsActionsMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"variant"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksFeatureGridItemsMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"actions"},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFeatureGridItemsActionsMutation"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksFeatureGridMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFeatureGridItemsMutation"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksLogoGridItemsMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"logo"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksLogoGridMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksLogoGridItemsMutation"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksRoadmapGridItemsActionsMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"variant"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksRoadmapGridItemsMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"status"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"actions"},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksRoadmapGridItemsActionsMutation"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksRoadmapGridOptionsMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"paddingTop"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"paddingBottom"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksRoadmapGridMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksRoadmapGridItemsMutation"}}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"options"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksRoadmapGridOptionsMutation"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksRecentPostsMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksTestimonialsTestimonialsMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"username"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"avatar"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"date"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"testimonial"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksTestimonialsMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"testimonials"},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksTestimonialsTestimonialsMutation"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksQuoteMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title2"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subtext"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"logo"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksEventsCardItemsMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"startDate"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"startTime"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"endDate"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"endTime"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"timezone"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"location"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"image"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"markerLAT"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"markerLONG"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksEventsMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"cardItems"},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksEventsCardItemsMutation"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksCompareBoxCriteriaItemsMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"criteria"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"description"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksCompareBoxCompaniesMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"logoColour"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"logoWhite"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"active"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"isHidden"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"criteria1"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"criteria2"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"criteria3"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"criteria4"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"criteria5"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"criteria6"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"criteria7"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"criteria8"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"criteria9"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksCompareBoxMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"criteriaItems"},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksCompareBoxCriteriaItemsMutation"}}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"companies"},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksCompareBoxCompaniesMutation"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksBookingMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"description"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksMediaComponentMediaItemCloudinaryMediaComponentMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"media"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksMediaComponentMediaItemYoutubeMediaMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"embedUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksMediaComponentMediaItemMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"cloudinaryMediaComponent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksMediaComponentMediaItemCloudinaryMediaComponentMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"youtubeMedia"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksMediaComponentMediaItemYoutubeMediaMutation"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksMediaComponentMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"mediaItem"},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksMediaComponentMediaItemMutation"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksTextMediaColumnComponentMediaColumnItemCloudinaryMediaComponentMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"media"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksTextMediaColumnComponentMediaColumnItemYoutubeMediaMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"embedUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksTextMediaColumnComponentMediaColumnItemMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"cloudinaryMediaComponent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksTextMediaColumnComponentMediaColumnItemCloudinaryMediaComponentMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"youtubeMedia"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksTextMediaColumnComponentMediaColumnItemYoutubeMediaMutation"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksTextMediaColumnComponentMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"isVideoOnLeft"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"body"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"mediaColumnItem"},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksTextMediaColumnComponentMediaColumnItemMutation"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksTinaBannerMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backdrop"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"leftFig"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"rightFig"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"leftScreen"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"rightScreen"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centerFig"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"llama"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksHighlightsSectionHighlightColumnHighlightsMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksHighlightsSectionHighlightColumnMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"heading"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"highlights"},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksHighlightsSectionHighlightColumnHighlightsMutation"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksHighlightsSectionMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"highlightColumn"},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksHighlightsSectionHighlightColumnMutation"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksSpacerMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"spacingPx"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"spacingPxMobile"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksCarouselFeatureItemsButtonMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"variant"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksCarouselFeatureItemsMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon2"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"button"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksCarouselFeatureItemsButtonMutation"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksCarouselFeatureMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"blockHeadline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksCarouselFeatureItemsMutation"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBlocksMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"hero"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksHeroMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"features"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFeaturesMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"flying"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFlyingMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"pricing"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksPricingMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"faq"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFaqMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksContentMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showcase"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksShowcaseMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"columns"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksColumnsMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"story"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksStoryMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"featureGrid"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksFeatureGridMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"logoGrid"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksLogoGridMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"roadmapGrid"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksRoadmapGridMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"recentPosts"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksRecentPostsMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"testimonials"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksTestimonialsMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"quote"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksQuoteMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"events"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksEventsMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CompareBox"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksCompareBoxMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"booking"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksBookingMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"mediaComponent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksMediaComponentMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"textMediaColumnComponent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksTextMediaColumnComponentMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"tinaBanner"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksTinaBannerMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"highlightsSection"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksHighlightsSectionMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"spacer"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksSpacerMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"carouselFeature"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksCarouselFeatureMutation"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"seo"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSeoMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"blocks"},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBlocksMutation"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"last_edited"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"next"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"previous"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"body"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PostMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"date"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"last_edited"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"author"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"prev"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"next"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"body"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ExamplesExamplesMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"description"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"image"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ExamplesMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"examples"},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ExamplesExamplesMutation"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"MeetingLinksBookingCardMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"description"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"image"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"MeetingLinksMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bookingCard"},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"MeetingLinksBookingCardMutation"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"WhatsNewTinaCMSMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"versionNumber"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"dateReleased"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"body"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"WhatsNewTinaCloudMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"versionNumber"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"dateReleased"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"body"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"NavigationBarNavItemStringItemMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"href"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"NavigationBarNavItemGroupOfStringItemsItemsMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"href"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"NavigationBarNavItemGroupOfStringItemsMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"NavigationBarNavItemGroupOfStringItemsItemsMutation"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"NavigationBarNavItemModalButtonMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"modal"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon2"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"NavigationBarNavItemMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"stringItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NavigationBarNavItemStringItemMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"groupOfStringItems"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NavigationBarNavItemGroupOfStringItemsMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"modalButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NavigationBarNavItemModalButtonMutation"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"NavigationBarMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"navItem"},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"NavigationBarNavItemMutation"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsItemsItemsItemMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"slug"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsItemsItemsMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"item"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsItemsItemsItemMutation"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsItemsMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsItemsItemsMutation"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsItemMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"slug"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsItemsMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"item"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsItemMutation"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsItemsMutation"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"slug"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemsMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"item"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsItemMutation"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsItemsMutation"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"slug"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemsMutation"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"item"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsItemMutation"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupItemsMutation"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocsTableOfContentsMutation"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"supermenuGroup"},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"DocsTableOfContentsSupermenuGroupMutation"}}}}]}]}} \ No newline at end of file