graphql-type-regexp

RegExp scalar type for GraphQL.js


License
MIT
Install
npm install graphql-type-regexp@0.1.2

Documentation

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: