Find an object by its full [[Id]] or its [[Id.shortId]] and [[Id.classId]]
Value representing a full or short id of an object.
Optional
classType: string | numberRequired when id represents a short id.
const user = B.find.baseObject('222222___5');```
const user = B.find.baseObject(B.toId('222222___5'));```
<dt>explore example</dt>[[toId]]
const user = B.find.baseObject('5', 222222);```
const user = B.find.baseObject('5', 'myassn.user.User');```
const nameForm = B.find.baseObject(B.toAltId('_formName', 'nameAndEmail', 1000001));```
<dt>explore example</dt>[[toAltId]]
Find a [[Relate.BaseRecord]] by its [[Id.shortId]] or a full id as a string
Value representing a full or short id of a [[Relate.BaseRecord
const baseRecord = B.find.baseRecord('5');```
Find a [[DocumentVersions]] by its [[Id.shortId]] or a full id as a string
Value representing a full or short id of a [[DocumentVersions]].
const document = B.find.documentVersions('5');```
Find a [[Relate.FieldMetaData]] by its [[Id.shortId]] or a full id as a string
Value representing a full or short id of a [[Relate.FormMetaData]].
const form = B.find.formMetaData('5');```
Find a [[Relate.FormMetaData]] by its [[Id.shortId]] or a full id as a string
Value representing a full or short id of a [[Relate.FormMetaData]].
const form = B.find.formMetaData('5');```
Find a [[Relate.MergeReportMetaData]] by its [[Id.shortId]] or short altid as a string
Value representing a short id or short alt id of a [[MergeReportMetaData]].
js
for bluestep.js; rs
for RelateScript.
B.out = B.find.mergeReport('FID_clientHeader', 'rs').mergeTag();```
Find a [[Relate.MergeReportMetaData]] by its full id as a string
Value representing a full id of a [[MergeReportMetaData]].
B.out = B.find.mergeReport('530024__FID_clientHeader').mergeTag();```
Find an [[Organization]] by its [[Id.shortId]] or a full id as a string
Value representing a full or short id of an [[Organization]].
const org = B.find.organization('5');```
Find a [[Relate.QueryMetaData]] by its [[Id.shortId]] or a full id as a string
Value representing a full or short id of a [[User]].
const user = B.find.query('5');```
Find a [[Relate.RecordContainer]] by its [[Id.shortId]] or a full id as a string
Value representing a full or short id of a [[Relate.RecordContainer]].
const recordContainer = B.find.recordContainer('5');```
Find a [[Relate.ReportMetaData]] by its [[Id.shortId]] or a full id as a string
Value representing a full or short id of a [[ReportMetaData]].
const report = B.find.report('5');```
Find a [[SecurityGroup]] by its [[Id.shortId]] or a full id as a string
Value representing a full or short id of a [[SecurityGroup]].
const securityGroup = B.find.securityGroup('5');```
Find a [[SecurityGroup]] by its formula id.
Formula Id of a SecurityGroup
const securityGroup = B.findSecurityGroup(id);```
Find a [[WebApplication]] by its [[Id.shortId]] or a full id as a string
Value representing a full or short id of a [[WebApplication]].
const webApp = B.find.webApplication('5');```
Generated using TypeDoc
Used to find and give types to various objects given their string representation of their id.
Example