Get Record

Usage

.get(id: string)

Example

// load data
const data = {
    instruments = await new InstrumentModel().load()
};

// get an instrument
const existingInstrument = data.instruments.get(
    '8d961961-6323-48b3-b4b4-849daa1ac3ed'
);