GetMetaData

Gets metadata (the methods, properties, and parameters of a component) associated with an object.

This returns the $bx.meta object for the object.

Method Signature

GetMetaData(value=[any])

Arguments

Argument
Type
Required
Description
Default

value

any

true

The object to get metadata for.

Examples

Dump Metadata of CFC Instance

CF9+

writeDump( getMetadata( new Query() ) );

Additional Examples

Run Example

q = queryNew( "id,name", "numeric,varchar" );
dump( GetMetadata( q ) );

Last updated

Was this helpful?