<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>sones GraphDB &#187; Announcement</title>
	<atom:link href="http://developers.sones.de/category/announcement/feed/" rel="self" type="application/rss+xml" />
	<link>http://developers.sones.de</link>
	<description></description>
	<lastBuildDate>Thu, 20 Oct 2011 15:16:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>new index interfaces and how to integrate custom indices</title>
		<link>http://developers.sones.de/2011/09/08/new-index-interfaces-and-how-to-integrate-custom-indices/</link>
		<comments>http://developers.sones.de/2011/09/08/new-index-interfaces-and-how-to-integrate-custom-indices/#comments</comments>
		<pubDate>Thu, 08 Sep 2011 12:37:07 +0000</pubDate>
		<dc:creator>Martin Junghanns</dc:creator>
				<category><![CDATA[Announcement]]></category>
		<category><![CDATA[Example]]></category>
		<category><![CDATA[GraphDB]]></category>

		<guid isPermaLink="false">http://developers.sones.de/?p=1076</guid>
		<description><![CDATA[In the course of our work at sones GraphDB 2.1 we refactored our index interfaces to make them more suitable for our needs. Furthermore, we wanted to make it easier for the community to implement custom index structures for their special needs. For the latter reason we set up a tutorial and published a sample [...]]]></description>
			<content:encoded><![CDATA[<p>In the course of our work at sones GraphDB 2.1 we refactored our index interfaces to make them more suitable for our needs. Furthermore, we wanted to make it easier for the community to implement custom index structures for their special needs. For the latter reason we set up a tutorial and published a sample implementation on github.</p>
<p><a href="http://developers.sones.de/wp-content/uploads/2011/09/IndexInterfaces_overview.png"><img src="http://developers.sones.de/wp-content/uploads/2011/09/IndexInterfaces_overview-1024x371.png" alt="" title="IndexInterfaces_overview" width="600" class="alignnone size-large wp-image-1079" /></a></p>
<p>The interfaces are explained in our developer wiki, the tutorial can also be found there. The source code regarding the tutorial is located at github.</p>
<p>Source 1: <a href="http://developers.sones.de/wiki/doku.php?id=documentation:plugins:database:indices" title="Index Interfaces at developer wiki" target="_blank">Index Interfaces at developer wiki</a><br />
Source 2: <a href="http://developers.sones.de/wiki/doku.php?id=documentation:plugins:database:indices#implementing_a_custom_index" title="Integration tutorial at developer wiki" target="_blank">Integration tutorial at developer wiki</a><br />
Source 3: <a href="https://github.com/sones/sones-bstindex-tutorial" title="Source code at github" target="_blank">Source code at github</a></p>
]]></content:encoded>
			<wfw:commentRss>http://developers.sones.de/2011/09/08/new-index-interfaces-and-how-to-integrate-custom-indices/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>manage edge types with GraphDB 2.1</title>
		<link>http://developers.sones.de/2011/08/28/manage-edge-types-with-graphdb-2-1/</link>
		<comments>http://developers.sones.de/2011/08/28/manage-edge-types-with-graphdb-2-1/#comments</comments>
		<pubDate>Sun, 28 Aug 2011 19:00:40 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Announcement]]></category>
		<category><![CDATA[documentation]]></category>
		<category><![CDATA[GraphDB]]></category>
		<category><![CDATA[GraphQL]]></category>

		<guid isPermaLink="false">http://developers.sones.de/?p=1051</guid>
		<description><![CDATA[With version 2.0 of sones GraphDB we introduced an enhanced graph model we call Property Hypergraph. In this Property Hypergraph model there are some standard edge types: single-edge: an edge between two vertices multi-edge: an edge splitting up into single-edges of the same edge type pointing towards the same vertex type. hyper-edge: an edge to [...]]]></description>
			<content:encoded><![CDATA[<p>With version 2.0 of sones GraphDB we introduced an enhanced graph model we call <a href="http://developers.sones.de/wiki/doku.php?id=property_hypergraph" target="_blank">Property Hypergraph</a>.</p>
<p style="text-align: center;"><a href="http://developers.sones.de/wp-content/uploads/2011/08/fetch1.png"><br />
</a><a href="http://developers.sones.de/wp-content/uploads/2011/08/fetch1.png" rel="http://developers.sones.de/wiki/doku.php?id=property_hypergraph" target="_blank"><img class="aligncenter size-full wp-image-1052 alignnone" title="Property Hypergraph" src="http://developers.sones.de/wp-content/uploads/2011/08/fetch1.png" alt="" width="295" height="423" /></a></p>
<p style="text-align: left;">In this Property Hypergraph model there are some standard edge types:</p>
<ul>
<li>single-edge: an edge between two vertices</li>
<li>multi-edge: an edge splitting up into single-edges of the same edge type pointing towards the same vertex type.</li>
<li>hyper-edge: an edge to a subgraph made up by all possible types of vertices</li>
</ul>
<p>In order to create different vertex types since version 1.0 of sones GraphDB the GraphQL command “<strong><em>CREATE VERTEX TYPE</em></strong>” is available to users. In version 2.0 we introduced edge types but those were only useable if you would use the API to interact with the GraphDB instance.</p>
<p>In version 2.1 we’ve now added a full edge type management to be used either through GraphDBs new edge-type API and of course through the new GraphQL extensions which add edge-type handling.</p>
<p>So for example let’s say you want to create an edge type “User” and insert a bunch of those. And you want those users to be connected by a specific edge type which comes with it’s own attributes – something like this:</p>
<p style="text-align: center;"><a href="http://developers.sones.de/wp-content/uploads/2011/08/edgetype_sample.png"><img class="size-full wp-image-1055 aligncenter" title="edgetype_sample" src="http://developers.sones.de/wp-content/uploads/2011/08/edgetype_sample.png" alt="" width="406" height="190" /></a></p>
<p style="text-align: left;">The GraphQL Queries to create the above scheme would be these:</p>
<blockquote><p><strong>CREATE EDGE TYPE</strong> UserLink <strong>ATTRIBUTES</strong> (<em>Double</em> weight, <em>String</em> priority, <em>LIST</em>&lt;<em>String</em>&gt; tags) <strong>COMMENT</strong> = ‘This is my edge type named UserLink.’<br />
<strong>CREATE VERTEX TYPE</strong> User <strong>ATTRIBUTES</strong> (<em>String</em> name, <em>SET</em>&lt;User(UserLink)&gt; friends)<br />
<strong>INSERT INTO</strong> User <strong>VALUES</strong> (name = ‘UserA’)<br />
<strong>INSERT INTO</strong> User <strong>VALUES</strong> (name = ‘UserB’, friends = <strong>SETOF</strong>(name = ‘UserA’ : (weight = 15.5, priority = ‘high’, tags = <strong>LISTOF</strong>(‘best friend’, ‘mate’))))</p></blockquote>
<p>As you can see it’s easy to actually create edge types and add attributes to the relationships these edges represent. It even gets better: you can also use the inheritance mechanisms you are already used to on vertex types as well as undefined (schemeless) attributes.</p>
<p>If you want to dive deeper into edge types you won’t have to wait until the release of GraphDB 2.1 at the end of this year. You can just <a href="http://github.com/sones/sones" target="_blank">grab the current source code on github</a> and get started.</p>
<p>Additional documentation and examples are available in our documentation wiki. Here are some places you will find more information:</p>
<ul>
<li><a href="http://developers.sones.de/wiki/doku.php?id=documentation:database:edges:latest" target="_blank">Edges in GraphDB</a></li>
<li><a href="http://developers.sones.de/wiki/doku.php?id=documentation:graphql:gddl" target="_blank">GraphQL data definition language (DDL)</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://developers.sones.de/2011/08/28/manage-edge-types-with-graphdb-2-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Forum and Bugtracking is online</title>
		<link>http://developers.sones.de/2011/08/01/forum-and-bugtracking-is-online/</link>
		<comments>http://developers.sones.de/2011/08/01/forum-and-bugtracking-is-online/#comments</comments>
		<pubDate>Mon, 01 Aug 2011 16:06:15 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Announcement]]></category>
		<category><![CDATA[documentation]]></category>
		<category><![CDATA[GraphDB]]></category>

		<guid isPermaLink="false">http://developers.sones.de/2011/08/01/forum-and-bugtracking-is-online/</guid>
		<description><![CDATA[We want to build the GraphDB community a home – a home they meet to discuss, track, code and have all sorts of graphy fun. This is why we just launched our forum and our bugtracking tool. Those both tools complement the already existing GitHub presence by adding the functionality to discuss and get/give support. [...]]]></description>
			<content:encoded><![CDATA[<p>We want to build the GraphDB community a home – a home they meet to discuss, track, code and have all sorts of graphy fun. This is why we just launched our forum and our bugtracking tool. Those both tools complement the already existing <a href="http://github.com/sones/sones" target="_blank">GitHub presence</a> by adding the functionality to discuss and get/give support. </p>
<p><em><strong><a href="http://forum.sones.de" target="_blank"><font size="4">forum.sones.de</font></a></strong></em></p>
<p>It’s a way to communicate with GraphDB users and developers, either those working at sones or those out in the community. </p>
<p> </p>
<p align="center"><a href="http://developers.sones.de/wp-content/uploads/2011/08/forum.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="forum" border="0" alt="forum" src="http://developers.sones.de/wp-content/uploads/2011/08/forum_thumb.png" width="404" height="381" /></a></p>
<p><em><strong><font size="4"><a href="http://jira.sones.de" target="_blank">jira.sones.de</a></font></strong></em></p>
<p>In order to make a wish, to report bugs, to track the progress of the GraphDB development the bugtracking tool Jira (made by <a href="http://www.atlassian.com/software/jira/" target="_blank">Atlassian</a>) is used.</p>
<p align="center"><a href="http://developers.sones.de/wp-content/uploads/2011/08/jira.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="jira" border="0" alt="jira" src="http://developers.sones.de/wp-content/uploads/2011/08/jira_thumb.png" width="404" height="304" /></a></p>
<p>You can always go to those new tools and just read – but we encourage you to jump in and <a href="http://forum.sones.de/register" target="_blank">register yourself</a> an account to write what you think about GraphDB, what your experience was while using it and what cool projects you are working on currently.</p>
<p> </p>
<p>Source 1: <a href="http://github.com/sones/sones" target="_blank">http://github.com/sones/sones</a>    <br />Source 2: <a href="http://forum.sones.de" target="_blank">http://forum.sones.de</a>    <br />Source 3: <a href="http://jira.sones.de" target="_blank">http://jira.sones.de</a>    <br />Source 4: <a href="http://forum.sones.de/register" target="_blank">http://forum.sones.de/register</a></p>
]]></content:encoded>
			<wfw:commentRss>http://developers.sones.de/2011/08/01/forum-and-bugtracking-is-online/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GraphDB Client Libraries are LGPL now!</title>
		<link>http://developers.sones.de/2011/06/16/graphdb-client-libraries-are-lgpl-now/</link>
		<comments>http://developers.sones.de/2011/06/16/graphdb-client-libraries-are-lgpl-now/#comments</comments>
		<pubDate>Thu, 16 Jun 2011 15:45:04 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Announcement]]></category>
		<category><![CDATA[GraphDB]]></category>
		<category><![CDATA[sones]]></category>

		<guid isPermaLink="false">http://developers.sones.de/?p=941</guid>
		<description><![CDATA[As you already know the Community Edition of sones GraphDB was always released under the GNU Affero General Public License version 3. All Language Bindings and Client Libraries we (sones) released so far were also released under that certain AGPLv3 license. We got quite a lot interesting feedback on that matter and decided that from [...]]]></description>
			<content:encoded><![CDATA[<p>As you already know the Community Edition of sones GraphDB was always released under the <a href="http://www.gnu.org/licenses/agpl.html" target="_blank">GNU Affero General Public License version 3</a>. All Language Bindings and Client Libraries we (sones) released so far were also released under that certain AGPLv3 license.</p>
<p>We got quite a lot interesting feedback on that matter and decided that from now on the GraphDB Language Bindings, Client Libraries and Talend OpenStudio component will be released under the <a href="http://www.gnu.org/licenses/lgpl.html" target="_blank">GNU Lesser General Public License version 3</a>.</p>
<p><a href="http://www.gnu.org/licenses/lgpl.html"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto; padding-top: 0px" title="lgplv3-147x51" border="0" alt="lgplv3-147x51" src="http://developers.sones.de/wp-content/uploads/2011/06/lgplv3-147x51.png" width="147" height="51" /></a></p>
<p>From now on you can link to the library in your project, no matter what license your project uses, your code will not become GPL’d. That’s basically the only reason for that change.</p>
<p>Currently the following libraries are available:</p>
<ul>
<li><a href="https://github.com/sones/sones-talend" target="_blank">Talend OpenStudio Connector</a></li>
<li><a href="https://github.com/sones/sones-javaclient" target="_blank">Java Client Library</a></li>
<li><a href="https://github.com/sones/sones-csharpclient" target="_blank">C# Client Library</a></li>
<li><a href="https://github.com/sones/sones-javascriptclient" target="_blank">JavaScript Client Library</a></li>
<li><a href="https://github.com/sones/sones-phpclient" target="_blank">PHP Client Library</a></li>
</ul>
<p>Besides that the software itself can also be licensed using a proprietary commercial license. <a href="http://www.sones.com/kontakt" target="_blank">Just ask for it.</a></p>
<p> </p>
<p>Link 1: <a title="http://www.gnu.org/licenses/agpl.html" href="http://www.gnu.org/licenses/agpl.html">http://www.gnu.org/licenses/agpl.html</a>    <br />Link 2: <a title="http://www.gnu.org/licenses/lgpl.html" href="http://www.gnu.org/licenses/lgpl.html">http://www.gnu.org/licenses/lgpl.html</a>    <br />Link 3: <a title="http://www.sones.com/kontakt" href="http://www.sones.com/kontakt">http://www.sones.com/kontakt</a></p>
]]></content:encoded>
			<wfw:commentRss>http://developers.sones.de/2011/06/16/graphdb-client-libraries-are-lgpl-now/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>sones releases version 2.0 of GraphDB</title>
		<link>http://developers.sones.de/2011/05/10/sones-releases-version-2-0-of-graphdb/</link>
		<comments>http://developers.sones.de/2011/05/10/sones-releases-version-2-0-of-graphdb/#comments</comments>
		<pubDate>Tue, 10 May 2011 13:03:42 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Announcement]]></category>
		<category><![CDATA[GraphDB]]></category>
		<category><![CDATA[sones]]></category>

		<guid isPermaLink="false">http://developers.sones.de/?p=890</guid>
		<description><![CDATA[Today we are releasing the 2.0 version of sones GraphDB. It’s been nearly a year since the launch of the 1.1 version and the open source availability and after a complete overhaul and intense refactoring the new version fits better into many scenarios and allows easier future feature additions. A completely revamped plug-in system and [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://developers.sones.de/wp-content/uploads/2011/05/rect3987.png"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: block; float: none; margin-left: auto; margin-right: auto; padding-top: 0px; border-width: 0px;" title="rect3987" src="http://developers.sones.de/wp-content/uploads/2011/05/rect3987_thumb.png" alt="rect3987" width="400" height="180" border="0" /></a></p>
<p>Today we are releasing the 2.0 version of sones GraphDB.</p>
<p>It’s been nearly a year since the launch of the 1.1 version and the open source availability and after a complete overhaul and intense refactoring the new version fits better into many scenarios and allows easier future feature additions.</p>
<p>A completely revamped plug-in system and software architecture allows the user to individually configure the needed plug-ins to the specific use-case. Unnecessary functionality can be disabled that way – not taking up precious resources and/or query execution time. Version 1.1 already had some plug-in functionality but we extended that with many many more APIs.</p>
<p>sones GraphDB is a graph database and therefore works with an internal graph representation of the users data. With version 2.0 we are pushing the limits of the graph data model used by GraphDB. The property graph is the de-facto standard for graph databases these days and it’s easy to understand why.<br />
<a href="http://developers.sones.de/wp-content/uploads/2011/05/propertygraph.png" target="_blank"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: block; float: none; margin-left: auto; margin-right: auto; padding-top: 0px; border: 0px;" title="propertygraph" src="http://developers.sones.de/wp-content/uploads/2011/05/propertygraph_thumb.png" alt="propertygraph" width="400" height="230" border="0" /></a>There a vertex types – like the circle above – with attributes. And there are edges which connect these vertices and add their own attributes. Altogether simple edges with attributes and vertices with attributes make up that well known property graph.</p>
<p>In the new version 2.0 we added some things to that simple scheme to make it even more powerful. We believe that it is important for every user of a graph database to be able to express every aspect of relationship data possibly can have. And to allow that higher level of expression we created what we call the Property Hypergraph.</p>
<p style="text-align: center;"><a href="http://developers.sones.de/wp-content/uploads/2011/05/Drawing2.png" target="_blank"><img class="aligncenter" style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0pt none;" title="Drawing2" src="http://developers.sones.de/wp-content/uploads/2011/05/Drawing2_thumb.png" alt="Drawing2" width="200" height="251" border="0" /></a></p>
<p style="text-align: center;"><a href="http://developers.sones.de/wp-content/uploads/2011/05/Drawing31.png" target="_blank"><img class="aligncenter" style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0pt none;" title="Drawing3" src="http://developers.sones.de/wp-content/uploads/2011/05/Drawing3_thumb1.png" alt="Drawing3" width="400" height="503" border="0" /></a></p>
<p style="text-align: left;">This property hypergraph represents vertices of different vertex types and edges of different edge types. Any types, vertex and edge, can have multiple user defineable attributes. Vertices (instances of a vertex type) can have binary properties (unstructured data) Additionally schema-less types are possible.</p>
<p>Now there are some standard edge types like the single-edge: an edge between two vertices, the multi-edge: an edge splitting up into single-edges of the same edge type pointing towards the same vertex type. And the most flexible edge type, the hyper-edge: an edge pointing to a subgraph if you will.</p>
<p>With version 2.0 we add a significant speed-up to the database. On the one hand every database deployment can be tailored to the use-case and does not need to carry unnecessary functionality anymore. And on the other hand we took the many things we learned from customer projects and did a major architecture overhaul. We are seeing a speed-up at the factor of 100x for queries like INSERT and we are currently working on an extra article on the performance of our 2.0 release.</p>
<p style="text-align: center;"><a href="http://developers.sones.de/wp-content/uploads/2011/05/Software-Architecture-2.0.png" target="_blank"><img class="aligncenter" style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0pt none;" title="Software Architecture 2.0" src="http://developers.sones.de/wp-content/uploads/2011/05/Software-Architecture-2.0_thumb.png" alt="Software Architecture 2.0" width="404" height="582" border="0" /></a></p>
<p style="text-align: left;">There have been some minor changes in the GraphQL (Graph Query Language) for which we prepared a new release of the popular <a href="https://github.com/downloads/sones/sones/GQL_cheatsheet_latest.pdf" target="_blank">GraphQL Cheatsheet.</a></p>
<p style="text-align: center;"><a href="https://github.com/downloads/sones/sones/GQL_cheatsheet_latest.pdf" target="_blank"><img class="aligncenter" style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0pt none;" title="gqlcheatsheet" src="http://developers.sones.de/wp-content/uploads/2011/05/gqlcheatsheet_thumb.png" alt="gqlcheatsheet" width="404" height="287" border="0" /></a></p>
<p style="text-align: left;">As of Mid-2010 sones GraphDB is available under the AGPLv3 Open Source license. Version 2.0 is going to be available in our official Git repository soon. Additionally we are preparing a complete internal move of sones to Git. Until the launch of 2.0 we had the external Git repository and an internal source control system which needed to be synced, sometimes manually. This will be over soon. We are putting the complete and official repository into the hands of the community to allow anyone to see the complete history and to easier than ever add their own code. Accordingly an updated documentation and wiki will be available as soon as possible along with the source code availability.</p>
<p style="text-align: center;"><a href="http://www.sones.com/web/sones/home" target="_blank">Get sones GraphDB v2.0 and further information here now.</a></p>
<p> </p>
<p> </p>
]]></content:encoded>
			<wfw:commentRss>http://developers.sones.de/2011/05/10/sones-releases-version-2-0-of-graphdb/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>the new cheat sheet is available (1.1)</title>
		<link>http://developers.sones.de/2010/07/01/the-new-gql-cheat-sheet-is-available-1-1/</link>
		<comments>http://developers.sones.de/2010/07/01/the-new-gql-cheat-sheet-is-available-1-1/#comments</comments>
		<pubDate>Thu, 01 Jul 2010 15:33:50 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Announcement]]></category>
		<category><![CDATA[documentation]]></category>
		<category><![CDATA[sones]]></category>
		<category><![CDATA[cheat sheet]]></category>

		<guid isPermaLink="false">http://developers.sones.de/2010/07/01/the-new-gql-cheat-sheet-is-available-1-1/</guid>
		<description><![CDATA[Since we launched our 1.1 version yesterday I want to link to the updated cheat sheet so everyone can find and use it: Cheatsheet v1.1]]></description>
			<content:encoded><![CDATA[<p>Since we launched our 1.1 version yesterday I want to link to the updated cheat sheet so everyone can find and use it:</p>
<p><a href="http://github.com/downloads/sones/sones/GQL%20cheatsheet-1.1.pdf" target="_blank"><img class="wlDisabledImage" style="display: inline; border: 0pt none;" title="gqlcheatsheet_1.1" src="http://developers.sones.de/wp-content/uploads/2010/07/gqlcheatsheet_1.1.png" border="0" alt="gqlcheatsheet_1.1" width="400" height="283" /></a><br />
<a href="http://github.com/downloads/sones/sones/GQL%20cheatsheet-1.1.pdf" target="_blank">Cheatsheet v1.1</a></p>
]]></content:encoded>
			<wfw:commentRss>http://developers.sones.de/2010/07/01/the-new-gql-cheat-sheet-is-available-1-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>sones GraphDB Visualization Tool</title>
		<link>http://developers.sones.de/2010/01/25/sones-graphdb-visualization-tool/</link>
		<comments>http://developers.sones.de/2010/01/25/sones-graphdb-visualization-tool/#comments</comments>
		<pubDate>Mon, 25 Jan 2010 16:56:08 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Announcement]]></category>
		<category><![CDATA[GraphDB]]></category>
		<category><![CDATA[visualization]]></category>

		<guid isPermaLink="false">http://developers.sones.de/2010/01/25/sones-graphdb-visualization-tool/</guid>
		<description><![CDATA[We want to show you something today: Not everybody has an idea what to think and do with a graph data structure. Not even talking about a whole graph database management system. In fact what everybody needs is something to get “in touch” with those kinds of data representations. To make the graphs you are [...]]]></description>
			<content:encoded><![CDATA[<p>We want to show you something today: Not everybody has an idea what to think and do with a graph data structure. Not even talking about a whole graph database management system. In fact what everybody needs is something to get “in touch” with those kinds of data representations.</p>
<p>To make the graphs you are creating with the sones GraphDB that much more touchable we give you a sneak peak at our newest addition of the sone GraphDB toolset: the VisualGraph tool.</p>
<p>This tool connects to a running database and allows you to run queries on that database. The result of those queries is then presented to you in a much more natural and intuitive way, compared to the usual JSON and XML outputs. Even more: you can play with your queries and your data and see and feel what it’s like to work with a graph.</p>
<p>Expect this tool to be released in the next 1–2 months as open source. Everyone can use it, Everyone can benefit from it.</p>
<p>Oh. Almost forgot the video:</p>
<div>
<div id="scid:5737277B-5D6D-4f48-ABFC-DD9C333F4C5D:6dcf1e31-2321-4e6a-9432-e09dff601f5c" class="wlWriterEditableSmartContent" style="margin: 0px; display: inline; float: none; padding: 0px;">
<div><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="355" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://www.youtube.com/v/vJhwjls5Gxg&amp;hl=de_DE&amp;fs=1&amp;color1=0x234900&amp;color2=0x4e9e00&amp;hd=1&amp;hl=en" /><embed type="application/x-shockwave-flash" width="425" height="355" src="http://www.youtube.com/v/vJhwjls5Gxg&amp;hl=de_DE&amp;fs=1&amp;color1=0x234900&amp;color2=0x4e9e00&amp;hd=1&amp;hl=en"></embed></object></div>
</div>
</div>
<p>(Watch it in full screen if you can)</p>
]]></content:encoded>
			<wfw:commentRss>http://developers.sones.de/2010/01/25/sones-graphdb-visualization-tool/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

