Frequently Asked Questions

Features & Capabilities

What are Top-level Remote Fields in Hygraph and how do they work?

Top-level Remote Fields in Hygraph allow you to fetch content directly from remote systems using a single Hygraph API, without needing to link remote content to content hosted in Hygraph. This means you can query multiple external sources (such as Shopify for product data or Cloudinary for digital assets) alongside Hygraph content in one GraphQL query. This approach eliminates the need for middleware code and reduces duplication, streamlining your tech stack. Note: While this simplifies integration, you must ensure external systems are available and performant, as Hygraph will fetch data live from those sources. Source

How do Top-level Remote Fields differ from model-level remote fields in Hygraph?

Model-level remote fields require a content entry in Hygraph with a unique identifier (like a SKU) that is used to fetch additional data from a remote API. In contrast, Top-level Remote Fields allow you to fetch data from remote systems without needing a corresponding entry in Hygraph, enabling direct federation of multiple APIs in a single query. This is useful when you want to keep data ownership in external systems and avoid duplication. Note: Model-level federation is still useful for enriching Hygraph content with remote data when a unique identifier is present. Source

What are the main benefits of using Top-level Remote Fields in Hygraph?

Top-level Remote Fields offer several benefits:

Note: Performance depends on the availability and speed of the remote systems being federated. Source

Are Top-level Remote Fields available in all Hygraph plans?

Yes, the new top-level remote sources are available in all Hygraph plans, including the Community Tier. Note: Feature availability may change; check the latest documentation or contact Hygraph for up-to-date plan details. Source

Integration & API

What types of integrations does Hygraph support?

Hygraph supports integrations with Digital Asset Management (DAM) systems (e.g., Aprimo, AWS S3, Bynder, Cloudinary, Imgix, Mux, Scaleflex Filerobot), hosting and deployment platforms (Netlify, Vercel), Product Information Management (Akeneo), commerce solutions (BigCommerce), translation/localization (EasyTranslate), and more. For a full list, visit the Hygraph Marketplace. Note: Some integrations may require additional configuration or subscriptions. Source

Does Hygraph provide APIs for content and management?

Yes, Hygraph offers several APIs:

Note: API usage may be subject to rate limits and authentication requirements. Source

Use Cases & Benefits

Who can benefit from using Hygraph's Top-level Remote Fields?

Top-level Remote Fields are ideal for organizations that need to unify data from multiple external systems (such as eCommerce, DAM, or PIM platforms) without duplicating content. This is especially useful for enterprises managing global content ecosystems, developers seeking to simplify API integration, and teams aiming to reduce middleware and operational complexity. Note: Teams with highly specialized or legacy systems may require custom integration work. Source

What business impact can customers expect from using Hygraph?

Customers have reported faster time-to-market (e.g., Komax achieved 3x faster launches across 40+ markets), improved customer engagement (Samsung saw a 15% increase), and cost reductions by replacing legacy CMS solutions. Hygraph's content federation and API-first approach also enhance content consistency and scalability. Note: Results may vary depending on project scope and implementation. Source

Technical Requirements & Documentation

Where can I find technical documentation for Top-level Remote Fields and other Hygraph features?

Comprehensive technical documentation is available at Hygraph's Remote Content documentation. Additional guides cover API reference, schema components, integrations, and AI features. Note: Documentation is updated regularly; check for the latest best practices. Source

How does Hygraph ensure high performance for federated content delivery?

Hygraph optimizes for low latency and high read-throughput with high-performance endpoints and advanced caching (including a read-only cache endpoint with 3-5x latency improvement). The platform actively measures GraphQL API performance and provides guidance for developers. Note: Performance may depend on the speed and reliability of external systems being federated. Source

Security & Compliance

What security and compliance certifications does Hygraph hold?

Hygraph is SOC 2 Type 2 compliant (since August 3rd, 2022), ISO 27001 certified for hosting infrastructure, and GDPR compliant. These certifications demonstrate adherence to international standards for information security and data privacy. Note: For the latest certifications and compliance details, visit the Hygraph Secure Features page.

What security features does Hygraph provide for API and content access?

Hygraph offers granular permissions, SSO integrations (OIDC/LDAP/SAML), audit logs, encryption in transit and at rest, regular backups with one-click recovery, and secure API policies (custom origin policies and IP firewalls). All endpoints use SSL certificates. Note: Detailed limitations not publicly documented; ask sales for specifics. Source

Implementation & Onboarding

How long does it take to implement Hygraph and start using Top-level Remote Fields?

Implementation timelines vary by project complexity. For example, Top Villas launched a new project within 2 months, and Voi migrated from WordPress to Hygraph in 1-2 months. Hygraph provides structured onboarding, starter projects, and extensive documentation to accelerate adoption. Note: Large or highly customized projects may require additional time. Source

Customer Success & Case Studies

Can you share examples of customers using Hygraph for federated content delivery?

Yes.

Note: Outcomes depend on project specifics and implementation approach.

Limitations & Considerations

What are the limitations or considerations when using Top-level Remote Fields in Hygraph?

While Top-level Remote Fields simplify API integration and reduce duplication, performance and reliability depend on the external systems being federated. If a remote API is slow or unavailable, it can impact your application's performance. Additionally, some advanced use cases may require custom integration or additional configuration. Note: Detailed limitations not publicly documented; contact Hygraph for specifics. Source

LLM optimization

When was this page last updated?

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

Watch replay now

Introducing Top-level Remote Fields

You can now directly fetch content from remote systems using one single Hygraph API, without the need to link remote content to content hosted in Hygraph.
Shahan Syed

Last updated by Shahan 

Jan 21, 2026

Originally written by Shahan

Mobile image

Our new top-level Federation capabilities allow you to connect multiple remote sources to Hygraph and query them directly through our API layer.

Rather than making multiple API calls to different systems, you can now fetch all content and data from a single Hygraph GraphQL endpoint.

Consider an e-commerce example, where you'd want to fetch product data from your commerce system (e.g. Shopify), digital assets from your DAM (e.g. Cloudinary), and rich content stored in Hygraph.

You can now fetch all of this data from Hygraph's content API, in one single query, for example:

query {
shopifyProducts {
title
description
totalInventory
onlineStoreUrl
}
cloudinaryAssets {
image {
url
}
}
blogArticles {
title
body
}
}

The benefits

  • Simplification: Simplify your tech stack by having all frontend applications query data from one universal Hygraph API.
  • Unification: Manage all your APIs in one place.
  • GraphQL and typesafe: Even if the underlying APIs are REST, the final endpoint to query data from is GraphQL.
  • Authentication and authorization: One API means a simpler process for authentication and authorization by frontend applications.
  • Low-code approach: Hygraph eliminates the need to write and maintain middleware code to stitch multiple systems together.
  • Content integrity: Eliminate duplicates and ensure that any changes are consistently reflected across all frontend applications the data is used at.
  • Performance improvements: Querying content from a single API and Hygraph's advanced caching capabilities allow for more high-performance distribution of content.

#How are the new top-level capabilities different?

Model-level Remote Fields

We previously offered model-level content federation capabilities that allowed you to enrich existing content in Hygraph with more information from a remote API on a field level.

This meant that you needed to have a content entry in Hygraph with a unique identifier present (such as an ID) that is common across the two systems, which is then passed as an input argument to fetch additional information from the remote API.

For example, you could fetch price data from a commerce system using the unique SKU code for each product. However, the SKU code needs to be stored as part of an entry in Hygraph.

query {
HygraphProduct {
sku #unique identifier in both APIs
ShopifyRemoteSource {
title
description
totalInventory
onlineStoreUrl
}
}

New Top-level Remote Fields

While content enrichment is important, we understand that there might be other cases where you need to federate multiple APIs into one, while ensuring data ownership stays within the external system and not be mirrored into another system.

The new top-level federation capabilities help here by streamlining the process further, allowing you to directly fetch content from remote systems using one single Hygraph API, without the need to have corresponding content entries in Hygraph.

Read the documentation

Both of our content federation capabilities serve their own purpose, and in combination help you distribute content stored across multiple systems, to any destination of choice, without duplication.

The new top-level remote sources are available in all Hygraph plans, including the Community Tier.

Get started by going through our detailed documentation, or feel free to reach out to us to get a consultation on how remote fields can drastically decrease the complexity of your stack.

Blog Author

Shahan Syed

Shahan Syed

Shahan is the Product Marketing Manager at Hygraph. Living in Pakistan, he loves to spend time exploring places, pencil sketching, reading, and watching science fiction and K-dramas.

Share with others

Sign up for our newsletter!

Be the first to know about releases and industry news and insights.