diff --git a/chats/rdflib/README.md b/chats/rdflib/README.md index 8cc40f5..85cda1d 100644 --- a/chats/rdflib/README.md +++ b/chats/rdflib/README.md @@ -39,11 +39,15 @@ import ChatsModuleRdfLib, { ChatsModule } from "@solid-data-modules/chats-rdflib // 1️⃣ create rdflib store, fetcher and updater as usual const store = graph(); -const fetcher = new Fetcher( - store, +const options = { // 💡 pass an authenticated fetch - // to be able to access private resources* + // to be able to access private resources, + // see https://linkeddata.github.io/rdflib.js/doc/interfaces/AutoInitOptions.html /* fetch: authenticatedFetch */ +}; +const fetcher = new Fetcher( + store, + options, ); const updater = new UpdateManager(store);