



type QueryRoot {
	hello: SmartString
}

"""
Allow SmartString to be used as graphql scalar value
"""
scalar SmartString


directive @include(if: Boolean!) on FIELD | FRAGMENT_SPREAD | INLINE_FRAGMENT
directive @skip(if: Boolean!) on FIELD | FRAGMENT_SPREAD | INLINE_FRAGMENT
schema {
	query: QueryRoot
}
