package Data::Transfigure::Type::DBIx 1.03; use v5.26; use warnings; # ABSTRACT: transfigures DBIx::Class::Rows into hashrefs =head1 NAME Data::Transfigure::Type::DBIx - transfigures DBIx::Class::Rows into hashrefs =head1 DESCRIPTION C is used to transfigure L instances into JSON-able structures, using C to get make a hashref from the object's keys (column names) and values. This transfigurator does not traverse relationships, and instead just outputs the foreign key column's name and id value. =cut use Object::Pad; use Data::Transfigure::Type; class Data::Transfigure::Type::DBIx : isa(Data::Transfigure::Type) { =head1 FIELDS I =cut sub BUILDARGS ($class) { $class->SUPER::BUILDARGS( type => qw(DBIx::Class::Row), handler => sub ($data) { return {$data->get_inflated_columns}; } ); } } =pod =head1 AUTHOR Mark Tyrrell C<< >> =head1 LICENSE Copyright (c) 2024 Mark Tyrrell Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. =cut 1; __END__