Distinct subjects
3
Number of triples
9
WasGeneratedBy
Shippers

Select shippers

Text
PREFIX  schema: <https://schema.org/>

  SELECT DISTINCT  ?shipper
  WHERE
    { GRAPH ?doc
        { ?shipper  a                 schema:Corporation ;
                    schema:legalName  ?companyName
          GRAPH ?orderDeliveryDoc
            { ?orderDelivery
                        a                schema:ParcelDelivery ;
                        schema:provider  ?shipper
            }
        }
    }
  ORDER BY ?companyName
Title
Select shippers

Shippers

Text
PREFIX foaf:       <http://xmlns.com/foaf/0.1/>
PREFIX dct:        <http://purl.org/dc/terms/>
PREFIX schema:     <https://schema.org/>

CONSTRUCT
{
    GRAPH ?graph
    {
        ?graph dct:title ?companyName ;
            foaf:primaryTopic ?shipper .

        ?shipper a schema:Corporation ;
            dct:title ?companyName ;
            schema:legalName ?companyName ;
            schema:identifier ?shipperID ;
            schema:telephone ?phone .
    }
}
WHERE
{
    ?shipper_row <#shipperID> ?shipperID ;
        <#companyName> ?companyName ;
        <#phone> ?phone .

    BIND(uri(concat(str($base), "shippers/")) AS ?container)
    BIND(uri(concat(str(?container), encode_for_uri(?shipperID), "/")) AS ?graph)
    BIND(uri(concat(str(?graph), "#this")) AS ?shipper)
}
Title
Shippers

Shippers

Delimiter
,
EndedAtTime
16 June 2026 21:04
File
shippers.csv
Query
Shippers
StartedAtTime
16 June 2026 21:04
Title
Shippers

shippers.csv

FileName
shippers.csv
Format
csv
Sha1sum (hex)
9da22c73f50f6bab97274a4d3abf1c9f505ebadf
Title
shippers.csv

shippers.rq

FileName
shippers.rq
Format
plain
Sha1sum (hex)
5aa561ff3866a5a3a47de87776d0137b424bbf3d
Title
shippers.rq