Global Configs

Global configs are in many ways similar to Collections. The big difference is that Collections will potentially contain many documents, while a Global is a "one-off". Globals are perfect for things like header nav, site-wide banner alerts, app-wide localized strings, and other "global" data that your site or app might rely on.

As with Collection configs, it's often best practice to write your Globals in separate files and then import them into the main Payload config.

Options

OptionDescription
slug *Unique, URL-friendly string that will act as an identifier for this Global.
fields *Array of field types that will determine the structure and functionality of the data stored within this Global. Click here for a full list of field types as well as how to configure them.
labelText for the name in the Admin panel or an object with keys for each language. Auto-generated from slug if not defined.
descriptionText or React component to display below the Global header to give editors more information.
adminAdmin-specific configuration. See below for more detail.
hooksEntry points to "tie in" to collection actions at specific points. More
accessProvide access control functions to define exactly who should be able to do what with this Global. More
versionsSet to true to enable default options, or configure with object properties. More
endpointsAdd custom routes to the REST API. More
graphQL.nameText used in schema generation. Auto-generated from slug if not defined.
typescriptAn object with property interface as the text used in schema generation. Auto-generated from slug if not defined.
customExtension point for adding custom data (e.g. for plugins)
dbNameCustom table or collection name for this global depending on the database adapter. Auto-generated from slug if not defined.

* An asterisk denotes that a property is required.

Simple Global example

1
import { GlobalConfig } from 'payload/types'
2
3
const Nav: GlobalConfig = {
4
slug: 'nav',
5
fields: [
6
{
7
name: 'items',
8
type: 'array',
9
required: true,
10
maxRows: 8,
11
fields: [
12
{
13
name: 'page',
14
type: 'relationship',
15
relationTo: 'pages', // "pages" is the slug of an existing collection
16
required: true,
17
},
18
],
19
},
20
],
21
}
22
23
export default Nav

Global config example

You can find a few example Global configs in the Public Demo source code on GitHub.

Admin options

You can customize the way that the Admin panel behaves on a Global-by-Global basis by defining the admin property on a Global's config.

OptionDescription
groupText used as a label for grouping collection and global links together in the navigation.
hiddenSet to true or a function, called with the current user, returning true to exclude this global from navigation and admin routing.
componentsSwap in your own React components to be used within this Global. More
previewFunction to generate a preview URL within the Admin panel for this global that can point to your app. More.
livePreviewEnable real-time editing for instant visual feedback of your front-end application. More.
hideAPIURLHides the "API URL" meta field while editing documents within this collection.

Preview

Global admin options can accept a preview function that will be used to generate a link pointing to the frontend of your app to preview data.

If the function is specified, a Preview button will automatically appear in the corresponding global's Edit view. Clicking the Preview button will link to the URL that is generated by the function.

The preview function accepts two arguments:

  1. The document being edited
  2. An options object, containing locale and token properties. The token is the currently logged-in user's JWT.

Example global with preview function:

1
import { GlobalConfig } from 'payload/types'
2
3
export const MyGlobal: GlobalConfig = {
4
slug: 'my-global',
5
fields: [
6
{
7
name: 'slug',
8
type: 'text',
9
required: true,
10
},
11
],
12
admin: {
13
preview: (doc, { locale }) => {
14
if (doc?.slug) {
15
return `https://bigbird.com/preview/${doc.slug}?locale=${locale}`
16
}
17
18
return null
19
},
20
},
21
}

Access control

As with Collections, you can specify extremely granular access control (what users can do with this Global) on a Global-by-Global basis. However, Globals only have update and read access control due to their nature of only having one document. To learn more, go to the Access Control docs.

Hooks

Globals also fully support a smaller subset of Hooks. To learn more, go to the Hooks documentation.

Field types

Globals support all field types that Payload has to offer—including simple fields like text and checkboxes all the way to more complicated layout-building field groups like Blocks. Click here to learn more about field types.

TypeScript

You can import global types as follows:

1
import { GlobalConfig } from 'payload/types'
2
3
// This is the type used for incoming global configs.
4
// Only the bare minimum properties are marked as required.
1
import { SanitizedGlobalConfig } from 'payload/types'
2
3
// This is the type used after an incoming global config is fully sanitized.
4
// Generally, this is only used internally by Payload.
Next

I18n

Related Help Topics