Skip to content

Releases: acro5piano/typed-graphqlify

v2.1.1: Merge pull request #58 from acro5piano/2.1.1

27 Feb 09:26
73e40d4
Compare
Choose a tag to compare

The first stable version of typed-graphqlify

27 Feb 09:15
f9b19ab
Compare
Choose a tag to compare

I am really excited to release version 2.1.0, the first stable version of typed-graphqlify!

Thank you @luvies and all contributors! Your help have been greatly accelerating the development of this library!

Features

Breaking changes

  • query, mutation, subscription are now top-level export by @acro5piano
  • Replace __params with params helper by @luvies

query, mutation, subscription are now top-level export

Before:

import { graphqlify } from 'typed-graphqlify'

graphqlify.query( //...

After:

import { query } from 'typed-graphqlify'

query( //...

params helper

Before:

import { graphqlify, query } from 'typed-graphqlify'

graphqlify.query({
  __params: { $input: 'UpdateUserInput' },
  updateUser: {
    __params: { input: $input },
   // ...
})

After:

import { params, query } from 'typed-graphqlify'

query(params({ $input: 'UpdateUserInput' }, {
  updateUser: params({ input: $input }, {
   // ...
  }),
})

v2.0.11-alpha: Merge pull request #50 from acro5piano/bump

24 Feb 02:22
054c11a
Compare
Choose a tag to compare

v2.0.10-alpha: Merge pull request #48 from acro5piano/acro5piano/bump

21 Feb 01:08
cc0e46a
Compare
Choose a tag to compare

v2.0.9-alpha: Merge pull request #45 from acro5piano/fix-scalar-in-array

19 Feb 01:12
54bd3ad
Compare
Choose a tag to compare

v2.0.8-alpha: Merge pull request #39 from luvies/bugfix/nested-fragment-objects

06 Feb 20:08
5c5fef1
Compare
Choose a tag to compare

add npmignore

16 Jan 21:13
0b18e63
Compare
Choose a tag to compare
Merge pull request #37 from acro5piano/npmignore

ignore logs from npm

support custom scalar

16 Jan 21:10
8df0ce4
Compare
Choose a tag to compare
Merge pull request #36 from acro5piano/custom-scalar-changelog

add changelog and bump version

support inline fragment

16 Jan 21:06
e0dd8ee
Compare
Choose a tag to compare
Merge pull request #28 from acro5piano/inline-fragment

support inline fragment

Support for nested params

16 Jan 02:07
Compare
Choose a tag to compare