@inrupt/solid-client
    Preparing search index...

    Function getSolidDataset

    • Fetch a SolidDataset from the given URL. Currently requires the SolidDataset to be available as Turtle.

      Note that the URL of a container ends with a trailing slash "/". If it is missing, some libraries will add it automatically, which may result in additional round-trips, possibly including authentication errors (more information).

      Parameters

      • url: string | Url

        URL to fetch a [[SolidDataset]] from.

      • Optionaloptions: Partial<
            {
                fetch: (
                    input: URL | RequestInfo,
                    init?: RequestInit,
                ) => Promise<Response>;
            } & ParseOptions,
        >

        Optional parameter options.fetch: An alternative fetch function to make the HTTP request, compatible with the browser-native fetch API.

      Returns Promise<Readonly<{}> & WithResourceInfo & {}>

      Promise resolving to a [[SolidDataset]] containing the data at the given Resource, or rejecting if fetching it failed.