@mysten/sui
Version:
Sui TypeScript API(Work in Progress)
71 lines (70 loc) • 2.56 kB
JavaScript
var __typeError = (msg) => {
throw TypeError(msg);
};
var __accessCheck = (obj, member, msg) => member.has(obj) || __typeError("Cannot " + msg);
var __privateGet = (obj, member, getter) => (__accessCheck(obj, member, "read from private field"), getter ? getter.call(obj) : member.get(obj));
var __privateAdd = (obj, member, value) => member.has(obj) ? __typeError("Cannot add the same private member more than once") : member instanceof WeakSet ? member.add(obj) : member.set(obj, value);
var __privateSet = (obj, member, value, setter) => (__accessCheck(obj, member, "write to private field"), setter ? setter.call(obj, value) : member.set(obj, value), value);
var _url, _queries, _headers, _fetch;
import { print } from "graphql";
import { Experimental_BaseClient } from "../experimental/index.js";
import { GraphQLTransport } from "../experimental/transports/graphql.js";
class SuiGraphQLRequestError extends Error {
}
class SuiGraphQLClient extends Experimental_BaseClient {
constructor({
url,
fetch: fetchFn = fetch,
headers = {},
queries = {},
network = "unknown"
}) {
super({
network
});
__privateAdd(this, _url);
__privateAdd(this, _queries);
__privateAdd(this, _headers);
__privateAdd(this, _fetch);
this.core = new GraphQLTransport(this);
__privateSet(this, _url, url);
__privateSet(this, _queries, queries);
__privateSet(this, _headers, headers);
__privateSet(this, _fetch, (...args) => fetchFn(...args));
}
async query(options) {
const res = await __privateGet(this, _fetch).call(this, __privateGet(this, _url), {
method: "POST",
headers: {
"Content-Type": "application/json",
...__privateGet(this, _headers)
},
body: JSON.stringify({
query: typeof options.query === "string" || options.query instanceof String ? String(options.query) : print(options.query),
variables: options.variables,
extensions: options.extensions,
operationName: options.operationName
}),
signal: options.signal
});
if (!res.ok) {
throw new SuiGraphQLRequestError(`GraphQL request failed: ${res.statusText} (${res.status})`);
}
return await res.json();
}
async execute(query, options) {
return this.query({
...options,
query: __privateGet(this, _queries)[query]
});
}
}
_url = new WeakMap();
_queries = new WeakMap();
_headers = new WeakMap();
_fetch = new WeakMap();
export {
SuiGraphQLClient,
SuiGraphQLRequestError
};
//# sourceMappingURL=client.js.map