Working with the slug field
You can configure an initial value for slugs using the slug field type. This field is of type String
in your GraphQL schema but provides a powerful UI feature that comes in the form of automatic initial value generation.
You can configure the slug field to be generated from other field values in your model.
Create a slug fieldAnchor
- Navigate to the schema editor tab.
- Find a model you'd like to create a slug field for.
- Click on Slug from the list of fields.
- Give the field a name (typically
Slug
), API ID (also typicallyslug
), and optional description. - Under "Slug options", specifiy whether this field should be lowercase, and enable whether you want this field to be generated from a template.
- If you opted to generate from template, enter a template for your slug.
- Configure any additional settings for the model. By default, the field will be set to unique, and match a specific pattern will be provided.
- Click "Create".
Slug templatesAnchor
Each Slug field template can be generated using the Available fields outlined above the input. If your model has a title
, or name
field, you could specify the slug template as {title}
, or {name}
respectively.
Using the slug fieldAnchor
When creating content, the slug field will be automatically generated from the template field you're using.
For example, if your slug field is based off a title
field, when you start typing into the title
field, it will also update the slug field.
You can override the slug field value by typing in the box. You can also "Regenerate" the value to fallback to the template you provided.