stack-string 1.1.5

A wrapper around SmartString which adds support for various extensions
Documentation
type QueryRoot {
	hello: SmallString
}

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

"""
Directs the executor to include this field or fragment only when the `if` argument is true.
"""
directive @include(if: Boolean!) on FIELD | FRAGMENT_SPREAD | INLINE_FRAGMENT
"""
Directs the executor to skip this field or fragment when the `if` argument is true.
"""
directive @skip(if: Boolean!) on FIELD | FRAGMENT_SPREAD | INLINE_FRAGMENT
schema {
	query: QueryRoot
}