Releases: Thinkmill/ts-gql
Releases · Thinkmill/ts-gql
@ts-gql/[email protected]
Minor Changes
64a74d3
Thanks @mitchellhamilton! - Fixed inference ofdefaultValue
intypes.arg
to infer theDefaultValue
to beundefined
whendefaultValue
is not passed
@ts-gql/[email protected]
Minor Changes
c664466
Thanks @mitchellhamilton! - FixeddefaultValue
withtypes.arg
being inferred incorrectly.
@ts-gql/[email protected]
Minor Changes
80138fe
Thanks @mitchellhamilton! - Addedtypes-with-context
entrypoint to allow for a different strategy of binding theTypesWithContext
functions to a context type that will preserve JSDoc comments on theTypesWithContext
functions
@ts-gql/[email protected]
Minor Changes
5b10893
Thanks @mitchellhamilton! - Lots of type renaming, type parameter adding re-ordering and the addition of TypeScript types available on the exportedtypes
object that are bound to the specific context type(which for the exportedtypes
object isunknown
) and the removal of all non-context bound functions frombindTypesToContext
@ts-gql/[email protected]
Patch Changes
0b9c783
Thanks @mitchellhamilton! - The types for resolvers now allow returning an array of promises for list types.
@ts-gql/[email protected]
Patch Changes
4c2a7d1
Thanks @mitchellhamilton! - Added support fordeprecationReason
on GraphQL arguments/input fields
@ts-gql/[email protected]
Patch Changes
45e1a24
Thanks @mitchellhamilton! - Added checks to types.field and types.arg which throw if a type isn't passed so that it's easier to see why a type wasn't passed rather than getting an error when mapping the fields to graphql-js arguments
@ts-gql/[email protected]
Minor Changes
af755ec
Thanks @mitchellhamilton! - Fixed various bugs with interfaces and bindTypesToContext
@ts-gql/[email protected]
Minor Changes
-
1404564
#70 Thanks @mitchellhamilton! - Addedfields
function to share fields between multiple object types while inferring theKey
of the fields correctly -
1404564
#70 Thanks @mitchellhamilton! - Various correctness fixes around the typing of RootVal and Context -
0b598b3
#72 Thanks @mitchellhamilton! - First pass at an implementation of GraphQL interfaces. The API is quite likely to change.
@ts-gql/[email protected]
Patch Changes
f39352d
Thanks @mitchellhamilton! - Fixed the value of enums being inferred to unknown rather than the actual values