Getting Started

The Mapper is provided as part of the driver package.

Copy
const cassandra = require('cassandra-driver');
const Client = cassandra.Client;
const Mapper = cassandra.mapping.Mapper;

const client = new Client({ contactPoints, localDataCenter, keyspace });

Create a Mapper instance and reuse it across your application. You can define how your model properties are mapped to table columns in the MappingOptions.

Copy
const mapper = new Mapper(client, { 
  models: { 'Video': { tables: ['videos'] } }
});

A ModelMapper contains all the logic to retrieve and save objects from and to the database.

Copy
const videoMapper = mapper.forModel('Video');

Internally, the Mapper contains a single ModelMapper instance per model in your application, you can call mapper.forModel(name) each time you need a model mapper with no additional cost.

To retrieve a single object, use get() method of the ModelMapper.

Copy
const video = await videoMapper.get({ videoId: myVideoId });

Use find() method to filter by one or more primary keys.

Copy
const userVideos = await videoMapper.find({ userId: myUserId });

Insert an object using insert() method.

Copy
await videoMapper.insert({ videoId, userId, addedDate, name });

Update an object using update() method.

Copy
await videoMapper.update({ videoId, userId, addedDate, name: newName });

Delete an object using remove() method.

Copy
await videoMapper.remove({ videoId });

Keep in mind that both Mapper and Client instances are designed to be long lived. If you don’t want to maintain both instances on separate fields, you can access the Client instance using the Mapper property client. For example, you can shutdown your Client before exiting your application by calling:

Copy
mapper.client.shutdown();

You can look at the Queries documentation for more examples of retrieving and saving objects and you read the Mappings documentation to understand how tables and columns are mapped into properties.

Note that throughout the Mapper documentation the killrvideo schema is used.