Socket
Socket
Sign inDemoInstall

graphql-tools-type-email

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

graphql-tools-type-email

Email scalar type for graphql-tools


Version published
Weekly downloads
1
Maintainers
1
Weekly downloads
 
Created
Source

graphql-tools-type-email

Build Status Coverage Status

Email scalar type for graphql-tools

Usage

import { makeExecutableSchema } from 'graphql-tools'
import email from 'graphql-tools-type-email'

let typeDefs = [`
scalar Email
type Query {
  value(email: Email): Email
}`
]
let resolvers = {
  Email,
  Query: {
    value: (root, { email }) => email
  }
}
let schema = makeExecutableSchema({ typeDefs, resolvers })

export default schema

Minimum amount of module files

$ tree ./node_modules/graphql-tools-type-email
./node_modules/graphql-tools-type-email
├── README.md
├── dist
│   └── index.js
└── package.json

1 directory, 3 files

Keywords

FAQs

Package last updated on 27 Jan 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc