Difference between revisions of "SimpleGraph-Core"

From BITPlan Wiki
Jump to navigation Jump to search
 
Line 1: Line 1:
 +
Basically SimpleGraph core has the idea of Vertex and Edges being able to carry "payloads". Some of the payload data will be replicated as properties to be
 +
able to search for the payload and do something with it but the main thing is to have some kind of pointer/key that a certain SimpleGraph Module will be able work with to
 +
allow working with the API for the payload.
 +
= Example =
 +
Lets's assume we'd like to acces some data about [https://en.wikipedia.org/wiki/List_of_gravitational_wave_observations Gravitational Wave observations].
 +
A Source for general information on these events is WikiData where you can get a list of the events with a SPARQL query.
 +
<graphviz>
 +
digraph example1 {
 +
  WikiData
 +
}
 +
</graphviz>
 +
 
[[Category:SimpleGraph]][[Category:frontend]]
 
[[Category:SimpleGraph]][[Category:frontend]]

Revision as of 10:22, 17 October 2018

Basically SimpleGraph core has the idea of Vertex and Edges being able to carry "payloads". Some of the payload data will be replicated as properties to be able to search for the payload and do something with it but the main thing is to have some kind of pointer/key that a certain SimpleGraph Module will be able work with to allow working with the API for the payload.

Example

Lets's assume we'd like to acces some data about Gravitational Wave observations. A Source for general information on these events is WikiData where you can get a list of the events with a SPARQL query.