use 5.010; use strict; use warnings; package Neo4j::Driver::StatementResult; # ABSTRACT: Deprecated (renamed to Neo4j::Driver::Result) $Neo4j::Driver::StatementResult::VERSION = '0.19'; # TRIAL 1; __END__ =pod =encoding UTF-8 =head1 NAME Neo4j::Driver::StatementResult - Deprecated (renamed to Neo4j::Driver::Result) =head1 VERSION version 0.19 =head1 SYNOPSIS package Neo4j::Driver::Result; use parent 'Neo4j::Driver::StatementResult'; =head1 DESCRIPTION The Neo4j::Driver::StatementResult module was renamed to L for version 0.19. While the StatementResult module was part of the public API, that module name was used only internally in the driver. Objects were created by calling methods on session or transaction objects; a C method was never publicly exposed for this module. Therefore no issues due to this change are expected. However, it is legal for clients to verify the type of result objects using L<< isa()|UNIVERSAL/$obj->isa(-TYPE-) >>. To keep such existing checks working for the time being, a module with this name continues to be provided for use as a parent for L. B is deprecated.> This module will be removed in a future version of this driver. =head1 SEE ALSO =over =item * L =item * L> =item * Naming changes for the Neo4j Java driver 4.0: L =back =head1 AUTHOR Arne Johannessen =head1 COPYRIGHT AND LICENSE This software is Copyright (c) 2016-2021 by Arne Johannessen. This is free software, licensed under: The Artistic License 2.0 (GPL Compatible) =cut