Skip to content

0.2.0.dev2

Pre-release
Pre-release
Compare
Choose a tag to compare
@rafalp rafalp released this 09 Apr 13:13
· 56 commits to main since this release

This release moves BaseType to public API, making it directly importable from ariadne_graphql_modules.

It also re-exports ariadne.gql utility from ariadne_graphql_modules saving one extra import:

from ariadne_graphql_modules import ObjectType, gql


class MyType(ObjectType):
    __schema__ = gql(
        """
        type User {
            name: String!
        }
        """
    )