public async void CheckIfVertexCreatedCorrect()
        {
            // Arrange
            GremlinClient gremlinClient = this.CreateGremlinClient();

            // Act
            var responseCollection = await gremlinClient.CreateGraphCollection("StoneGargoyle", "MarableGargoyles");

            var response = await gremlinClient.CreateEmptyVertex(responseCollection.Resource, "SmallGargoyle");

            // Assert
            response.Should().NotBeNull();
        }