Releases: acro5piano/typed-graphqlify
Releases · acro5piano/typed-graphqlify
v2.1.1: Merge pull request #58 from acro5piano/2.1.1
- Fix function export by @acro5piano
The first stable version of typed-graphqlify
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
- Fragment support by @luvies
Breaking changes
query
,mutation
,subscription
are now top-level export by @acro5piano- Replace
__params
withparams
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
bump version and fix husky
v2.0.10-alpha: Merge pull request #48 from acro5piano/acro5piano/bump
v2.0.9-alpha: Merge pull request #45 from acro5piano/fix-scalar-in-array
v2.0.8-alpha: Merge pull request #39 from luvies/bugfix/nested-fragment-objects
Bugfix: Nested fragment objects
add npmignore
Merge pull request #37 from acro5piano/npmignore ignore logs from npm
support custom scalar
Merge pull request #36 from acro5piano/custom-scalar-changelog add changelog and bump version
support inline fragment
Merge pull request #28 from acro5piano/inline-fragment support inline fragment
Support for nested params
Merge Pull Request #31 by @mlegenhausen