Variable sparqlFetchConfigsConst

sparqlFetchConfigs: {
    ntriples: {
        accept: "application/n-triples,*/*;q=0.9";
        cache: RequestCache;
        contentType: "application/sparql-query";
    };
    sparqlResults: {
        accept: "application/sparql-results+json,*/*;q=0.9";
        cache: RequestCache;
        contentType: "application/sparql-query";
    };
    sparqlUpdate: { accept: "*/*"; contentType: "application/sparql-update" };
    turtle: {
        accept: "text/turtle,*/*;q=0.9";
        cache: RequestCache;
        contentType: "application/sparql-query";
    };
} = ...

Type declaration

  • Readonlyntriples: {
        accept: "application/n-triples,*/*;q=0.9";
        cache: RequestCache;
        contentType: "application/sparql-query";
    }
  • ReadonlysparqlResults: {
        accept: "application/sparql-results+json,*/*;q=0.9";
        cache: RequestCache;
        contentType: "application/sparql-query";
    }
  • ReadonlysparqlUpdate: { accept: "*/*"; contentType: "application/sparql-update" }
  • Readonlyturtle: {
        accept: "text/turtle,*/*;q=0.9";
        cache: RequestCache;
        contentType: "application/sparql-query";
    }