When reading results with values larger than the ChunkedInputBuffer's default capacity, a non-descriptive error gets triggered. It would be nice to have the buffer capacities configurable along with a specific error message. I'm currently using this as a workaround: ```python class LargeChunkedInputBuffer(ChunkedInputBuffer): def __init__(self, capacity=4194304): super().__init__(capacity) neo4j.bolt.connection.ChunkedInputBuffer = LargeChunkedInputBuffer ``` I realize it's not the best idea to store large values in Neo4j but as long as it's not prohibited they should be readable. https://github.com/liutec/neo4j-python-driver/commit/165946f22af4a22c2487eeab74b953d752e6ac05