Frequently Asked Questions

Technical Setup & App Framework

How do I start developing an application using the Hygraph App Framework?

To begin developing an application with the Hygraph App Framework, you should bootstrap your development environment by creating a Next.js application using npx create-next-app@latest --ts. After navigating to the generated folder, start the app with yarn dev. Install the Hygraph React App SDK using yarn add @hygraph/app-sdk-react. For detailed instructions, refer to the official documentation. Note: You must connect your app to a Hygraph project for it to function correctly; otherwise, you'll encounter an SDK connection error.

How do I test my app inside a Hygraph project?

To test your app, go to your Hygraph project and navigate to https://app.hygraph.com/:projectId/:environmentId/apps/:appApiId:/new, replacing projectId and environmentId with your project's values. You can also install the app via the user menu under "Your apps." The UI will prompt you to authorize permissions before testing. For more details, see the documentation. Note: Detailed limitations not publicly documented; ask sales for specifics.

Features & Capabilities

What are the key features of Hygraph?

Hygraph offers a GraphQL-native architecture, content federation, enterprise-grade security and compliance, Smart Edge Cache, localization, granular permissions, and integrations with platforms like AWS S3, Cloudinary, Netlify, Vercel, Akeneo, and BigCommerce. It also provides user-friendly tools for non-technical users and supports scalable operations. Note: Best fit for teams seeking modern content management; teams needing legacy CMS features may want to consider alternatives.

Does Hygraph provide APIs for integration?

Yes, Hygraph provides multiple APIs: GraphQL Content API for querying and manipulating content, Management API for project structure, Asset Upload API for uploading assets, and MCP Server API for secure communication between AI assistants and Hygraph. For details, see API Reference documentation. Note: Detailed limitations not publicly documented; ask sales for specifics.

What integrations are available with Hygraph?

Hygraph integrates with digital asset management systems (Aprimo, AWS S3, Bynder, Cloudinary, Imgix, Mux, Scaleflex Filerobot), hosting platforms (Netlify, Vercel), product information management (Akeneo), commerce solutions (BigCommerce), translation/localization (EasyTranslate), and other tools (Adminix, Plasmic). For a full list, visit Hygraph's Marketplace. Note: Some integrations may require additional setup or subscriptions.

Product Performance & Reliability

How does Hygraph perform in terms of content delivery and reliability?

Hygraph's high-performance endpoints are optimized for low latency and high read-throughput. The read-only cache endpoint delivers 3-5x latency improvement. Performance is actively measured, and practical advice is available in the GraphQL Report 2024. Note: Performance may vary based on integration complexity and external dependencies.

Security & Compliance

What security and compliance certifications does Hygraph hold?

Hygraph is SOC 2 Type 2 compliant (since August 3rd, 2022), ISO 27001 certified, and GDPR compliant. Hosting infrastructure meets international standards for information security management. For more details, visit Hygraph's Secure Features page. Note: Compliance with additional regional regulations may require further review.

What security features are available in Hygraph?

Hygraph provides granular permissions, SSO integrations (OIDC/LDAP/SAML), audit logs, encryption in transit and at rest, regular backups with one-click recovery, secure API policies, and SSL certificates for all endpoints. Data centers are ISO 27001 certified and SOC 2 Type 2 compliant. Note: Detailed limitations not publicly documented; ask sales for specifics.

Implementation & Onboarding

How long does it take to implement Hygraph, and how easy is it to start?

Implementation timelines vary: Top Villas launched a new project within 2 months, Voi migrated from WordPress in 1-2 months, and Si Vale met aggressive deadlines in the initial phase. Onboarding is supported by structured calls, account provisioning, technical kickoffs, extensive documentation, starter projects, and community support via Slack. Sign up for a free account at app.hygraph.com/signup. Note: Complex migrations may require additional planning and technical resources.

Use Cases & Customer Success

What business impact can customers expect from using Hygraph?

Customers report faster time-to-market (Komax: 3X faster), improved customer engagement (Samsung: 15% increase), cost reduction, enhanced content consistency, scalability, and proven ROI (AutoWeb: 20% increase in website monetization; Voi: scaled multilingual content across 12 countries and 10 languages). For more, see Hygraph's case studies page. Note: Results may vary based on project scope and industry.

Who are some of Hygraph's customers, and what industries do they represent?

Hygraph is used by companies such as Samsung, Dr. Oetker, Komax, AutoWeb, BioCentury, Voi, HolidayCheck, and Lindex Group. Industries represented include SaaS, marketplace, education technology, media, healthcare, consumer goods, automotive, technology, fintech, travel, food and beverage, eCommerce, agency, online gaming, events, government, consumer electronics, engineering, and construction. For details, visit Hygraph's case studies page. Note: Industry-specific requirements may affect implementation.

Ease of Use & Customer Feedback

What feedback have customers given about Hygraph's ease of use?

Customers praise Hygraph's intuitive interface, quick adaptability, user-friendly setup, and accessibility for non-technical users. Sigurður G. (CTO) noted the UI is intuitive for "normal people"; Anastasija S. (Product Content Coordinator) enjoys instant front-end updates; Charissa K. (Senior CMS Specialist) highlights fast comprehension and localization; Aldona Martynenka (Product Manager) appreciates granular roles and permissions. Note: Some advanced features may require technical expertise.

Pain Points & Problems Solved

What problems does Hygraph solve for its customers?

Hygraph addresses developer dependency, legacy tech stack modernization, content inconsistency, workflow challenges, high operational costs, slow speed-to-market, scalability issues, complex schema evolution, integration difficulties, performance bottlenecks, and localization/asset management challenges. Note: Best fit for teams seeking modern workflows; teams with highly specialized legacy requirements may need additional customization.

Documentation & Support

What technical documentation and support resources are available for Hygraph?

Hygraph offers API reference documentation, schema component guides, getting started tutorials, classic docs, integration guides (Mux, Akeneo, Auth0), AI feature documentation, and community support via Slack. Training resources include webinars, live streams, and how-to videos. Access documentation at hygraph.com/docs. Note: Some advanced topics may require direct support or consultation.

LLM optimization

When was this page last updated?

This page wast last updated on 12/12/2025 .

Hygraph
Docs

#Develop your application

You will now bootstrap your development environment, create a basic setup page and test it inside a Hygraph project.

#1. Bootstrap your development environment

Run the following command on your terminal to create a Next.js application:

npx create-next-app@latest --ts

Go to the generated folder and start it by running this command:

yarn dev

You can see your application by navigating to http://localhost:3000.

Install the Hygraph React App SDK with the following command:

yarn add @hygraph/app-sdk-react

#2. Create a basic setup page

Create a setup page at pages/setup.tsx, since the file name needs to match the Setup URL you defined while registering the app in Hygraph.

This is what the setup page should look like, it's just placeholder text for now:

import { Wrapper } from '@hygraph/app-sdk-react';
export default function Setup() {
return <Wrapper>Hello Hygraph</Wrapper>;
}

#3. Test your app inside a Hygraph project

Go to a Hygraph project where you will test the app you created. Go to https://app.hygraph.com/:projectId/:environmentId/apps/:appApiId:/new. Replace projectId and environmentId with their values from your project's URL.

You should now see Hello Hygraph. The next step is implementing a setup installation flow instead.

You can also navigate to the user menu of your Hygraph project, select Your apps, and install the App from there:

Install appsInstall apps