RDFLib / prez

Prez is a data-configurable Linked Data API framework that delivers profiles of Knowledge Graph data according to the Content Negotiation by Profile standard.
BSD 3-Clause "New" or "Revised" License
18 stars 7 forks source link

Search mvp #149

Closed recalcitrantsupplant closed 9 months ago

recalcitrantsupplant commented 10 months ago
  1. /search?term=contact&method=default& /&_format=text/anot+turtle _adds a triple to the search query of the form ?search_result_uri skos:broader <http://resource.geosciml.org/classifier/cgi/contacttype/metamorphic_contact>_

  2. /search?term=address&method=default&filter-to-focus[rdfs:member]=https://linked.data.gov.au/datasets/gnaf _adds a triple to the search query of the form <https://linked.data.gov.au/datasets/gnaf> rdfs:member ?search_result_uri_

  3. Search with a filter on multiple objects (the list of objects is treated as an OR)/search?term=address&method=default&filter-to-focus[rdfs:member]=https://linked.data.gov.au/datasets/gnaf,https://linked.data.gov.au/datasets/defg adds a triple to the search query of the form <https://linked.data.gov.au/datasets/gnaf> rdfs:member ?o . VALUES ?o { <https://linked.data.gov.au/datasets/gnaf> <https://linked.data.gov.au/datasets/defg>}

recalcitrantsupplant commented 9 months ago

Resolves #153