Majestic Configuration
The following guide shows you how to manage the Majestic backlink data configuration for your Lumar projects. Majestic integration enriches your crawl data with external backlink metrics.
Creating a Majestic configuration
Enable Majestic integration for a project:
CreateMajesticConfigurationTry in Explorer
GraphQL
mutation CreateMajesticConfiguration($input: CreateMajesticConfigurationInput!) {
createMajesticConfiguration(input: $input) {
majesticConfiguration {
enabled
maxRows
useHistoricData
useRootDomain
}
}
}
Key configuration fields:
| Field | Description |
|---|---|
enabled | Whether Majestic data collection is active. |
maxRows | Maximum number of backlink rows to import. |
useHistoricData | When true, uses Majestic's Historic Index (larger dataset). When false, uses the Fresh Index. |
useRootDomain | When true, queries backlinks for the root domain. When false, queries the specific subdomain. |
Querying the configuration
Retrieve the current Majestic configuration for a project:
GetMajesticConfigurationTry in Explorer
GraphQL
query GetMajesticConfiguration($projectId: ObjectID!) {
getProject(id: $projectId) {
majesticConfiguration {
enabled
maxRows
useHistoricData
useRootDomain
createdAt
}
}
}
Updating the configuration
Modify the Majestic configuration:
UpdateMajesticConfigurationTry in Explorer
GraphQL
mutation UpdateMajesticConfiguration($input: UpdateMajesticConfigurationInput!) {
updateMajesticConfiguration(input: $input) {
majesticConfiguration {
enabled
maxRows
useHistoricData
useRootDomain
}
}
}
All fields in the update input are optional -- only include the fields you want to change.