0.2.0.dev2
Pre-release
Pre-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!
}
"""
)