@apollo/client
Version:
A fully-featured caching GraphQL client.
13 lines (12 loc) • 396 B
JavaScript
import { isNonNullObject } from "./isNonNullObject.js";
/**
* @internal
*
* @deprecated This is an internal API and should not be used directly. This can be removed or changed at any time.
*/
export function isDocumentNode(value) {
return (isNonNullObject(value) &&
value.kind === "Document" &&
Array.isArray(value.definitions));
}
//# sourceMappingURL=isDocumentNode.js.map