migration
GraphCMS Migration SDK.
Usage
const { newMigration, FieldType } = require("@graphcms/migration");
const migration = newMigration({ authToken, endpoint });
const author = migration.createModel({
apiId: "Author",
apiIdPlural: "Authors",
displayName: "Author",
});
author.addSimpleField({
apiId: "firstName",
displayName: "First Name",
type: FieldType.String,
});
author.addSimpleField({
apiId: "lastName",
displayName: "Last Name",
type: FieldType.String,
});
migration.run();
Table of Contents
Migration
New Migration
A migration is scoped to an environment. To create a migration, the following parameters are required.
-
Authentication Token authToken
.
Can be retrieved from Settings > API Access
on https://app.graphcms.com
-
Environment URL endpoint
.
Can be retrieved from Settings > Environments
on https://app.graphcms.com
-
Migration Name name
[optional].
Every migration has a unique name. If unspecified, a name would be generated and will be part of the response of a successful migration.
Subsequent migrations with same name will fail.
const { newMigration } = require("@graphcms/migration");
const migration = newMigration({
authToken,
endpoint,
name,
});
Running a Migration
The run
method runs the migration.
By default, migrations run in the background. Passing an optional boolean argument configures the migration to run in the foreground.
const foreground = true;
const result = migration.run(foreground);
if (result.errors) {
console.log(result.errors);
} else {
console.log(result.name);
}
Dry Run a Migration
A migration can be dry run to preview what changes would be applied.
const changes = migration.dryRun();
console.log(changes);
Updating an Entity
To update properties, specify the properties to be updated. All ommitted properties remain unmodified.
As a special case, apiId
is a requirement because all entities are uniquely indentified by apiId
.
To update the apiId
, specify newApiId
.
Locale
Creating a Locale
To create a locale
migration.createLocate({
apiId,
displayName,
description,
});
Updating a Locale
To update a locale
migration.updateLocate({
apiId,
...
});
Deleting a Locale
To delete a locale
migration.deleteLocatle(apiId);
Stage
Creating a Stage
To create a stage
migration.createStage({
apiId,
displayName,
description,
isDefault,
allowQueries,
color,
});
Updating a Stage
To update a stage
migration.updateStage({
apiId,
...
});
Deleting a Stage
To delete a Stage
migration.deleteStage(apiId);
Enumerations
Creating an Enumeration
Create an enumeration with values.
const colors = migration.createEnumeration({
apiId,
displayName,
description,
});
colors.addValue("Red");
colors.addValue("Green");
colors.addValue("Blue", "Yellow");
Updating an Enumeration
Updating an enumeration and it's values.
const colors = migration.updateEnumeration({
apiId,
...
});
colors.addValue("Black");
colors.updateValue("Red", "Dark Red");
colors.deleteValue("Blue");
Deleting Enumeration
To delete an enumeration and it's values
migration.deleteEnumeration(apiId);
Models
Creating a Model
A model can be created by passing in the required parameters.
const modelName = migration.createModel({
apiId,
apiIdPlural,
displayName,
description,
});
Updating a Model
To update a model
migration.updateModel({
apiId,
...
});
Deleting a Model
To delete a model
migration.deleteModel(apiId);
Fields
Create Field
To create a simple field.
const { FieldType } = require("@graphcms/migration");
model.addSimpleField({
apiId,
displayName,
type: FieldType.String,
});
To create an enumerable field.
model.addEnumerableField({
apiId,
displayName,
enumerationApiId,
});
To create a relational field.
const { RelationType } = require("@graphcms/migration");
model.addRelationalField({
apiId,
displayName,
relationType: RelationType.OneToOne,
model,
reverseField: {
apiId,
displayName,
},
});
To create a union field.
const { RelationType } = require("@graphcms/migration");
model.addUnionField({
apiId,
displayName,
relationType: RelationType.OneToOne,
models,
reverseField: {
apiId,
displayName,
},
});
Update Field
To update a field, firstly retrieve the model.
const model = migration.updateModel({...})
const model = migration.model(apiId)
Updating simple field
model.updateSimpleField({
apiId,
...
})
Updating enumerable field
model.updateEnumerableField({
apiId,
...
})
Updating relational field
model.updateRelationalField({
apiId,
...
})
Updating union field
model.updateRelationalField({
apiId,
models,
...
})
Deleting a Field
To delete a field
model.deleteField(apiId);
API Docs
SDK docs is available at https://grapchms.com/docs/sdk.
The SDK is fully typed with Typescript and IDE intellisense is expected to work as desired.