Skip to content
This repository has been archived by the owner on May 10, 2021. It is now read-only.

v0.0.5

Compare
Choose a tag to compare
@esamattis esamattis released this 13 Jan 14:09
· 45 commits to master since this release

Add fetchOptions support to request()

Example

request("/graphql", {
    query: getPostsQuery,
    variables: {
        first: 10,
    },
    fetchOptions: {
        credentials: "omit",
        headers: {
            "x-custom-header": "test",
        },
    },
});

v0.0.4...v0.0.5