graphql-minify

Crates.iographql-minify
lib.rsgraphql-minify
version0.1.0
sourcesrc
created_at2023-08-11 16:57:17.750842
updated_at2023-08-11 16:57:17.750842
descriptionMinify GraphQL queries
homepage
repositoryhttps://github.com/dan-lee/graphql-minify-rs
max_upload_size
id942131
size29,498
Daniel (dan-lee)

documentation

README

graphql-minify

This is a re-implementation of stripIgnoredCharacters from the GraphQL.js reference implementation in Rust. It uses Logos for tokenization.

All relevant tests are ported from the reference implementation and run against the Rust implementation.

Beware: It does not test for validity of the GraphQL document, its sole purpose is to minify the document as much as possible.

⚡️ Demo built with WASM

Details

Strips characters that are not significant to the validity or execution of a GraphQL document:

  • UnicodeBOM
  • WhiteSpace
  • LineTerminator
  • Comment
  • Comma
  • BlockString indentation

Note: It is required to have a delimiter character between neighboring non-punctuator tokens and this function always uses single space as delimiter.

It is guaranteed that both input and output documents if parsed would result in the exact same AST except for nodes location.

Usage

use graphql_minify::minify;

fn main() {
  let minified = minify("query { user { id name } }");

  assert_eq!(minified.unwrap(), "query{user{id name}}");
}
Commit count: 3

cargo fmt