<!-- XML Configurationconfiguration: 		 Top level container for the XML objectbaseURL: 			 Base URL for the application - needs to understand/speak MQLsearchTerm: 		 Initial search term query, also populates the search boxtitle: 				 Phrase to appear in the upper left hand corner logotext:			 If included, text to appear in the lower right hand corner (DB name or whatever) - this is currently uglyelement:			 Top level for an element, like person, company, etc. - the "id" is the descriptor for this element   type:             MQL type for this element   connection:		 Connection from this element - the "id" is the phrase describing this connection   	  past_string:   If exists, indicates that there is a "previous" and "current" state for this connection, and this is the	  				 string describing the previous connection ("worked for" vs. "works for").  This requires that property and					 rootProperty be set as well.	  property:      MQL type within the query for the target of this query (used for target:<property> in the query)	  rootProperty:  MQL type within the query for the source of this query      target_name: 	 Descriptor for this connection (appears on the targets in the circle)	  type:          MQL type for the target of this connection	  link:          Shorthand MQL link for this connection (sometimes the same as target_string)	  labelcolor:    Color for the edge descriptor on the circle	  target_string: Full link for this connection used in the MQL query	  There are a couple of example connections at the bottom along with their associated MQL queries, so you can figure out what to plug in where.	  --><configuration>	<baseURL>http://www.freebase.com/</baseURL>	<searchTerm>Applied Minds</searchTerm>	<title>Venture Spin</title>	<logotext></logotext>	<element id="person">		<type>/people/person</type>		<connection id="founded">			<target_name>Company</target_name>			<type>/business/company</type>			<link>/business/company_founder/companies_founded</link>			<labelcolor>0x755AD4</labelcolor>			<target_string>/business/company_founder/companies_founded</target_string>		</connection>		<connection id="on the board of">			<past_string>was on the board of</past_string>			<target_name>Company</target_name>			<type>/business/company</type>			<link>/business/board_membership</link>			<rootProperty>member</rootProperty>			<property>company</property>			<labelcolor>0xFF6371</labelcolor>			<target_string>/business/board_member/board_memberships</target_string>		</connection>		<connection id="works at">			<past_string>worked at</past_string>			<target_name>Company</target_name>			<type>/business/company</type>			<link>/business/employment_tenure</link>			<rootProperty>person</rootProperty>			<property>company</property>			<labelcolor>0x559EE5</labelcolor>			<target_string>/people/person/employment_history</target_string>		</connection>	</element>		<element id="company">		<type>/business/company</type>		<connection id="founded by">			<target_name>Person</target_name>			<type>/people/person</type>			<link>/business/company/founders</link>			<labelcolor>0x755AD4</labelcolor>			<target_string>/business/company/founders</target_string>		</connection>		<connection id="employs">			<past_string>used to employ</past_string>			<target_name>Person</target_name>			<type>/people/person</type>			<link>/business/employment_tenure</link>			<labelcolor>0x559EE5</labelcolor>			<rootProperty>company</rootProperty>			<property>person</property>			<target_string>/business/employer/employees</target_string>		</connection>		<connection id="has board member">			<past_string>had board member</past_string>			<target_name>Person</target_name>			<type>/people/person</type>			<link>/business/board_membership</link>			<labelcolor>0xFF6371</labelcolor>			<rootProperty>company</rootProperty>			<property>member</property>			<target_string>/business/company/board_members</target_string>		</connection>		<connection id="acquired">			<target_name>Company</target_name>			<type>/business/company</type>			<link>/business/company/subsidiary_companies</link>			<labelcolor>0xB655BD</labelcolor>			<target_string>/business/company/subsidiary_companies</target_string>		</connection>		<connection id="acquired by">			<target_name>Company</target_name>			<type>/business/company</type>			<link>/business/company/parent_company</link>			<labelcolor>0xB655BD</labelcolor>			<target_string>/business/company/parent_company</target_string>		</connection>		<connection id="invested in">			<target_name>Company</target_name>			<type>/business/company</type>			<source_type>"/business/company","/people/person"</source_type>			<link>/venture_capital/venture_investment</link>			<labelcolor>0x84BD55</labelcolor>			<rootProperty>investor</rootProperty>			<property>company</property>			<target_string>/venture_capital/venture_investor/investments</target_string>			<query_parameter>{"investment_round":null}</query_parameter>		</connection>		<connection id="received investment from">			<target_name>Venture Investor</target_name>			<type>/business/company</type>			<link>/venture_capital/venture_investment</link>			<labelcolor>0x84BD55</labelcolor>			<rootProperty>company</rootProperty>			<property>investor</property>			<target_string>/venture_capital/venture_funded_company/venture_investors</target_string>			<query_parameter>{"investment_round":null}</query_parameter>		</connection>	</element></configuration><!--	  	<connection id="received investment from">			<target_name>Venture Investor</target_name>			<type>/business/company</type>			<link>/venture_capital/venture_investment</link>			<labelcolor>0x84BD55</labelcolor>			<rootProperty>company</rootProperty>			<property>investor</property>			<target_string>/venture_capital/venture_funded_company/venture_investors</target_string>			<query_parameter>{"investment_round":null}</query_parameter>		</connection>				"query_13:/venture_capital/venture_funded_company/venture_investors" : [				0 : {					"optional" : "true",					"investment_round" : {					},					"index" : {					},					"limit" : "25",					"link" : {						"timestamp" : {						},					},					"sort" : [						0 : "index",						1 : "-link.timestamp",					],					"target:investor" : {						"/common/topic/image" : [							0 : {								"optional" : "true",								"link" : {									"timestamp" : {									},								},								"limit" : "1",								"sort" : [									0 : "index",									1 : "-link.timestamp",								],								"index" : {								},								"guid" : {								},							},						],						"name" : {						},						"guid" : {						},						"types:type" : [						],						"id" : {						},					},				},			],		Note that when you have "past_string" two different queries are created, as below.		<connection id="on the board of">			<past_string>was on the board of</past_string>			<target_name>Company</target_name>			<type>/business/company</type>			<link>/business/board_membership</link>			<rootProperty>member</rootProperty>			<property>company</property>			<labelcolor>0xFF6371</labelcolor>			<target_string>/business/board_member/board_memberships</target_string>		</connection>				"query_1:/business/board_member/board_memberships" : [				0 : {					"optional" : "true",					"title" : {					},					"index" : {					},					"target:company" : {						"/common/topic/image" : [							0 : {								"optional" : "true",								"link" : {									"timestamp" : {									},								},								"limit" : "1",								"sort" : [									0 : "index",									1 : "-link.timestamp",								],								"index" : {								},								"guid" : {								},							},						],						"name" : {						},						"guid" : {						},						"types:type" : [						],						"id" : {						},					},					"link" : {						"timestamp" : {						},					},					"sort" : [						0 : "index",						1 : "-link.timestamp",					],					"limit" : "25",					"to" : {						"optional" : "forbidden",						"value" : {						},					},				},			],			"query_2:/business/board_member/board_memberships" : [				0 : {					"optional" : "true",					"title" : {					},					"index" : {					},					"target:company" : {						"/common/topic/image" : [							0 : {								"optional" : "true",								"link" : {									"timestamp" : {									},								},								"limit" : "1",								"sort" : [									0 : "index",									1 : "-link.timestamp",								],								"index" : {								},								"guid" : {								},							},						],						"name" : {						},						"guid" : {						},						"types:type" : [						],						"id" : {						},					},					"link" : {						"timestamp" : {						},					},					"sort" : [						0 : "index",						1 : "-link.timestamp",					],					"limit" : "25",					"to" : {						"optional" : "required",						"value" : {						},					},				},			],-->