public async Task SchemaTypeReference_ToString()
        {
            // arrange
            StringType type = await CreateTypeAsync <StringType>();

            SchemaTypeReference typeReference = TypeReference.Create(type);

            // act
            var result = typeReference.ToString();

            // assert
            Assert.Equal("None: HotChocolate.Types.StringType", result);
        }