This releae add support for UUID as field types. They will be represented as GraphQL ID in the GraphQL schema.
0.28.1
Not secure
-------------------
This release fixes support for PEP-563, now you can safely use `from __future__ import annotations`, like the following example:
python from __future__ import annotations
strawberry.type class Query: me: MyType = strawberry.field(name="myself")
strawberry.type class MyType: id: strawberry.ID
0.28.0
Not secure
-------------------
This releases brings a much needed internal refactor of how we generate GraphQL types from class definitions. Hopefully this will make easier to extend Strawberry in future.
There are some internal breaking changes, so if you encounter any issue let us know and well try to help with the migration.
In addition to the internal refactor we also fixed some bugs and improved the public api for the schema class. Now you can run queries directly on the schema by running `schema.execute`, `schema.execute_sync` and `schema.subscribe` on your schema.
0.27.5
Not secure
-------------------
Add websocket object to the subscription context.
0.27.4
Not secure
-------------------
This PR fixes a bug when declaring multiple non-named union types