0.1.2 • Published 6 years ago

graphql-type-regexp v0.1.2

Weekly downloads
16
License
MIT
Repository
github
Last release
6 years ago

graphql-type-regexp

RegExp scalar type for GraphQL.js. Inspired by graphql-type-json.

Usage

In schema:

scalar RegExp

# ...

type Query {
    things(filter: RegExp): [Thing!]
    # ...
  }

In resolvers:

// when using babel
import GraphQLRegExp from 'graphql-type-regexp';

// otherwise
const GraphQLRegExp = require('graphql-type-regexp');

In queries / mutations:

query {
  profiles(filter: "g.*b") {
    id
  }
}

The resolver will receive new RegExp("g.*b"), which is the same as /g.*b/ (will match github and gitlab).

Example: