This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Web.Mvc; | |
using NetworkedPlanet.Brightstar.Client; | |
namespace NetworkedPlanet.BrightStar.Samples.NerdDinner.Controllers | |
{ | |
public class SparqlController : Controller | |
{ | |
[ValidateInput(false)] | |
public ActionResult Index(string query) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@prefix txn: <http://example.org/data/transaction/> . | |
@prefix srv: <http://example.org/data/server/> . | |
@prefix log: <http://example.org/ont/transaction-log/> . | |
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . | |
txn:123 a log:Transaction ; | |
log:processedBy srv:A ; | |
log:processedAt "2015-10-16T10:22:23"^^xsd:dateTime ; | |
log:statusCode 200 . | |