npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

graphql-type-ints

v1.0.2

Published

Library for different graphql int types

Downloads

1,021

Readme

graphql-type-ints

GraphQL types for integers of arbitrary precision and bounds.

Javascript number type only has 53 bits of integer precision. This means it can't support 64 bit or higher integers without losing precision. To solve this, the library uses the new node bigint type.

Also often APIs want to restrict the range of values for an integer, this library also allows specifying a valid min and max range that will be validated.

Note: Depends on BigInt Spec support in the environment. BigInt is implemented in node >= 10.4.0.

Common Types

Provides these common types:

| GraphQL Type | GraphQL Kind | JS Type | Min | Max | | ------------------------- | ------------ | -------- | ------- | ------ | | GraphQLInt8 | INT | number | -(2^7) | 2^7-1 | | GraphQLUInt8 | INT | number | 0 | 2^8-1 | | GraphQLNaturalInt8 | INT | number | 1 | 2^8-1 | | GraphQLInt16 | INT | number | -(2^15) | 2^15-1 | | GraphQLUInt16 | INT | number | 0 | 2^16-1 | | GraphQLNaturalInt16 | INT | number | 1 | 2^16-1 | | GraphQLInt32 | INT | number | -(2^31) | 2^31-1 | | GraphQLUInt32 | INT | number | 0 | 2^32-1 | | GraphQLNaturalInt32 | INT | number | 1 | 2^32-1 | | GraphQLBigInt64 | STRING | bigint | -(2^63) | 2^63-1 | | GraphQLUBigInt64 | STRING | bigint | 0 | 2^64-1 | | GraphQLNaturalBigInt64 | STRING | bigint | 1 | 2^64-1 | | GraphQLStringInt64 | STRING | string | -(2^63) | 2^63-1 | | GraphQLStringUInt64 | STRING | string | 0 | 2^64-1 | | GraphQLNaturalStringInt64 | STRING | string | 1 | 2^64-1 |

Example

import { makeExecutableSchema } from 'graphql-tools';
import { GraphQLInt8 } from 'graphql-type-ints';

const typeDefs = `
scalar GraphQLInt8

type Query {
  value(v: GraphQLInt8): UInt
}`;

const resolvers = {
  GraphQLInt8,
  Query: {
    value: (root, { v }) => v,
  },
};
let schema = makeExecutableSchema({ typeDefs, resolvers });

export default schema;

Custom Types

You can also create a custom GraphQL integer type using one of these functions:

| Function | GraphQL Kind | JS Type | | ---------------------------- | ------------ | -------- | | createGraphQLNumberIntType | INT | number | | createGraphQLBigIntType | STRING | bigint | | createGraphQLStringIntType | STRING | string |

Each function takes the same parameters function(name, min ,max):

| Parameters | Description | | ---------- | --------------------------------------- | | name | GraphQLScalarType name (must be unique) | | min | Min value of the integer inclusive | | max | Max value of the integer inclusive |

The function will validate that the min and max parameters are in the safe integer range to ensure that you don't lose precision from javascript number type.

Example

import { UINT32_MAX, createGraphQLBigIntType } from 'graphql-type-ints';

const NaturalBigInt = createGraphQLBigIntType('NaturalBigInt', 1, UINT32_MAX);