Skip to content

Releases: drizzle-team/drizzle-graphql

0.8.2

01 Jun 17:10
24aa77f
Compare
Choose a tag to compare
  • Readme fix (no code changes)

0.8.1: Added support for enums with incompatible with GraphQL naming limitat…

28 May 22:47
338fb72
Compare
Choose a tag to compare
  • Added support for enums with incompatible with GraphQL naming limitation values

💬 : Now incompatible enum options will be named Opton${optionNumber}.
The actual value in such cases could be found in type description prefixed with Value: .

0.8.0: Added config option to limit depth of relations (temporary (hopefully…

28 May 22:23
2986f94
Compare
Choose a tag to compare

0.7.3

28 May 13:50
4055a35
Compare
Choose a tag to compare
  • Added input type caching for reduced memory usage

0.7.2

27 May 13:13
6c727d5
Compare
Choose a tag to compare
  • Fixed relation data selection on tables with typescript names with lowercase first letter

0.7.1

26 May 17:57
47fb8ab
Compare
Choose a tag to compare
  • Fixed relation selection ignore on aliased relations

0.7.0

25 May 21:27
4cc3c55
Compare
Choose a tag to compare
  • Added deep relations

❓ : How deep?
For each branch of table's relations, they are generated until the same table gets used twice. Upon second hit, table will still be generated, but will have no relations

❓ : Why are relations not recursive?
Recursive types are not supported by GraphQL

⚠️ : Resolver return Typescript types have not been updated yet, this will be added in a next patch.

Feature: disable mutations on returned schema

17 May 13:15
0029add
Compare
Choose a tag to compare
  • Added ability to disable mutations on returned schema
    ⚠️ : Mutations will still be generated for entities regardless of their inclusion in schema

0.5.0: Changed behaviour with only `__typename` selected: uses one random co…

16 May 13:36
b89f69d
Compare
Choose a tag to compare
  • Changed behaviour with only __typename field selected: uses one random column instead of throwing No columns selected error

0.4.0

13 May 08:40
cff72bd
Compare
Choose a tag to compare
  • Added proper enum support (now drizzle\database enums generate GraphQL enums instead of strings)
  • Added error message when used with outdated versions of drizzle-orm