@0no-co/graphql.web 0.1.4 → 0.1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +14 -0
- package/dist/graphql.web.d.ts +1 -2
- package/dist/graphql.web.js +213 -243
- package/dist/graphql.web.js.map +1 -1
- package/dist/graphql.web.mjs +214 -244
- package/dist/graphql.web.mjs.map +1 -1
- package/package.json +4 -3
package/README.md
CHANGED
|
@@ -31,6 +31,20 @@ spec-compliant or compatible with GraphQL.js’ implementation.
|
|
|
31
31
|
> project](https://github.com/0no-co/graphql-web-lite) is maintained to be
|
|
32
32
|
> a full shim/alias for the `graphql` package.
|
|
33
33
|
|
|
34
|
+
### Overview
|
|
35
|
+
|
|
36
|
+
`@0no-co/graphql.web` aims to provide a minimal set of exports to implement
|
|
37
|
+
client-side GraphQL utilities, mostly including parsing, printing, and visiting
|
|
38
|
+
the GraphQL AST, and the `GraphQLError` class.
|
|
39
|
+
|
|
40
|
+
Currently, `graphql.web` compresses to under 4kB and doesn’t regress on
|
|
41
|
+
GraphQL.js’ performance when parsing, printing, or visiting the AST.
|
|
42
|
+
|
|
43
|
+
For all primary APIs we aim to hit 100% test coverage and match the output,
|
|
44
|
+
types, and API compatibility of GraphQL.js, including — as far as possible
|
|
45
|
+
— TypeScript type compatibility of the AST types with the currently stable
|
|
46
|
+
version of GraphQL.js.
|
|
47
|
+
|
|
34
48
|
### API
|
|
35
49
|
|
|
36
50
|
Currently, only a select few exports are provided — namely, the ones listed here
|
package/dist/graphql.web.d.ts
CHANGED
|
@@ -424,7 +424,6 @@ declare class GraphQLError extends Error {
|
|
|
424
424
|
get [Symbol.toStringTag](): string;
|
|
425
425
|
}
|
|
426
426
|
|
|
427
|
-
declare function blockString(string: string): string;
|
|
428
427
|
type ParseOptions = {
|
|
429
428
|
[option: string]: any;
|
|
430
429
|
};
|
|
@@ -462,4 +461,4 @@ declare function print(node: ASTNode): string;
|
|
|
462
461
|
declare function valueFromASTUntyped(node: ValueNode, variables?: Maybe<Record<string, any>>): unknown;
|
|
463
462
|
declare function valueFromTypeNode(node: ValueNode, type: TypeNode, variables?: Maybe<Record<string, any>>): unknown;
|
|
464
463
|
|
|
465
|
-
export { ASTNode, ASTReducer, ASTVisitFn, ASTVisitor, ArgumentNode, BREAK, BooleanValueNode, ConstArgumentNode, ConstDirectiveNode, ConstListValueNode, ConstObjectFieldNode, ConstObjectValueNode, ConstValueNode, DefinitionNode, DirectiveDefinitionNode, DirectiveNode, DocumentNode, EnumTypeDefinitionNode, EnumTypeExtensionNode, EnumValueDefinitionNode, EnumValueNode, ExecutableDefinitionNode, FieldDefinitionNode, FieldNode, FloatValueNode, FragmentDefinitionNode, FragmentSpreadNode, GraphQLError, InlineFragmentNode, InputObjectTypeDefinitionNode, InputObjectTypeExtensionNode, InputValueDefinitionNode, IntValueNode, InterfaceTypeDefinitionNode, InterfaceTypeExtensionNode, Kind, ListTypeNode, ListValueNode, Location, NameNode, NamedTypeNode, NonNullTypeNode, NullValueNode, ObjectFieldNode, ObjectTypeDefinitionNode, ObjectTypeExtensionNode, ObjectValueNode, OperationDefinitionNode, OperationTypeDefinitionNode, OperationTypeNode, ScalarTypeDefinitionNode, ScalarTypeExtensionNode, SchemaDefinitionNode, SchemaExtensionNode, SelectionNode, SelectionSetNode, Source, StringValueNode, TypeDefinitionNode, TypeExtensionNode, TypeNode, TypeSystemDefinitionNode, TypeSystemExtensionNode, UnionTypeDefinitionNode, UnionTypeExtensionNode, ValueNode, VariableDefinitionNode, VariableNode,
|
|
464
|
+
export { ASTNode, ASTReducer, ASTVisitFn, ASTVisitor, ArgumentNode, BREAK, BooleanValueNode, ConstArgumentNode, ConstDirectiveNode, ConstListValueNode, ConstObjectFieldNode, ConstObjectValueNode, ConstValueNode, DefinitionNode, DirectiveDefinitionNode, DirectiveNode, DocumentNode, EnumTypeDefinitionNode, EnumTypeExtensionNode, EnumValueDefinitionNode, EnumValueNode, ExecutableDefinitionNode, FieldDefinitionNode, FieldNode, FloatValueNode, FragmentDefinitionNode, FragmentSpreadNode, GraphQLError, InlineFragmentNode, InputObjectTypeDefinitionNode, InputObjectTypeExtensionNode, InputValueDefinitionNode, IntValueNode, InterfaceTypeDefinitionNode, InterfaceTypeExtensionNode, Kind, ListTypeNode, ListValueNode, Location, NameNode, NamedTypeNode, NonNullTypeNode, NullValueNode, ObjectFieldNode, ObjectTypeDefinitionNode, ObjectTypeExtensionNode, ObjectValueNode, OperationDefinitionNode, OperationTypeDefinitionNode, OperationTypeNode, ScalarTypeDefinitionNode, ScalarTypeExtensionNode, SchemaDefinitionNode, SchemaExtensionNode, SelectionNode, SelectionSetNode, Source, StringValueNode, TypeDefinitionNode, TypeExtensionNode, TypeNode, TypeSystemDefinitionNode, TypeSystemExtensionNode, UnionTypeDefinitionNode, UnionTypeExtensionNode, ValueNode, VariableDefinitionNode, VariableNode, parse, parseType, parseValue, print, printBlockString, printString, valueFromASTUntyped, valueFromTypeNode, visit };
|