



type QueryRoot {
	hello: SmallString
}

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


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