@uwatch/graphql-date

GraphQL Date Type

Usage no npm install needed!

<script type="module">
  import uwatchGraphqlDate from 'https://cdn.skypack.dev/@uwatch/graphql-date';
</script>

README

graphql-date Build Status js-standard-style

GraphQL Date Type

Installation

npm i --save graphql-date

Usage

var GraphQLDate = require('graphql-date')

// Use graphql-date in your GraphQL objects for Date properties
var fooType = new GraphQLObjectType({
  name: 'Foo',
  description: 'Some foo type',
  fields: {
    created: {
      type: GraphQLDate,
      description: 'Date foo was created'
    }
  }
});

var queryType = new GraphQLObjectType({
  name: 'Query',
  fields: {
    foo: {
      type: fooType,
      resolve: function () {
        // ...
      },
    }
  }
})

License

MIT