CMDBQueryObjectList structure
The CMDBQueryObjectList
structure holds a list of CMDBQueryObject
structures. Depending on the complexity of the query, CMDBQueryObjectList
can have multiple CMDBQueryObject
structures. The first query object in the list should always be a CI, followed by a relationship object, and then a CI object again. This object structure is represented by C->(R->C)*
, where (R->C)
can occur more than once.
typedef struct CMDBQueryObjectList
{
unsigned int numItems;
CMDBQueryObject *queryObjectlist;
} CMDBQueryObjectList;
The CMDBQueryObjectList
structure consists of the following elements:
numItems |
An integer value indicating the number of |
queryObjectList |
The list of |
Comments