Skip to content

Latest commit

 

History

History
102 lines (81 loc) · 5.02 KB

toc.md

File metadata and controls

102 lines (81 loc) · 5.02 KB

Table of contents

Overview

nim-graphql designed with simplicity in mind without compromising performance and robustsness. Every part of nim-graphql can be tested and debugged relatively easy. nim-graphql comes with comprehensive test suite touching every features as much as possible. This gives us confidence when deploying a graphql service in performance critical and secure application.

Graphql core

The core of nim-graphql is built upon these components:

  • a performant Name or identifiers table.
  • an [almost] exception free lexer designed with security in mind.
  • Three kind of parsers to to help you build responsive graphql service:
    • Schema parser. This parser parse graphql type system document a.k.a schema.
    • Query parser. This parser only parse graphql query language and validating user input.
    • Full parser. This is a combination of Schema parser and Query parser.
  • A validator aiming at implementing all features described in the official specification.
  • An execution engine that can accept external datasources easily and exposing the interface using only plain Nim without hiding behind magical macros.
  • A complete but simple type system introspection described in the specification covering not only user defined types but also capable to query built in types using the same syntax, same output.

Security features

Because nim-graphql lexer and parser are dealing with potentially malicious/malformed input that can bring down the service, both lexer and parser are configurable to mitigate this problem.

  • Lexer config options:

    • maxIdentChars. Identifiers length must be within maxIdentChars or trigger an error. (default = 128)
    • maxDigits. nim-graphql support arbitrary number of digits for integer and float, but is limited by maxDigits. (default = 128)
    • maxStringChars. Single line string and multi line string length should not become too long. (default = 2048)
  • Parser config options:

    • maxRecursionLimit. Field selection recursion must be within this limit. (default = 25)
    • maxListElems. Arrays and lists maximum elements is limited by this option. (default = 128)
    • maxFields. Type fields, input object fields, and operation fields number should be within this limit. (default = 128)
    • maxArguments. Fields and directives usually don't require too much arguments. (default = 32)
    • maxSchemaElems. Graphql specification tells us it can only contains max 3 elems. (default = 3)
    • maxEnumVals. We have efficient identifers comparison, but should not too much enums. (default = 64)
    • maxDefinitions. Queries, mutations, subscriptions, and fragments total number should be reasonable. (default = 512)
    • maxChoices. Unions and directive's locations are limited by this number. (default = 64)

Unicode support

  • Input string:

    • Accepted encoding for input string are UTF-8.
    • Escaped unicode in quoted string take the form of UTF-16 BE:
      • Fixed length notation using 4 digit hex: e.g. \u000A.
      • Variable length notation using curly braces \u{1F4A9} with range (0x0000..0xD7FF, 0xE000..0x10FFFF).
      • Escape sequences are only meaningful within a single-quoted string.
      • In multiline string, unicode char must be encoded using UTF-8.
      • Surrogate pair using fixed length notation "\uD83D\uDCA9" is equal to variable length notation "\u{1F4A9}".
      • Orphaned surrogate will result in error.
  • Output string:

    • Output string subject to output serialization format specification.
    • For example, output using json as serialization format will result in UTF-8 encoded string.
    • If the escape flag is set, it will use UTF-16 BE 4 digit hex fixed length similar to GraphQL escape sequence.