Skip to main content

SPARQLQueryLink

SPARQL query link.

Props

  • query = {string}
  • children = {React.ReactNode}
    • React children prop

Example with code

import SPARQLQueryLink from '@components/SPARQLQueryLink';

const MyComponent = () => {
return (
<SPARQLQueryLink query="SELECT * WHERE { ?s ?p ?o } LIMIT 100">
View the query
</SPARQLQueryLink>
);
};