See proposal of related ideas in topic by @DavidMtl.
And how these relate to Solid + SAFE:
See proposal of related ideas in topic by @DavidMtl.
And how these relate to Solid + SAFE:
Hey @happybeing!
Iāve fiiiiiiiiinally been getting to some more serious SOLID reading, and digging into your services lib a bit (nice work so far!). I have a few Qs I was hoping you might be able to clarify:
The aim for the lib is to hijack fetch
and would be the REST API for SOLID, in order to map those to SAFE functionality (MDs)? Or are more things at work?
Youāre using rdf.js to manage the triples and perform SPARQL queries on returned data?
The advantage of rdf.js is the above exactly? Simpler queries of linked data right? Or is rdf.js more focussed on generating REST style calls?
Let me know if Iām on/near/wayoff there, please
Thatās pretty much it. Glad you are looking at this Josh as I would value any feedback, observations, ideas, advice etc
To confirm/clarify:
rdflib.js is extensive and I donāt know it very well. The Fetcher handles different data formats, and returns a āgraphā which can then be queried directly. Also, I think the Fetcher may be able to crawl multiple resources where one resource refers to another, including on other domains - a bit like a scraper where you set the depth. Iām not sure about that, so take with a pinch of salt, but if so how cool is that!
The SAFE Plume demo uses Fetcher, but doesnāt do anything complex, so I think it could just as well only use fetch() but I may be underestimating it!
Yeh nice. Sounds similar to how I was imagining search indexes to function (time and time ago when I was trying to whip that up back when Structured Data was a thing ).
@happybeing, itās a great idea for smoothing out things for SOLID devs to open up adoption etc
Only thing that pops up is that right now youāre working in one JS file. For end use probably it should be split up, such that you need only include the LDP portion and wont need the rest of the code services etc that are irrelevant for you.
Mostly for me it leads into questions about how we should be storing the data on SAFE, and if/how we can treat LDP as something first class perhapsā¦ ? So in the end we could aim to be building apps directly on the network using this setup for data.
How are you storing/writing data on the network at the moment?
An array of objects on the MD?
{
//... rest of MD stuff
RDF : [ //... more triples
{
s : 'SAFE'
p : 'is'
o : 'rad'
},
{
s : 'happybeing'
p : 'made'
o : 'this'
}
]
}
Is there any more info that needs to be stored for Linked Data?
Some other thoughts:
I wonder how LD triples lend themselves to site indexing (although probably thereād be a need for more detailed info than RDF triples provides?)
What would be the expected / potential structures of LD for a website or a user profile? (is that standardised anywhere?)
Could we query the network directly for triples? Is that even possible? Is that even desirable?
Thanks for the feedback and support Josh, Iām glad youāre interested in this and it would be great to have as much input from you as you want to / can give
You ask important questions and ideas which are food for thought. Some answers & commentā¦
The library is one file just for convenience atm but the code is structured so it can be split up easily, new services added, implementable replaced etc, even by non coders. So yes, thatās to be done.
Iāve also just fleshed my thoughts on how to standardise this for SAFE, by using RESTful file based services as you may have seen:
The LDP and Solid standards use a file / document metaphor, which are resources in RDF terminology. So this is how the storage is implemented, and the transactions boil down to CRUD operations on containers and files, but using RDF (usually Turtle for any payload and response body). Turtle is essentially a text format for Subject/Predicate/Object triples (e.g. Josh/works for/Maidsafe etc - BTW thatās not Turtle, just a hint about what a triple is ).
Linked Data is generally implemented in a Solid or LDP server as directories of files where each file represents an RDF resource that can be addressed with its own URI. Responses are therfore often parsed into a graph which is then queried and manipulated.
SPARQL queries return the triples which might be a subset of one resource or drawn from multiple resources, even spread across different servers.
So my implementation stores each RDF resource as a file (using SAFE NFS). Content negotiation (not yet implemented) allows the requester to receive results in different forms, depending on the representation that is stored (Turtle, N3, JSON-LD etc) and whatever conversions the server supports from each stored representation. In addition, rdflib.js Fetcher has several conversions built in too - so client side.
Note that a resource can be in any format, not just RDF, so plain text, .png, .mp3 etc, but using RDF leverages the semantic Web, SPARQL etc and if you upload a Word document to Timās Solid server, a kitten dies.
Iāll be showing the RESTful LDP interface at work, and the Turtle it returns for container listings, and that is used store blog posts in my demo. So if you want to see some really simple LD maybe take a look at that - itās all there in the console output if you visit plumetest atm).
I donāt think thereās any limit to what triples can represent, though what is the best implementation is a different matter. Some use file system back ends, some graph databases etc.
For leveraging the existing semantic Web (the data out there, applications, tools, libraries and skills), and to create an ecosystem where SAFE apps can share, reuse and reach across a sea of data, itās the protocols Solid, LDP and the standards RDF/LinkedData, WebID etc that we should support. And things like the RESTful principles and the [Architecture of the World Wide Web] (Architecture of the World Wide Web, Volume One). Sitting in on the chats between Tim and his colleagues has taught me a lot about these things, and the value of building with them.
HTML has various ways of integrating with LinkedData and there is a standard way for users to publish a profile as part of a Web identity (a WebID URI), which is something a user owns and controls.
Now youāre thinking! Lots of ways to pay with this and I havenāt really got the basics yet. Step by step I plod. I look forward to working with folks to figure things like this out.
Latest: video demo of a Solid app running on the SAFE Network and slides from a presentation explaining the benefits of building Solid apps on SAFE.
I spent a few months getting this far, but canāt take this much further on my own so if you like these ideas please consider getting involved - I have lots of ideas for things to do!
How do we move this forward?
Although far from understanding the concepts of the semantic web, the most obvious piece is that of resources being linked and accessed via URI which brings us back again to @bochacoās to be able to access data on the network as a SAFE URI via XOR name, like safe://4291165faf85f9964d4c8f5d12e4b0dc31ffda4509d2049704c77a018f922c98
(a hexadecimal slice of a 32 byte XOR name).
Additionally, itās necessary for a URI to contain the format and metadata of the data which it represents, which https://multiformats.io can help provide inspiration.
I think it will be useful both to have a mechanism such as the one you refer to here, and the ability for RDF resources to be accessed by the browser as if they are a Web service. The former will allow linking directly to Immutable Data, and more general forms of file sharing without using a public ID, so will be very valuable. The latter may prove useful in itself, because a short readable URI is a better UI, and can be updated for example, and is available now.
In the DevCon demo you can see me doing the second kind, but I hacked it by making an LDP based on top a SAFE www device, rather than a separate new LDP SAFE service type - which is necessary if we want to generalise this. I made a proposal for how to do that here:
Where files are stored using NFS we can use the file extension to imply the ContentType (which is how a typical Solid server works), but if the SAFE NFS API is extended to allow this to be set as metadata, we could use that instead.
Iām not sure how important that is for ContentType because using the file extension works well enough, but I think itās still going to be useful to allow NFS file metadata to be set, and I believe this is already planned.
At the same time Iād like to add the option to have MD entries for containers so they can also have metadata, and can also be explicitly created and deleted, because this improves compatibility with LDP and therefore Solid.
Thanks for your input and please keep digging in, itās great to see. I am due to chat with @Viv and @Krishna about going forward so tagging them with your interest.
This is an interesting site for looking at LD sets http://lod-cloud.net/
A couple of links here relevant to the Semantic Web:
https://gitter.im/linkeddata/chat?at=5b10556d4eaffb692d6fadeb
SPARQL queries in the client! One to bookmark
Comunica is a highly modular and flexible meta query engine for the web
Overview and details:
Direct link to Executing a SPARQL Query.
I second this! This would be huge for media!
A very interesting development from Ruben Verborgh. SAFE could support this or something inspired by it.
Nice additions to the JavaScript toolkit:
LDflex - a domain-specific language for JavaScript that lets you traverse Linked Data graphs like dynamic objects, and
query-ldflex - access Solid data pods using the LDflex language
Oh, and from Callidon:
sparql-engine - a framework for building SPARQL query engines in Javascript: āBuild a SPARQL query engine on top of any data storage systemā
Tim Berners-Lee announces sabbatical to found Inrupt, a company to promote the Solid platform and realise his original vision for an open web of data (not just documents.
Letās be part of this!
In search of interoperability, hereās a new resource: