Skip to content
This repository has been archived by the owner on Jun 23, 2020. It is now read-only.

Releases: blueflag/graphql-aggregate

v0.2.0

22 Nov 22:47
Compare
Choose a tag to compare
  • Adds support for resolvers that use promises
  • Adds support for promises that don't resolve from the object ( using context or rootinfo to resolve )

v0.1.1

20 Nov 22:26
Compare
Choose a tag to compare
  • Fixes issues creating aggregate types when their base type does not contain any Float or Int fields.
  • Slight speed up in initalization of types
  • Implement median function from immutable-math

v0.1.0

20 Nov 22:33
Compare
Choose a tag to compare

No longer does deep conversion to and from immutable structures.

  • Fix bug preventing users from using immutable structures in their graphql.
  • Can now see key and values, as opposed to array of keys and values.

new KeyedListAggregation type

KeyedListAggregation<T>
  key : String
  aggregate: AggregationType<t>
  values: GraphQLList<T>

appears on KeyedList type as keyValue

KeyedList: 
   keyValue: KeyedListAggregation<T>