The entry field can be used to link to an internal page.
import alinea from 'alinea'
alinea.entry('Single entry link')
alinea.entry.multiple('Multiple entry links')
Limit the amount of rows in case of multiple links.
Preset the UI to show rows or thumbnails (possible values: "row", "thumb")
Limit the pages shown in the explorer to this condition. Conditions can be built using fields in the same way as when querying data.
import alinea from 'alinea'
import {Entry} from 'alinea/core'
alinea.entry('Link to author', {
condition: Entry.type.is('Author')
})