GraphCentric developer view

/decks/slides/access-control-olney-church

https://graphcentric.com/decks/slides/access-control-olney-church

Navigation

Methods

MethodStatusBasis
GETavailablerepresentation candidates are configured
HEADavailableGET representation headers
OPTIONSavailableHTTP capability discovery

Resource Details

URI
https://graphcentric.com/decks/slides/access-control-olney-church
Graph
https://graphcentric.com/graphs/public-resources
Query
s3://graphcentric.com/decks-content/slides/access-control-olney-church/query.sparql

Resource Configuration Model

Turtle

Server rendered
PREFIX dcterms: <http://purl.org/dc/terms/>
PREFIX gcs:     <https://graphcentric.com/schema/>
PREFIX rdf:     <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX rdfs:    <http://www.w3.org/2000/01/rdf-schema#>
PREFIX schema:  <https://schema.org/>
PREFIX sh:      <http://www.w3.org/ns/shacl#>
PREFIX xsd:     <http://www.w3.org/2001/XMLSchema#>

<https://graphcentric.com/decks/slides/access-control-olney-church.html>
        rdf:type           gcs:WebResource;
        gcs:contentType    "text/html;charset=utf-8";
        gcs:graph          <https://graphcentric.com/graphs/public-resources>;
        gcs:link           <https://graphcentric.com/decks/slides/access-control-olney-church.html/.links/canonical>;
        gcs:outerTemplate  <s3://graphcentric.com/templates/slide.html>;
        gcs:template       <s3://graphcentric.com/decks-content/slides/access-control-olney-church/body.html> .

<https://graphcentric.com/decks/slides/access-control-olney-church/.links/collection>
        rdf:type     gcs:Link;
        gcs:rel      "collection";
        gcs:target   <https://graphcentric.com/decks/slides.html>;
        schema:name  "Raw slides" .

<https://graphcentric.com/decks/slides.html>
        rdf:type           gcs:WebResource;
        gcs:contentType    "text/html;charset=utf-8";
        gcs:graph          <https://graphcentric.com/graphs/public-resources>;
        gcs:outerTemplate  <s3://graphcentric.com/templates/public.html>;
        gcs:template       <s3://graphcentric.com/decks/slides.html> .

<https://graphcentric.com/decks/slides/access-control-olney-church.html/.links/canonical>
        rdf:type     gcs:Link;
        gcs:rel      "canonical";
        gcs:target   <https://graphcentric.com/decks/slides/access-control-olney-church>;
        schema:name  "Canonical slide" .

<https://graphcentric.com/decks/slides/access-control-olney-church>
        rdf:type   gcs:WebResource;
        gcs:frame  <s3://graphcentric.com/decks-content/slides/access-control-olney-church/frame.jsonld>;
        gcs:graph  <https://graphcentric.com/graphs/public-resources>;
        gcs:link   <https://graphcentric.com/decks/slides/access-control-olney-church/.links/resource-state-query> , <https://graphcentric.com/decks/slides/access-control-olney-church/.links/resource-configuration-html> , <https://graphcentric.com/decks/slides/access-control-olney-church/.links/collection> , <https://graphcentric.com/decks/slides/access-control-olney-church/.links/alternate-html>;
        gcs:query  <s3://graphcentric.com/decks-content/slides/access-control-olney-church/query.sparql> .

<https://graphcentric.com/decks/slides/access-control-olney-church/.links/resource-configuration-html>
        rdf:type     gcs:Link;
        gcs:rel      "https://graphcentric.info/link-relations/resource-configuration";
        gcs:target   <https://graphcentric.com/decks/slides/access-control-olney-church.resource-configuration.html>;
        schema:name  "Slide Resource Configuration HTML" .

<https://graphcentric.com/decks/slides/access-control-olney-church/.links/resource-state-query>
        rdf:type     gcs:Link;
        gcs:rel      "https://graphcentric.info/link-relations/resource-state-query";
        gcs:target   <https://graphcentric.com/decks/slides/access-control-olney-church.sparql>;
        schema:name  "Slide Resource State Query" .

<https://graphcentric.com/decks/slides/access-control-olney-church.resource-configuration.html>
        rdf:type         gcs:WebResource;
        gcs:contentType  "text/html;charset=utf-8";
        gcs:graph        <https://graphcentric.com/graphs/public-resources> .

<https://graphcentric.com/decks/slides/access-control-olney-church.sparql>
        rdf:type         gcs:WebResource;
        gcs:contentType  "text/plain;charset=utf-8";
        gcs:graph        <https://graphcentric.com/graphs/public-resources> .

<https://graphcentric.com/decks/slides/access-control-olney-church/.links/alternate-html>
        rdf:type     gcs:Link;
        gcs:rel      "alternate";
        gcs:target   <https://graphcentric.com/decks/slides/access-control-olney-church.html>;
        schema:name  "Slide HTML" .

SPARQL Query

s3://graphcentric.com/decks-content/slides/access-control-olney-church/query.sparql
BASE <https://graphcentric.com/>
PREFIX schema: <https://schema.org/>
PREFIX gcs: <https://graphcentric.com/schema/>
PREFIX dcterms: <http://purl.org/dc/terms/>

CONSTRUCT {
  ?_subject
    dcterms:title "Olney Church";
    gcs:image ?image.

  ?image
    a schema:ImageObject;
    schema:name ?imageName;
    schema:description ?altText;
    schema:caption ?caption;
    schema:contentUrl ?image;
    schema:creator ?creator.

  ?creator
    a schema:Person;
    schema:name ?creatorName.
}
WHERE {
  BIND(<media/decks/access-control/olney-church.jpg> AS ?image)
  BIND("Olney church photo" AS ?altText)

  GRAPH <graphs/internal-decks> {
    ?image schema:name ?imageName.
    OPTIONAL { ?image schema:creator ?creator. }
    OPTIONAL { ?image schema:creditText ?creditText. }
  }

  OPTIONAL {
    FILTER(BOUND(?creator))
    GRAPH <graphs/cms> {
      ?creator schema:name ?creatorName.
    }
  }

  BIND(IF(BOUND(?creatorName), CONCAT("Photo: ", ?creatorName), ?creditText) AS ?caption)
}

Query Scope

Named Graphs

6 graphs

Resource State

Turtle

Server rendered
PREFIX dcterms: <http://purl.org/dc/terms/>
PREFIX gcs:     <https://graphcentric.com/schema/>
PREFIX rdf:     <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX rdfs:    <http://www.w3.org/2000/01/rdf-schema#>
PREFIX schema:  <https://schema.org/>
PREFIX sh:      <http://www.w3.org/ns/shacl#>
PREFIX xsd:     <http://www.w3.org/2001/XMLSchema#>

SSE Status

Stream link relations
streamstatussubscriberslast idstate
No stream resources are linked from this resource.