Frequently Asked Questions

Getting Started & Prerequisites

What do I need before building a card grid with components in Hygraph?

To build a card grid with components in Hygraph, you need a Hygraph account and an active project. You can create a new project, clone the Card Grid Cookbook project, or use an existing project. Plan limits may affect your ability to add recipes, so review your plan details before starting. Note: Adjustments may be needed if integrating into an existing schema. Sign up here or create a project to begin. Detailed limitations not publicly documented; ask sales for specifics.

How can I quickly get started with the card grid recipe in Hygraph?

You can follow the step-by-step guide to build a card grid component from scratch, or clone the Card Grid Cookbook project, which contains all card grid recipes and configurations. Cloning lets you explore and compare different setups without manual creation. Find the recipe under the schema section labeled "Card Grid - Components." Note: Cloning is best for exploration; for production, follow the tutorial to match your schema needs. Clone the project here. Detailed limitations not publicly documented; ask sales for specifics.

Features & Capabilities

What is a card grid with components in Hygraph?

A card grid with components in Hygraph is a schema element that allows you to display a grid of cards, each built from reusable components. You can specify the number of columns, select card types dynamically, and set the gap size between cards. This approach keeps content entries manageable and enables editors to choose card types as needed. Note: Complex layouts may require additional schema planning. Learn more.

What schema elements are used to build a card grid with components?

Building a card grid with components involves enumerations (for options like theme, padding, and gap), basic and modular component fields, and nested components. Enumerations provide dropdowns for style choices, while modular component fields allow multiple card types in the grid. Nested components enable complex, reusable structures. Note: Overly complex nesting can make schemas harder to maintain. See components documentation.

What are enumerations in Hygraph and how are they used in the card grid recipe?

Enumerations in Hygraph are predefined sets of values used as dropdown options in your schema. In the card grid recipe, enumerations are used for selecting themes (e.g., light, dark), padding (large, medium, small), and card gaps (large, medium, small). These help standardize style options and make the schema more flexible. Note: Adding too many enumerations can complicate the editor experience. Learn more about enumerations.

What is the difference between basic and modular component fields in Hygraph?

Basic component fields allow only one component to be attached to a model, while modular component fields can have two or more components attached. Modular fields enable editors to select from multiple card types within the grid, increasing flexibility. Note: Modular fields add flexibility but may increase schema complexity. See documentation.

How do nested components work in Hygraph?

Nested components in Hygraph allow you to create components within other components, such as a card containing a button or link component. This enables reusable, hierarchical structures in your schema. Note: Deeply nested components can make content management more complex for editors. Read more.

Implementation & Workflow

What are the main steps to create a card grid with components in Hygraph?

The main steps are: 1) Create enumerations for style options, 2) Build link and button components, 3) Create card type components, 4) Assemble the card grid component with modular fields, and 5) Add fields for columns and card gap. Each step involves configuring fields and connecting components as described in the guide. Note: Schema planning is important to avoid rework. See the full guide.

Can I reuse card grid components across different models in Hygraph?

Yes, once created, the card grid component can be reused across different models in your Hygraph projects. This enables consistent layouts and reduces duplication. Note: If your models have unique requirements, you may need to adjust the component or schema accordingly. Learn more.

Documentation & Support

Where can I find more resources or get help with card grid components in Hygraph?

You can access detailed documentation on enumerations, components, and schema design in the Hygraph Docs. For community support, join the Hygraph Slack channel. Additional resources include the Card Grid Cookbook project and guides on advanced schema usage. Components documentation | Enumerations documentation | Join the community. Note: Official support channels may have response time limits depending on your plan.

Limitations & Best Practices

What are some limitations or best practices when building card grids with components in Hygraph?

Best practices include planning your schema before building, using enumerations to standardize options, and leveraging modular components for flexibility. Limitations include potential schema complexity with deep nesting and the need to adjust for unique project requirements. Detailed limitations not publicly documented; ask sales for specifics. See the guide.

LLM optimization

When was this page last updated?

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

Hygraph
Docs

#Card grid with components

#Overview

This guide shows how to build a card grid using nested components.

This card grid contains a number field so you can indicate how many columns the grid should have, a modular component that lets you select card types for your grid, and a dropdown menu to select the size of the gap between cards.

Here is an example that shows how this card grid could potentially look on your frontend:

Example card gridExample card grid

It is a good option when you have different card types but don't want your content entries to become very large and hard to manage. By adding all your card types to a modular component, you offer Editors the possibility to dynamically select which card type they need.

Card grid with componentsCard grid with components

#Prerequisites

  • REQUIRED: You need to have a Hygraph account. If you don't have one, you can sign up here.
  • REQUIRED: You need to have a Hygraph project.
    • OPTION 1: Create a project. This is the way to go if you want to follow the entire tutorial for learning purposes.
    • OPTION 2: Clone the cookbook project. This is the way to go if you're curious about how the card grids are made but don't want to follow the step-by-step creation process. This project contains the entire Card Grid Cookbook so you can compare them, or look into what instances they contain.
    • OPTION 3: Use an existing project of yours. If you have a project already and want to add this card grid to it, this is the way to go. In this case, you may need to adjust parts of the tutorial to your own project schema.

#Core concepts

In this guide, you'll work with enumerations, components, basic component fields, modular component fields, and nested components. Let's look into these concepts:

  • Enumerations: an enumeration is a predefined set of values that represents a list of possible options. You can use them to group values within a type.

  • Component: a predefined set of fields that can be reused across models and content entries. You can think of a component as a flexible, reusable template: you define the fields that will be used inside a component once, and then fill them with different content every time you use it in a content entry.

  • Basic component field: a component is a special field type in your Hygraph schema that defines which components of which type can be used in a model. Component fields can be of basic or modular types. A basic component field can only have one component attached to it. You can limit the number of component instances to one, or allow multiple component instances to be added in the content entry.

  • Modular component field: a modular component field can have two or more components attached to it.

  • Nested components: functionality that allows you to create components within a component, as if you had a parent component containing one or more child components.

#What you can do

This guide offers two paths:

  • Path 1: Use this guide to create a card grid component that you can reuse across different models in your Hygraph projects.
  • Path 2: Clone the project that contains the entire Card Grid cookbook to compare the different card grid configurations without having to clone multiple projects.

#Clone project

We have prepared a project that contains the entire Card Grid cookbook:

Clone this project

This cookbook contains all the recipes we have so far to create card grids, so you can compare the different card grid configurations without having to clone multiple projects.

To find this particular recipe in the cookbook project, navigate to the schema and look for "Card Grid - Components".

This project also contains a demo model that includes all the card grid components in the cookbook as basic component fields, as well as a modular component field that you can use as a card grid type selector.

#Step-by-step guide

Before we can build components, we sometimes need to create other schema elements that will later be added to those components as instances.

We will divide this process in steps to make it more manageable:

  1. Create enumerations: We will need to create three different enumerations to provide styling options.
  2. Create a component for links: We will create a simple link component for one of the card types we will work on afterward.
  3. Create a component for buttons: We will create a simple button component for one of the card types we will work on afterward.
  4. Create the card type components: We will create two components with slightly different card designs. The aim is to have the possibility to select a card type for our grid later on.
  5. Create the card grid: Finally, we'll combine all the elements we worked on before to generate a dynamic card grid with a modular component that allows card type selection.

#1. Create the enumerations

We will start by creating the enumerations that we can later add to our components as dropdown menus that will let us select different style options for our cards and card grid.

We'll start with the "Theme" enumeration. We'll navigate to our project schema and click +Add next to Enumerations.

We'll use the following information:

FieldInput
Display NameTheme
API IDTheme

Theme enumerationTheme enumeration

Next, we need to add enumeration values. These are the options we will get when using this later as a dropdown menu.

For the sake of this example, we will use simple styling options: dark & light. Later on, we will add this enumeration to our buttons and cards.

For every enumeration value, we need to enter a Display name, an API ID, and click Add.

We'll add the following values:

Display nameAPI ID
Lightlight
Darkdark

Theme enumeration valuesTheme enumeration values

We'll click Add enumeration to save.

Now that our theme enumeration has been created, we'll create another one for padding, so we can later use a dropdown to decide what type of padding our cards will have.

We'll use the following information to create the enumeration:

FieldInput
Display NamePadding
API IDPadding

Next, we need to add the following enumeration values in the same way we added values to the previous enumeration:

Display nameAPI ID
Largelarge
Mediummedium
Smallsmall

Padding enumeration valuesPadding enumeration values

We'll click Add enumeration to save.

We'll create one final enumeration that we will later use to select the type of gap between our cards on the grid. We'll use the following information:

FieldInput
Display NameCards gap
API IDCardsGap

Next, we need to add the following enumeration values:

Display nameAPI ID
Largelarge
Mediummedium
Smallsmall

Cards gap enumeration valuesCards gap enumeration values

Finally, we'll click Add enumeration to save.

It is time to create our first component. Our cards will need to have a link, and in this case we'll create a simple component for that.

We'll click +Add next to Components and we'll use the following information to create one:

FieldInput
Display NameLink
API IDLink
API ID PluralLinks

Link componentLink component

Click Add component to save.

We can now start adding instances to this component.

Let's start with a Single line text field, which will be the label of our link. We'll find it on the Add fields right sidebar, click on it, and use the following information:

TabFieldInput
SettingsDisplay NameLink label
SettingsAPI IDlinkLabel
SettingsUse as title field checkboxLeave this checkbox selected
ValidationsMake field required checkboxSelect this checkbox

Link component - LabelLink component - Label

We'll click Add to save.

Finally, let's add a Slug field, which will be our link URL. We'll find it on the Add fields right sidebar, click on it, and use the following information:

TabFieldInput
SettingsDisplay NameURL
SettingsAPI IDurl
SettingsLowercase checkboxLeave this checkbox selected
ValidationsMake field required checkboxSelect this checkbox
ValidationsSet field as unique checkboxLeave this checkbox selected
ValidationsMatch a specific pattern checkboxLeave this checkbox selected, and use the dropdown to select the URL pattern. Write "Input value does not match the expected format." in the Custom error message field.

Link component - URLLink component - URL

We'll click Add to save.

This is how you build a simple link component in Hygraph. You can add this component to different models in your schema. We will add this to our cards later on.

Link componentLink component

#3. Create the button component

One of the cards we will create later will use a button component. Let's create it!

We'll use the following information to create the component itself:

FieldInput
Display NameButton
API IDButton
API ID PluralButtons

Link componentLink component

We'll click Add component to save.

We can now start adding instances to this component.

Let's start with a Single line text field, which will be the label of our button. We'll find it on the Add fields right sidebar, click on it, and use the following information:

TabFieldInput
SettingsDisplay NameButton label
SettingsAPI IDbuttonLabel
SettingsUse as title field checkboxLeave this checkbox selected
ValidationsMake field required checkboxSelect this checkbox

Link component - LabelLink component - Label

We'll click Add to save.

Let's also add a Slug field, which will be our link URL. We'll find it on the Add fields right sidebar, click on it, and use the following information:

TabFieldInput
SettingsDisplay NameURL
SettingsAPI IDurl
SettingsLowercase checkboxLeave this checkbox selected
ValidationsMake field required checkboxSelect this checkbox
ValidationsSet field as unique checkboxLeave this checkbox selected
ValidationsMatch a specific pattern checkboxLeave this checkbox selected, and use the dropdown to select the URL pattern. Write "Input value does not match the expected format." in the Custom error message field.

Link component - URLLink component - URL

We'll click Add to save.

Finally, we'll add an Enumeration field for the button themes, which will be one of our dropdown menus. We'll find it on the Add fields right sidebar, click on it, and use the following information:

TabFieldInput
SettingsDisplay NameTheme
SettingsAPI IDtheme
SettingsEnumerationSelect "Theme" from the dropdown menu
ValidationsMake field required checkboxSelect this checkbox

Link component - ThemeLink component - Theme

We'll click Add to save.

Our button component should look like this:

Link component - ThemeLink component - Theme

#4. Create the card type components

We need to create cards so we can add them to our card grid. In this example, we will create two card types showing two typical card schema element combinations. Each card type is a component, which we will later on add to our grid.

To create the first card type, we'll click +Add next to Components and use the following information:

FieldInput
Display NameCard type 1
API IDCardType1
API ID PluralCardType1S

Card Type 1 componentCard Type 1 component

We'll click Add component to save.

We can now start adding instances to this component.

Let's start with a Single line text field, which will be the title of our card. We'll find it on the Add fields right sidebar, click on it, and use the following information:

TabFieldInput
SettingsDisplay NameTitle
SettingsAPI IDtitle
SettingsUse as title field checkboxLeave this checkbox selected
ValidationsMake field required checkboxSelect this checkbox

Card Type 1 component - TitleCard Type 1 component - Title

We'll click Add to save.

Next, we'll add a Rich text field, which will be the body of our card. We'll select the Rich text field from the right sidebar and use the following information to create it:

TabFieldInput
SettingsDisplay NameBody
SettingsAPI IDbody

Card Type 1 component - BodyCard Type 1 component - Body

We'll click Add to save.

The next thing we want to add here is the link component we created earlier, so our card can contain a link.

We'll select the Basic component field from the right sidebar and use the following information to create it:

TabFieldInput
SettingsDisplay NameLink
SettingsAPI IDlink
SettingsAllow multiple values checkboxSelect this checkbox. This will allow you to later on add more than one link to your card.
SettingsSelect component dropdown menuSelect the "Link" component

Card Type 1 component - Nested Link componentCard Type 1 component - Nested Link component

We'll click Add to save.

Next, we'll add an Enumeration field, which will be one of our dropdown menus. Once again, we'll find it on the Add fields right sidebar, click on it, and use the following information:

TabFieldInput
SettingsDisplay NameTheme
SettingsAPI IDtheme
SettingsEnumerationSelect "Theme" from the dropdown menu
ValidationsMake field required checkboxSelect this checkbox

Card Type 1 component - Theme enumerationCard Type 1 component - Theme enumeration

We'll click Add to save.

Finally, we'll add one more Enumeration field, for the padding options:

TabFieldInput
SettingsDisplay NamePadding
SettingsAPI IDpadding
SettingsEnumerationSelect "Padding" from the dropdown menu
ValidationsMake field required checkboxSelect this checkbox

Card Type 1 component - Padding enumerationCard Type 1 component - Padding enumeration

We'll click Add to save.

Our "Card type 1" component should look like this:

Card Type 1 componentCard Type 1 component

We now have our first card type ready! It contains a title, a body, a link component, and two enumerations that will let us select theme and padding options.

Let's now create our second card type component. We'll start by clicking +Add next to Components and repeating the process using this information:

FieldInput
Display NameCard type 2
API IDCardType2
API ID PluralCardType2S

Card Type 2 componentCard Type 2 component

We'll click Add component to save.

We can now start adding instances to this component.

Let's start with a Single line text field, which will be the title of our card. We'll find it on the Add fields right sidebar, click on it, and use the following information:

TabFieldInput
SettingsDisplay NameTitle
SettingsAPI IDtitle
SettingsUse as title field checkboxLeave this checkbox selected
ValidationsMake field required checkboxSelect this checkbox

Card Type 2 component - TitleCard Type 2 component - Title

We'll click Add to save.

Next, we'll add a Rich text field, which will be the body of our card. We'll select the Rich text field from the right sidebar and use the following information to create it:

TabFieldInput
SettingsDisplay NameBody
SettingsAPI IDbody
ValidationsMake field required checkboxSelect this checkbox

Card Type 2 component - BodyCard Type 2 component - Body

We'll click Add to save.

Next, we'll add an Asset picker field, so we can later add an image to our card. We'll select the Asset picker field from the right sidebar and use the following information to create it:

TabFieldInput
SettingsDisplay NameImage
SettingsAPI IDimage

Card Type 2 component - ImageCard Type 2 component - Image

We'll click Add to save.

The next thing we want to add here is the button component we created earlier. We'll select the Basic component field from the right sidebar and use the following information to create it:

TabFieldInput
SettingsDisplay NameButton
SettingsAPI IDbutton
SettingsSelect component dropdown menuSelect the "Button" component
ValidationsMake field required checkboxSelect this checkbox

Card Type 2 component - Nested button componentCard Type 2 component - Nested button component

We'll click Add to save.

Next, we'll add an Enumeration field, which will be one of our dropdown menus. Once again, we'll find it on the Add fields right sidebar, click on it, and use the following information:

TabFieldInput
SettingsDisplay NameTheme
SettingsAPI IDtheme
SettingsEnumerationSelect "Theme" from the dropdown menu
ValidationsMake field required checkboxSelect this checkbox

Card Type 2 component - Theme enumerationCard Type 2 component - Theme enumeration

We'll click Add to save.

Finally, we'll add one more Enumeration field, for the padding options:

TabFieldInput
SettingsDisplay NamePadding
SettingsAPI IDpadding
SettingsEnumerationSelect "Padding" from the dropdown menu
ValidationsMake field required checkboxSelect this checkbox

Card Type 2 component - Padding enumerationCard Type 2 component - Padding enumeration

We'll click Add to save.

Our "Card Type 2" component should look like this:

Card Type 2 componentCard Type 2 component

We now have our second card type ready! It contains a title, a body, a button component, an asset picker to add images, and two enumerations that will let us select theme and padding options.

#5. Create the card grid

At this point, we've created everything we need in order to start working on our card grid component. We'll create a new component using this information:

FieldInput
Display NameCard Grid - Components
API IDCardGridComponents
API ID PluralCardGridComponentss

Card grid componentCard grid component

We'll click Add component to save.

We can now start adding instances to this component.

Let's start with a Number field, which we can later use to indicate the number of columns that our grid should have.

We'll find it on the Add fields right sidebar, click on it, and use the following information:

TabFieldInput
SettingsDisplay NameColumns
SettingsAPI IDcolumns
ValidationsMake field required checkboxSelect this checkbox

Card grid component - Number of columnsCard grid component - Number of columns

We'll click Add to save.

Earlier, we created two card types. We will now add them as part of a Modular component field so when we use the card grid component, we will be able to select which card type to use in it.

We'll find the Modular component field on the Add fields right sidebar, click on it, and use the following information:

TabFieldInput
SettingsDisplay NameCard types
SettingsAPI IDcardTypes
SettingsAllow multiple values checkboxSelect this checkbox
SettingsSelect allowed componentsUse the dropdown to select the "Card type 1" and "Card type 2" components

Card grid component - Card type selectorCard grid component - Card type selector

We'll click Add to save.

The final step will be to add an Enumeration field so we can later select the gap size between cards. We'll use the following information to create it:

TabFieldInput
SettingsDisplay NameCards gap
SettingsAPI IDcardsGap
SettingsEnumerationSelect "Cards gap" from the dropdown menu

Card grid component - Gap sizeCard grid component - Gap size

We'll click Add to save.

We've created a card grid component that contains several other components nested in it at different levels, as well as other schema elements.

Card grid with componentsCard grid with components

This guide helped you create the schema element yourself. Alternatively, you can clone a project containing all our card grid recipes.

Check out the next document section for that!