github graphql-compose/graphql-compose v1.17.1

latest releases: v9.0.11, v9.0.10, v9.0.9...
7 years ago

1.17.1 (2017-03-13)

Bug Fixes

  • TypeMapper: Accept GraphQL[EnumType, List, NonNull] as shortand for fieldConfig (8cd56d12)
UserTC.setFields({
  name: 'String!',
  team: GraphQLEnumType({ // now works
    name: 'RGB',
      values: {
        RED: { value: 0 },
        GREEN: { value: 1 },
        BLUE: { value: 2 },
      },
  }),
  gender: `enum GenderEnum { MALE FEMALE }`, // also works
})

Don't miss a new graphql-compose release

NewReleases is sending notifications on new releases.