VOS.VirtRDFViewTPCHDemo

  • Topic
  • Discussion
  • VOS.VirtRDFViewTPCHDemo(Last) -- DAVWikiAdmin? , 2017-06-29 07:39:51 Edit WebDAV System Administrator 2017-06-29 07:39:51

    TPC H Linked Data Views Live links to a sample instance

    Class Basic SPARQL Protocol URL iSPARQL Results URL SPARQL Query Dynamic Data Page
    Customer List all Customers URIs List all Customers URIs PREFIX tpch: <http://www.openlinksw.com/schemas/tpch#>
    SELECT *
    FROM <http://demo.openlinksw.com/tpch>
    WHERE
      {
        ?s a tpch:customer .
      }
    Customer 117
    Nation List all Nations URIs List all Nations URIs PREFIX tpch: <http://www.openlinksw.com/schemas/tpch#>
    SELECT *
    FROM <http://demo.openlinksw.com/tpch>
    WHERE
      {
        ?s a tpch:nation .
      }
    USA
    Order List all Orders URIs List all Orders URIs PREFIX tpch: <http://www.openlinksw.com/schemas/tpch#>
    SELECT *
    FROM <http://demo.openlinksw.com/tpch>
    WHERE
      {
        ?s a tpch:order .
      }
    Order 2628
    Supplier List all Suppliers URIs List all Suppliers URIs PREFIX tpch: <http://www.openlinksw.com/schemas/tpch#>
    SELECT *
    FROM <http://demo.openlinksw.com/tpch>
    WHERE
      {
        ?s a tpch:supplier .
      }
    Supplier 29