Ifd:addChildren

From dev.ifd-library.org

Jump to: navigation, search
public IfdConceptInRelationship [] addChildren (
                                                          string concept_guid,
                                                          IfdConceptInRelationship[] children,
                                                          String rel_context_guid,
                                                          String session_id ) throws IfdServerException

EXPRESS Heading:

QUERY_FUNCTION addChildren (concept_guid : STRING; 
                            children : LIST OF IfdConceptInRelationship ; 
                            rel_context: IfdContext ) :  LIST OF IfdConceptInRelationship;

Function to add one or more children to a concept. The function takes an array of IfdConceptInRelationship, the concept itself as a global indentifier concept_guid , a global identifier for a relative context rel_context and a session_id as input.



Input:

  • String concept_guid - The guid of the concept to which we want to add children (must exist in the library)
  • IfdConceptInRelationship [] children - Array of one or more IfdConceptInRelationship. All the concepts in this list must already exist in the library
  • String rel_context The global unique identifier for the relative context.
  • String session_id - The session id for the active user

Returns:


Back to the API

Comments: Talk:Ifd:addChildren